@ 6:30 in ESB 1001 Workday's mission is to build the next generation of enterprise business services—Human Resource Management, Financial Management, and Payroll—and deliver the solutions on a Software as a Service (SaaS) model.
signed up!) if you didn't, sorry. IEEE didn't tell us, blame them. >_< IEEEXtreme is a global challenge in which teams of IEEE student members – supported by an IEEE Student Branch, advised and proctored by an IEEE Member – compete in a 24-hour time span against each other to solve a set of programming problems. ICPC Competition -- November 12th
Regional rules ◦ Environment / language • Next practices are scheduled team-by-team • Coach: Ben Hardekopf • Funding from the CS department for fees and transportation to regional competition in Riverside. • MEET AFTER if you are part of this or interested in becoming part of it. Last chance! ASSERT(sum(people) mod 3 == 0)
PM in the CS conference room (here) What we've done in 2 meetings: • Covered some of the tools we are using and set us up our machines • Done a mini-overview of Ruby on Rails What we're doing next: • User registration + login • and a landing / index page
While it's executing: • ^Z (control+z to "stop" / suspend), then... tj@l33t $ bg /* type bg to send to background */ Before it's executing tj@l33t $ wget http://www.google.com & /* & at end of line means run in background */
tj@l33t $ jobs [1] + running pidgin tj@l33t $ fg 1 /* and it's in the foreground... don't need to specify number -- defaults to last */ Make sure to redirect stdout / stderr when running stuff in the background otherwise you'll get a mess in your terminal.