One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| Moved to https://github.com/ebidel/puppeteer-examples |
The plan is to create a pair of executables (ngrok and ngrokd) that are connected with a self-signed SSL cert. Since the client and server executables are paired, you won't be able to use any other ngrok to connect to this ngrokd, and vice versa.
Add two DNS records: one for the base domain and one for the wildcard domain. For example, if your base domain is domain.com, you'll need a record for that and for *.domain.com.
| class Markdown extends JView | |
| constructor:-> | |
| super cssClass : 'markdown', | |
| markdown : "Type some *markdown* here!" | |
| @textInput = new KDInputView | |
| bind : "keyup" | |
| type : "textarea" | |
| defaultValue : @data.markdown |
| class Timer extends JView | |
| constructor:-> | |
| super cssClass: 'timer' | |
| @setData secondsElapsed : 0 | |
| viewAppended:-> | |
| super | |
| setInterval (@bound 'tick'), 1000 |
| ;SMBDIS.ASM - A COMPREHENSIVE SUPER MARIO BROS. DISASSEMBLY | |
| ;by doppelganger ([email protected]) | |
| ;This file is provided for your own use as-is. It will require the character rom data | |
| ;and an iNES file header to get it to work. | |
| ;There are so many people I have to thank for this, that taking all the credit for | |
| ;myself would be an unforgivable act of arrogance. Without their help this would | |
| ;probably not be possible. So I thank all the peeps in the nesdev scene whose insight into | |
| ;the 6502 and the NES helped me learn how it works (you guys know who you are, there's no |
| #!/usr/bin/env python2.5 | |
| import sys | |
| import getpass | |
| import xmlrpclib | |
| server = xmlrpclib.Server('https://api.webfaction.com/') | |
| username = raw_input("Username : ") | |
| password = getpass.getpass("Password : ") |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # Without tk: http://rastgele-tc-kimlik-no-uretici.googlecode.com/svn/trunk/rastgele-tc-kimlik-no-uretici.py | |
| from random import randint | |
| while True: | |
| tcno = randint(10000000000,99999999999) | |
| tc = str(tcno) | |
| listetc = [int(tc[i]) for i in range(11)] | |
| tc10 = 0 |
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |