76
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion
« on: June 27, 2014, 06:23:58 pm »"Cloudy days reveal open skies with great shifts in imagery."That's the hidden clue! Not telling anyone what it means...
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to. 76
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 27, 2014, 06:23:58 pm »"Cloudy days reveal open skies with great shifts in imagery."That's the hidden clue! Not telling anyone what it means... 77
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 27, 2014, 07:16:48 am »
Almost there!
Quote from: IRC Jun 27 00:42:30 <OmnomIRC> (#)<Juju> http://nothing-to-see-here-please-go-away-bye-now.withg.org/nothing-to-see-here-please-go-away-bye-now.html There's one more step - that last page is hiding something. Use the clues on the page to help you coerce the final answer out! 78
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 26, 2014, 06:35:37 pm »
Alright, since no one is catching on, here's a clue:
This is actually a real website! http://nothing-to-see-here-please-go-away-bye-now.withg.org/ Happy exploring! 79
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 25, 2014, 09:13:36 pm »Ponies? Ponies?This. Just fyi, there's a lot more to the picture than meets the eye... 80
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 24, 2014, 08:51:30 pm »
Teaser #2!
For this teaser, magic is very useful. EDIT: backup2.withg.org has already restarted, so there should be no more downtime on backup2. Thanks for your patience! 81
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 24, 2014, 02:59:04 pm »
Heads up to backup2 users:
Quote You are receiving this email because you have an active OpenVZ VPS service with us. There has been a new security vulnerability with OpenVZ kernels 042stab090.4 and older. 042stab090.5 was released today to patch the security vulnerability. 82
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 15, 2014, 10:10:26 pm »
Teaser:
83
Other / TrackR Bravo - Item Tracking Device« on: June 12, 2014, 06:53:28 pm »
Apparently this new startup (and product) is going crazy! They launched on Monday, and have raised $114,860/$20,000, 574% of their goal! Apparently they're also backed by the UC Santa Barbara Technology Management Program, but that's another story...
According to TrackR Bravo's Indiegogo: Quote
I just bought one (or two, actually!), since these guys are pretty legit. Anyone else getting one? (You can get one here.) Disclaimer: Links are referral links - you can get one for free when referring another friend/person! I actually like the product, having gotten one for free from here. They're a legit business, so go and support them! 84
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 11, 2014, 10:08:36 pm »Yes... or no. Depends on what you mean by "cookies".Hello, world. By the way, this is nothing big. It's not the server move (boo, sorry). No improvements to any existing infrastructure. Just something new. Not exciting, either (IMO), but I think you guys might like it. But don't get your hopes up! 85
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: June 10, 2014, 10:43:57 pm »Hello, world.
Something interesting is coming. Are you ready for it? 86
Other / Re: Programming Challenge - Make that Table!« on: June 01, 2014, 02:00:21 pm »
Bump bump! Anyone find a solution yet?
87
Web Programming and Design / Re: withgusto Networks - Status Updates and Discussion« on: May 31, 2014, 07:31:39 pm »Not enough donations?Well... Spoiler For No donations?!?!?: Sorry for the downtime guys - it was downtime on the VPS provider side: Quote from: @hostigation @hostigation Everything seems to be up now - running programs should probably still be running, due to the router only having problems. Let me know if anything crazy happens! 88
Other / Re: Programming Challenge - Make that Table!« on: May 30, 2014, 07:08:21 pm »Is the purpose of this precisely to make an ASCII table? Or is it simply to convert the data into a more standard tabular format? Because you mentioned that converting it to CSV that can be imported into Excel would suffice, but I would like to point out that the input data can be imported into Excel just fine as-is, in which case my solution would be to do nothing.True true... yeah, the point of it is to figure out which columns represent which data, aka successfully parse the input table. So either would work as long as they are generated from scratch. 89
Other / Re: Programming Challenge - Make that Table!« on: May 29, 2014, 11:02:38 pm »What kind of restrictions are there on input format? Will the table always be nicely spaced already? Will every data cell contain a number? Will there always be at least one row of data?Sorry for the lack of specificity. You can assume the following:
Hope that helps (and makes it easier)! Feel free to ask any more questions as necessary! Oh, and here's proof of solution (when it eventually gets posted): Solution hash: 4ff5917ff0f821103799498d79a4c70665eb8a68f3b6cf715986c93d3db9e2a6 Verifiable here EDIT: Updated pastebin with specifics above! 90
Other / Programming Challenge - Make that Table!« on: May 29, 2014, 09:28:28 pm »
UPDATE: Specifics and clarifications can be found here.
Here's something that came up at work today. Seemingly simple, but it's a lot more complicated than it looks! (At least for me, heh...) I've came up with a solution already, so try it out! Give it a try: http://pastebin.com/FWLmveKF The challenge (if you can't access the above): ===================== = Make That Table! = ===================== CHALLENGE: Using any programming language, write a program that takes the following INPUT and converts it into a valid table OUTPUT. Input represents any table, space-delimited. The first line is the table header, and the second line is the table secondary header. Output must be based on the input. Display statements of the final result without any steps to get to the final results will be disqualified. ======================================================================= = INPUT: = ======================================================================= Hoooligans! Party Animals Count Alpha_Delta Rounded First Second Third 1234 12.4562294932 12.4958 193583.149592983 28592 2948502.5 39502050 104.682950380298 193.499499 19384885444.2223 1234567 123592 ======================================================================= = OUTPUT: = ======================================================================= Hoooligans! | Party Animals Count | Alpha_Delta | Rounded | First | =============================================================================================== | | | | Second | Third ----------------------------------------------------------------------------------------------- 1234 | 12.4562294932 | 12.4958 | 193583.149592983 | 28592 | 2948502.5 39502050 | 104.682950380298 | 193.499499 | 19384885444.2223 | 1234567 | 123592 |
|