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
# Version: 0.3.0 | |
# Rewrite: Incomplete | |
import re | |
import mpf # post file support | |
import utils | |
import enum | |
import jnet | |
import json |
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
# makegist.py - v2 | |
# create a gist from a file on your computer | |
# you'll need a personal access key with the gists permissions to use it: https://github.com/settings/tokens | |
# this script makes use of windows' data streams and will only work on windows, feel free to modify it and use it for your own purpose | |
# init | |
# first off run | |
# script.py key <key> | |
# this will store your key | |
# then you can use |
What you need:
- JDK (Java Development Kit)
- Ant (Build System)
- ADK (Android Development Kit)
Download:
JDK (you can download OracleJDK or you can download an OpenJDK binary here https://github.com/ojdkbuild/ojdkbuild)
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
// C++ | |
#include <stdio.h> | |
#include <sstream> | |
using namespace std; | |
int main() | |
{ | |
stringstream seq; | |
int next; |
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
'use strict'; | |
/** | |
* Module dependencies. | |
*/ | |
var crypto = require('crypto'); | |
/** | |
* Calculates the MD5 hash of a string. | |
* |
Learn by doing
If you're brand new to the language (welcome!) start here: http://jsforcats.com/ (Silly name, but excellent content)
If you've already got a little bit of coding under your belt, the absolute best place / way to learn is with https://nodeschool.io workshops (Full disclosure; I've written 2 of them)
They're all free open source at your own pace workshops where you are given a bit of info, a task, and you must code it up before you can move on (it runs unit tests over your code to verify you completed it)
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 <windows.h> | |
#include <stdio.h> | |
#pragma pack(push, 2) | |
#define RT_ICON MAKEINTRESOURCE(3) | |
#define RT_GROUP_ICON MAKEINTRESOURCE((ULONG_PTR)(RT_ICON) + 11) | |
/* Icon file header */ | |
typedef struct |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>MemeMaker-Simple</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"> | |
<meta name="mobile-web-app-capable" content="yes"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<style> |
NewerOlder