Tuesday, January 16, 2018

HACKATHON IN AUGUSTA

HACKATHON IN AUGUSTA On Friday, February 23rd, Rural Sourcing is joining forces with the United Way to code for a cause. The United Way of the CSRA unites people and mobilizes community resources to create lasting changes that transform lives. We need your help-- join us for an afternoon of volunteer coding that will greatly impact children in the CSRA! What is a hack·a·thon you ask? /ˈHAKəˌthän / noun: a Hackathon (also known as a hack-day, hackfest or codefest) is an event in which computer programmers and others in the field of software development, like graphic designers, interface designers and project managers collaborate intensively on a software related project for a set amount of time As always, there will be food, swag, and PRIZES! As a 2018 RSI hacker, you and your team will be given all the info needed to complete the coding project. When the last bit of code is compiled and presented, winning teams will be selected. To get started, grab your laptop and register. You can register as an individual or as part of a team (4 max! per team). If you don’t have a team, no worries! We’ll pair you with other coders. If you are not able to participate, we still welcome you to stop by, grab a bite and connect with our team and other coders from our community. WHO: Students, Professionals, and Individuals with an interest in the field of SOFTWARE DEVELOPMENT WHERE: Enterprise Mill, Starch Room 1450 Greene Street, Augusta, GA 30901 WHEN: Friday, February 23, 2018 TIME: Registration starts at 1:00 PM; Projects kick off at 2:00 PM; Hacking ends at 5:00 PM Registration will close on February 9, 2018 at 6:00 EST. Click the below Link to Register now! HACKATHON

Tuesday, November 14, 2017

Week 13 Swift Demo

IBM Swift Sandbox, online Swift compiler and execution
//Here is one of the two temp convert classes that you will need
//CtoF Class example
import Foundation

class CtoF {
    var temp = 0.0
  
    init(temp: Double) { // Constructor
        self.temp = temp
      
    }
  var Temp: Double{
  return (temp*(9/5)) + 32
  }

  func getTemp() -> Double {
    return (temp*(9/5)) + 32
  }
}

class Circle {
    var radius = 0.0
    
    init(radius: Double) { // Constructor
        self.radius = radius
        
    }
    var Area: Double{
        return 3.14*(radius*radius)
    }
    
    func getArea() -> Double {
        return 3.14*(radius*radius)
    }
    
    var Circumference: Double {
        return 2*3.14*radius
    }
    func getCircumference() -> Double{
        return 2*3.14*radius
    }
}

////
let temp1 = CtoF(temp: 0.0)
print("Celsius to Fahrenheit temperature:",temp1.getTemp())       // access the function
print(temp1.Temp);             //access the Property

///
let circ1 = Circle(radius: 32.0)
print("Area:",circ1.getArea())
print("Circumference: ",circ1.getCircumference())

Tuesday, February 14, 2017

Chapter 6 Array Demo

Step 1) Right click then save content.
Step 2) Open in NotePad++
Step 3) Run->choose browser
Loop Demo