Tumgik
efeldman · 9 years
Text
Found a great CMS to work with
https://wagtail.io/
New kid on the block, but seems great, have to try it sometime.
0 notes
efeldman · 10 years
Text
Change Number of Threads of NFSD in Ubuntu
/etc/default/nfs-kernel-server
change
RPCNFSDCOUNT=8
to your desired number
and restart nfsd service
0 notes
efeldman · 10 years
Text
Thor: Invoke command without passing arguments nor optionns
I have a Thor command that invokes another command, but since it accepts options running it errs because the invoked command doesn't take any...
invoke :other, [], {}
That should solve it.
cheers.
1 note · View note
efeldman · 10 years
Video
youtube
Karmatron: Bug hunting FF video
1 note · View note
efeldman · 10 years
Text
Python: Is your os.walk slow? use scandir
https://github.com/benhoyt/scandir
you're welcome
0 notes
efeldman · 10 years
Photo
Tumblr media
I was telling my friend a story the other day and it must have taken too long because he quietly took out his wallet and handed this to me.
He literally carries like 50 of them at all times.
509K notes · View notes
efeldman · 10 years
Text
TiR: Stache
https://itunes.apple.com/us/app/stache/id870659406?mt=12
0 notes
efeldman · 10 years
Note
ROBOTS OR DINOSAURS?
Robots Dinosaur!!
0 notes
efeldman · 10 years
Video
youtube
Re Working Karmatron in LibGDX...
1 note · View note
efeldman · 10 years
Text
How to close all the Finder windows at once
cmd+option+w
0 notes
efeldman · 10 years
Text
Vim use Vundle instead and a tip on syntax highlighting
I went for Vundle since has automatic Installation and Update get it here: https://github.com/gmarik/Vundle.vim
And if you see that vim is getting slow when you edit files with long lines is because the syntax highlighting... and this can help you
set synmaxcol=120
Cheers.
0 notes
efeldman · 11 years
Text
Python, CSV and Unicode Errors
Plain simple: Use unicodecsv.
https://github.com/jdunck/python-unicodecsv
Shame on you Python.
0 notes
efeldman · 11 years
Video
youtube
Karmanoid Prototype #3.
Working on a breakout game called karmanoid. Why another breakout clone you will ask? Cause it's fun to scratch your own itch. I like it, and I love to play it. And it's also a very good game to start learning a new framework, in this case ImpactJS. Cheers.
0 notes
efeldman · 11 years
Video
youtube
Gosu Tiled map loader/viewer. Worked on some code that will render a mad created with Tiled. What you can see there is that pressing 0 it will reload the map after changing it.
0 notes
efeldman · 11 years
Text
Ruby 2.0 on Ubuntu: cannot load such file -- openssl
After installing Ruby 2.0 on Ubuntu from source I got the following error when trying to install a gem:
ERROR: Loading command: install (LoadError) cannot load such file -- openssl
What worked for me:
sudo apt-get install openssl libssl1.0.0 libssl-dev make clean; ./configure; make; sudo make install
0 notes
efeldman · 11 years
Text
Vim: Yank all the lines in current buffer
:%y
0 notes
efeldman · 11 years
Text
Delete uncommitted files in git
git clean -f
0 notes