oivoodoo
oivoodoo
scriptonia
162 posts
Don't wanna be here? Send us removal request.
oivoodoo · 5 years ago
Text
https://balconygames.com
7 notes · View notes
oivoodoo · 5 years ago
Note
On my chrome - I play Tetris that you built...love it...when I see High Scores, I see winai:21800 etc., are these AI programs that are playing Tetris?I'd also be interested to learn how to program Tetris. Any advise would be very much appreciated.Thanks so much and keep doing your cool stuff.Sam
the best way to learn, it’s github + opensource version of any kind of the game. Try to run it and apply changes for the parts that you want to change it a bit. as result step by step you will learn the basic parts.
Thank you!
1 note · View note
oivoodoo · 5 years ago
Note
Hi this is Sam again. I asked you a question about guidance for writing programs like Tetris. I can be reached at [email protected]
Hey Sam. To be honest I am not using tumblr. really sorry, missed your messages. I believe you have already answered your questions. Working on mobile games these days. https://balconygames.com/ . hope it would work better :)
2 notes · View notes
oivoodoo · 5 years ago
Link
0 notes
oivoodoo · 5 years ago
Link
Going to clone my dev.to blog posts here
0 notes
oivoodoo · 11 years ago
Audio
0 notes
oivoodoo · 12 years ago
Link
Awesome gem for recurring sidekiq jobs
[sidetiq](
class Worker1 include Sidekiq::Worker include Sidetiq::Schedulable recurrence { secondly } def perform(*args) end end
This gem is using ice_cube gem for using methods like weekly, secondly
0 notes
oivoodoo · 12 years ago
Link
direnv - Unclutter your .profile
Use direnv for extending PATH by ./bin folder of the rails project
direnv edit .
Now add this hook for loading the ./bin folder
export PATH=`pwd`/bin:$PATH
Now everytime when you are going to cd to the project it will automatically extend the PATH by ./bin folder and you can run scripts without bundle exec because it has already binstubs
Generate bin stubs you can use this alias:
alias="bundle install --binstubs --path vendor/bundle"
0 notes
oivoodoo · 12 years ago
Text
Use spring with guard together
Use spring with guard together
Today I've started to use spring instead of the spark gem. It's working great for the rails console, spec, guard.
I added gems:
gem 'spring' gem 'spring-commands-rspec' gem 'spring-guard'
Then I've rebuild the binstubs:
spring binstub rails rake rspec
And setup the guard file using the spring configuration:
guard init spring
Now it's working quite fast for me. It's really awesome that I can get the routes and access to the rails console in few seconds instead of waiting...
0 notes
oivoodoo · 12 years ago
Photo
Tumblr media
scriptonia turned 4 today!
0 notes
oivoodoo · 12 years ago
Audio
0 notes
oivoodoo · 12 years ago
Text
Custom validator for angularjs
https://gist.github.com/oivoodoo/6209466
0 notes
oivoodoo · 12 years ago
Link
Got this email this morning:
From: Andrew To: [email protected] Subject: Have a minute to talk about npmjs.org? Hello, We have a client interested in npmjs.org. Would you consider selling the site? Please let me know a day, time and phone number you could speak about this possibility and we'll try to...
20 notes · View notes
oivoodoo · 12 years ago
Text
Set tabname in iterm2
https://gist.github.com/oivoodoo/4154463
0 notes
oivoodoo · 12 years ago
Text
Print grape routes using rake task.
https://gist.github.com/oivoodoo/5089237
0 notes
oivoodoo · 12 years ago
Text
Use http_basic with grape API layer.
https://gist.github.com/oivoodoo/5098963
0 notes
oivoodoo · 12 years ago
Text
Track your time.
Today I've decided to install widget of the cashboardapp.com. it's definitely save my time in the future for making invoices to the clients. Also I have already started to create the stories based on the pivotaltracker and then just click log time.
I will see result at the end of the month.
0 notes