It is native Javascript function for automatically updating fuzzy timestamps (e.g. "8 minutes ago").
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Payoneer API integration | |
* | |
* @date 27/11/12 | |
* @name $payoneer | |
* @author Panagiotis Moustafellos | |
*/ | |
class Payoneer | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am gokercebeci on github. | |
* I am goker (https://keybase.io/goker) on keybase. | |
* I have a public key whose fingerprint is BA3B 07F6 4FD9 85BD F224 6E15 AB96 24A2 A9F2 2E80 | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdlib> | |
#include <iostream> // std::cout | |
#include <algorithm> // std::sort | |
#include <vector> // std::vector | |
// C++ ZigZag Scan Algorithm | |
// Compiling: g++ zigzag.cpp -o zigzag | |
// Usage: ./zigzag N M | |
// Based on http://stackoverflow.com/questions/3025595/code-golf-zigzag-pattern-scanning | |
// but this is not a shorter one ;] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<canvas id="canvas"></canvas> | |
<div id="go">[ CLICK/TAP TO DRAW ]</div> |