Have you tried soundboxing? I'm on OSX so can't try it, but I really want to give it a shot - it seems awesome, and a good workout. Bringing back the glory days of DDR in the arcade...
Have you tried soundboxing? I'm on OSX so can't try it, but I really want to give it a shot - it seems awesome, and a good workout. Bringing back the glory days of DDR in the arcade...
I couldn't agree more. I'm 20 years old and dropped out of university after my first year. There was a large amount of people I was surrounded by who weren't motivated at all and didn't really seem to take interest in anything we were doing.
I moved to San Francisco ( from New Zealand ) after I dropped out in the beginning of 2013, attended a programming bootcamp and was surrounded by smart people who all shared the same drive and passion as me. It made a world of difference, my core group of friends were all people who breathed code. We all motivated each other to better ourselves and to learn new technologies. Moving to the valley was the best thing I've ever done, I learned so much in such a short amount of time and was even approached by some companies with some great offers. Unfortunately I had to move back to New Zealand as my year was up and US work visas require a degree or an extensive amount of experience. That was probably the biggest downside of dropping out, a degree can definitely open up many doors.
When I was 13, I decided that I wanted to stop playing games and try to make my own. I was naive and thought that I could build one like WoW single handedly and I soon realized that I couldn't. However I did then come across private servers for games like World of Warcraft. From that I started to learn how to run them, I started to learn about SQL to manage the DB, then moved onto to learning LUA in order to script for my server. Even going onto looking into C++. Even then moving onto learning about web development and web servers in order to run the site for my server. That's what sparked my curiosity in coding and development at a young age.
That's why I disagree with this statement. People will learn that they can't build a game just like that, but they make start to take smaller steps and learn themselves. Don't discourage people from trying. They actually have a good mindset where they want to try build things themselves.
Found via Github search
Deleted Comment
What I mean by that is, we have 4 million people, and we're not a large place by any means (2,000km in total length, something like that).
If Google wanted to show the world their "vision", they could simply come to NZ, buy a mobile carrier (for millions, not billions of dollars) and give everyone free plans (or whatever their vision is) and lay down fibre to everyone in the country (much faster than the stupid government imo) . They'd even be able to get their awesome self-driving cars on the roads fairly easily, without having to spend so much damn money lobbying.
As per the NZ public, we love new stuff. Right now, we're ripped off in every aspect (consumer-wise). Some massve corporation would change this country in a heartbeat, and for the better. (I'd hope anyway).
New Zealand, in my opinion, has an awesome "sample" size (regarding population). We were one of the first countries in the world to go from cash to using EFTPOS (http://en.wikipedia.org/wiki/EFTPOS) extremely fast.
>> "EFTPOS is highly popular in New Zealand, and being used for about 60% of all retail transactions.[23] In 2009, there were 200 EFTPOS transactions per person"
To me, it makes so much sense for massive corporations to come to NZ, trial their stuff _easily_, and for half the cost (made up number) than it would be to do it in the US.
Once people see how awesome NZ is when it comes to all these self-driving cars, cheap/free internet, cheap phones, and cheap/free phone data/calls/sms surely the rest of the world would want to be just like us? :]
My two cents. :]
One of my own goals is to help introduce a better environment for technology in NZ. Hopefully encouraging more people to start their own startup and base their operations in NZ ( I'm planning on basing my startup here in NZ ).
Assange is still chill-banging. Sipping Aguardiente. Schmoozing Ecuadorian diplomats. Yelling shit about the commander-in-chief out from the balcony to the glassy-eyed press [1].
As for Mr. DotCom, don't hold your breath. NZ is still busy kissing his arse [2].
[1] http://www.heraldsun.com.au/news/world/julian-assange-labels...
Although Kim has become a bit of a celebrity in NZ now, he's even looking at funding a program to bring free fibre optic to NZ. ( http://www.stuff.co.nz/technology/digital-living/7904696/Dot... ) So the government may not do something too hasty as it would cause a large amount of public backlash.
Since this is part of Rails, all you would need to do is implement regular http endpoints, no need for workers/listeners. Submit a "job" to the queue (which itself is just a POST) and the message details: the endpoint and some data to POST to said endpoint.
The queue "server" processes the list of jobs, hits the specified endpoint and when it gets a 200 response, it deletes it. Otherwise, it just keeps retrying.
[0] https://cloud.google.com/tasks/docs
However we've recently just migrated to Sidekiq. We regularly found that the time to enqueue a job with cloud tasks was anywhere from 200-800ms. We often have workflows from users where they need do something that would involve a batch of say 100+ jobs. The time to process each job was minuscule, but actually enqueuing them took a long time.
Time to enqueue with Sidekiq / redis was brought down to under 20ms. We can also make use of bulk enqueuing and enqueue all 100+ jobs in one redis call.
However when we were first starting out, it was a godsend. Made our infrastructure significantly more easy to manage and not have to worry.