CLICK ME
yes, even hidden code blocks!
print("hello world!")
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Monaco</title> | |
</head> | |
<body> |
const percent = 0.12; | |
const startX = getCoordinatesForPercent(0)[0]; | |
const startY = getCoordinatesForPercent(0)[1]; | |
const endX = getCoordinatesForPercent(percent)[0]; | |
const endY = getCoordinatesForPercent(percent)[1]; | |
const largeArcFlag = percent > .5 ? 1 : 0; | |
const pathData = [ |
* what it's like to not be technical in the industry | |
* what you do in tech that people forget is needed | |
* the most interesting thing you've worked on recently | |
* what your day-to-day is like | |
* must-have gifs for every techie | |
* horrible code from the past that shows I'm much better now | |
* the best music for hacking | |
* mistakes you've made that make you groan | |
* how you've made it at well-known companies | |
* self-care in the tech bubble |
#!/usr/bin/env node | |
const isPhone = require('is-phone') | |
const RtmClient = require('@slack/client').RtmClient | |
const MemoryDataStore = require('@slack/client').MemoryDataStore | |
const RTM_EVENTS = require('@slack/client').RTM_EVENTS | |
const token = process.env.SLACK_TOKEN || '' | |
const rtm = new RtmClient(token, { | |
logLevel: 'error', |
Wiring up a Google Form to GitHub is not that difficult with a little bit of Apps Script automation. All you need is a Google account, a GitHub account, and a web browser...
Personal access tokens provide an easy way to interact with the GitHub API without having to mess with OAuth. If you don't already have a personal access token with repo or public_repo access, visit your GitHub settings page and generate a new token.
Be sure to copy your token some place safe and keep it secure. Once generated, you will not be able to view or copy the token again.
// Implementation in ES6 | |
function pagination(c, m) { | |
var current = c, | |
last = m, | |
delta = 2, | |
left = current - delta, | |
right = current + delta + 1, | |
range = [], | |
rangeWithDots = [], | |
l; |
// tasks/bundle.js | |
'use strict'; | |
var gulp = require('gulp'); | |
var browserify = require('browserify'); | |
var watchify = require('watchify'); | |
var source = require('vinyl-source-stream'); | |
var buffer = require('vinyl-buffer'); | |
var concat = require('gulp-concat'); |