public marks

PUBLIC MARKS with tag coding

2012

Frequently Asked Questions | Twitter Developers

by sylvainulg (via)
The old API has stopped working, and will be completely dismantled by March 2013. Better read the FAQ 'till then

Hacker's Delight

by sylvainulg & 1 other (via)
can be used to compute the "magic numbers" and multiplicative inverses modulo 232. These numbers allow you to convert division by constants into multiplications.

Bresenham

by sylvainulg (via)
for(;;){ /* loop */ setPixel(x0,y0); if (x0==x1 AND y0==y1) break; e2 = 2*err; if (e2 >= dy) { err += dy; x0 += sx; } /* e_xy+e_x > 0 */ if (e2 <= dx) { err += dx; y0 += sy; } /* e_xy+e_y < 0 */ }

Jérôme Radix Blog: Comment exécuter du code par projet dans Emacs

by sylvainulg
j'ai besoin de gérer une configuration particulière par projet, le terme projet correspondant ici à un ensemble cohérent de fichiers permettant de produire un certain nombre de livrables clairement identifiés (un peu comme le fichier build.xml pour Apache Ant). Dans Emacs, il existe quelques fonctions bien pratiques pour faire cela

Coding Horror: Speed Hashing

by sylvainulg (via)
If you are a developer: Use bcrypt or PBKDF2 exclusively to hash anything you need to be secure. These new hashes were specifically designed to be difficult to implement on GPUs. Do not use any other form of hash. Almost every other popular hashing scheme is vulnerable to brute forcing by arrays of commodity GPUs, which only get faster and more parallel and easier to program for every year.

SVN: Merging a Branch into Trunk - Sepcot.com

by sylvainulg (via)
I'll have to redo that tomorrow, applying the merge for newcollide first, and *then* companim...

2011

Re: [tcpdump-workers] Freeing memory in libpcap

by sylvainulg
could have been worth a note in pcap_next(), imho.

Dropbox - Developers - Simplify your life

by sylvainulg
A good way to push sprites made with SEDS "in the cloud" ?

Is it sufficient to detelet context in RPC Response Messages - oversim | Google Groups

by sylvainulg
RPC call messages are deleted automatically when sending an RPC response message using sendRpcResponse(call, response). If you do not respond to a RPC call, you have to delete the call message by yourself. Response messages are deleted in BaseRpc::internalHandleRpcMessage().

The life of a Games Programmer: Collision detection...

by sylvainulg (via)
Lemmings never did full sprite to background collision checking, in fact all it did was test a pixel at the feet of a lemming, into the mask. And you could do that directly in GML if you wanted to! In fact, Lemmings had a "1600x160" play area, and you could easily convert this to a 200x160 "BIT" per-pixel mask.

ServerSocket (Java Platform SE 6)

by sylvainulg
SO_REUSEADDR for Java -- how to avoid java.net.BindException (at the risk of odd TCP state) [code] ServerSocket x = new ServerSocket(); x.setReuseAddress(true); x.bind(new InetSocketAddress(port)); [/code]

opensky/Symfony2-coding-standard - GitHub

by Xavier Lacot
A PHP CodeSniffer configuration file, for Symfony2 coding standards

2010

PUBLIC TAGS related to tag coding

.net +   2d +   actionscript +   ajax +   art +   basic +   beginnersweb +   blog +   c +   c%23 +   c++ +   cheatsheet +   code +   computer +   css +   design +   development +   flash +   free +   geek +   html +   java +   javascript +   opensource +   php +   programacion +   programming +   python +   reference +   ressources +   rss +   ruby +   rubyonrails +   scripts +   software +   sourcecode +   specifications +   springnet +   springnet blogmarks +   tech +   technology +   tools +   tutorial +   tutorials +   web +   web2.0 +   webbuilding +   webdesign +   webdev +   xhtml +  

Active users

oseres
last mark : 21/10/2012 08:08

sylvainulg
last mark : 15/10/2012 11:31

simo
last mark : 03/11/2011 14:58

guyincognito
last mark : 29/04/2011 20:03

Xavier Lacot
last mark : 27/04/2011 22:23

vrossign
last mark : 09/03/2011 18:26

kemar
last mark : 19/07/2010 08:13

Jeremy B.
last mark : 24/03/2010 08:26