If you're like me, you want to install the Playdate SDK using a package manager. Below are some options for you.
Info Did I miss anything? Please comment below!
If you're like me, you want to install the Playdate SDK using a package manager. Below are some options for you.
Info Did I miss anything? Please comment below!
// | |
// The new assembly support in Solidity makes writing helpers easy. | |
// Many have complained how complex it is to use `ecrecover`, especially in conjunction | |
// with the `eth_sign` RPC call. Here is a helper, which makes that a matter of a single call. | |
// | |
// Sample input parameters: | |
// (with v=0) | |
// "0x47173285a8d7341e5e972fc677286384f802f8ef42a5ec5f03bbfa254cb01fad", | |
// "0xaca7da997ad177f040240cdccf6905b71ab16b74434388c3a72f34fd25d6439346b2bac274ff29b48b3ea6e2d04c1336eaceafda3c53ab483fc3ff12fac3ebf200", | |
// "0x0e5cb767cce09a7f3ca594df118aa519be5e2b5a" |
Run with Python:
pip-2.7 install cffi PYTHON=python2.7 sh go.sh
Run with PyPy:
pip-pypy install cffi PYTHON=pypy sh go.sh
19:45:09 freenode | irc: reconnecting to server... | |
19:45:09 freenode | irc: connecting to server chat.us.freenode.net/7070 (SSL)... | |
19:45:09 freenode | gnutls: connected using 1024-bit Diffie-Hellman shared secret exchange | |
19:45:09 freenode =!= | gnutls: peer's certificate is NOT trusted | |
19:45:09 freenode =!= | gnutls: peer's certificate issuer is unknown | |
19:45:09 freenode | gnutls: receiving 2 certificates | |
19:45:09 freenode | - certificate[1] info: | |
19:45:09 freenode | - subject `OU=Domain Control Validated,OU=Gandi Standard Wildcard SSL,CN=*.freenode.net', issuer `C=FR,O=GANDI SAS,CN=Gandi Standard SSL CA', RSA key 2048 bits, signed using | |
| RSA-SHA1, activated `2011-01-14 00:00:00 UTC', expires `2012-01-14 23:59:59 UTC', SHA-1 fingerprint `acd50e69ad93f5db08fefb67180d871415858664' | |
19:45:09 freenode | - certificate[2] info: |
package; | |
import haxe.macro.Expr; | |
class Main { | |
static function main() { | |
var smap:StringMap = ['firstName' => 'Skial', 'lastName' => 'Bainn']; | |
trace( smap.lastName, smap.firstName ); // Bainn, Skial |
package hx.event.test; | |
import haxe.unit.TestRunner; | |
class Main | |
{ | |
public static function main() | |
{ | |
var runner = new TestRunner(); | |
runner.add(new SignalTest()); |
package entities; | |
import nape.geom.Vec2; | |
/** | |
* @author MSGHero | |
*/ | |
@:enum | |
abstract Direction(Int) { | |
import haxe.io.Bytes; | |
import haxe.Resource; | |
import openfl.Assets; | |
import openfl.display.Bitmap; | |
import openfl.display.BitmapData; | |
import openfl.display.Loader; | |
import openfl.utils.ByteArray; | |
/** |