I hereby claim:
- I am hanchang on github.
- I am hanchang (https://keybase.io/hanchang) on keybase.
- I have a public key ASB-7nshRJhAnOUDQq1bzMWHvTJVuhvZRy-Y7gTiz317RQo
To claim this, I am signing this object:
#!/bin/bash | |
# Courtesy of: | |
# http://stackoverflow.com/questions/134906/how-do-i-list-all-cron-jobs-for-all-users | |
# System-wide crontab file and cron job directory. Change these for your system. | |
CRONTAB='/etc/crontab' | |
CRONDIR='/etc/cron.d' | |
# Single tab character. Annoyingly necessary. |
// requires | |
var utils = require('utils'); | |
var casper = require('casper').create() | |
var casper = require('casper').create({ | |
verbose: true, | |
logLevel: "debug" | |
}); | |
// setup globals | |
var email = casper.cli.options['email'] || 'REPLACE THIS EMAIL'; |
def max_sum_of_interval(list) | |
current_total = 0 | |
max_total = 0 | |
list.each do |item, index| | |
if item + current_total >= 0 | |
current_total += item | |
max_total = current_total if current_total > max_total | |
else | |
current_total = 0 |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
<!-- Here is the css code you'll need to put in between the <head><head> html tags: --> | |
<!-- Style this nonsense - @MercenaryCarter --> | |
<style type="text/css"> | |
body { | |
margin: 0px; | |
} | |
@import url("https://fonts.googleapis.com/css?family=Raleway"); | |
.introduction { | |
font-family: 'Raleway'; |
I hereby claim:
To claim this, I am signing this object:
Following instructions from the excellent https://www.rinkeby.io/
A full node lets you access all state. There is a light node (state-on-demand) and wallet-only (no state) instructions as well,
To get SSH or SFTP access to a server without using a password you need to have a SSH key pair for each computer you want to be able to access the server from. In this document I’ll describe the steps you need to take to generate a key pair if you don’t have one already. If you do, you can use your public key(s) to get access to the server.
I'll also explain how to connect to your server using Cyberduck. Click here to skip to that part.
This guide is written with newbies in mind, so I'm very thorough in describing the steps that you must take. This guide will not cover setting up the server side of this system. It assumes that there's a server running with SSH enabled.
#!bash | |
# | |
# bash/zsh completion support for core Git. | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# The contained completion routines provide support for completing: | |
# |
This tutorial was created by Shopify for internal purposes. We've created a public version of it since we think it's useful to anyone creating a GraphQL API.
It's based on lessons learned from creating and evolving production schemas at Shopify over almost 3 years. The tutorial has evolved and will continue to change in the future so nothing is set in stone.