I hereby claim:
- I am americos on github.
- I am asavinon (https://keybase.io/asavinon) on keybase.
- I have a public key ASCc8GoiEm_zyQ6Cv5j3SwYyJ0h4ZgDRitCoDNxN_CC0Ewo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
name: Android | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout |
name: Detox | |
on: [push] | |
jobs: | |
build: | |
runs-on: macOS-latest | |
timeout-minutes: 15 | |
env: |
// time and time end | |
console.time("This"); | |
let total = 0; | |
for (let j = 0; j < 10000; j++) { | |
total += j | |
} | |
console.log("Result", total); | |
console.timeEnd("This"); | |
// Memory |
async function getGithubUser(username) { // promise + await keyword usage allowed | |
try { // We handle async function errors with try / catch | |
const response = await fetch(`https://api.github.com/users/${username}`); // Execution stops here until fetch promise is fulfilled. | |
const user = response.json(); | |
return user; // equivalent of resolving the getGithubUser promise with user value. | |
} catch (err) { | |
throw new Error(err); // equivalent of rejecting getGithubUser promise with err value. | |
} | |
} |
sha1 '2f3eae44cc44d263fe9513b856f49707a64cc840' |
/biz/steve-canning-photography/577f0d12fdf47583.html |
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
//Width | |
@each $index, $width in (1: 15%, 2: 30%, 4: 45%) { | |
.collage-width-#{$index} { | |
width: $width; | |
overflow: hidden; |
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
// Width | |
@each $index, $width in (1: 15%, 2: 30%, 4: 45%) { | |
.collage-width-#{$index} { | |
width: $width; |
#!/usr/bin/env ruby | |
# List all keys stored in memcache. | |
# Credit to Graham King at http://www.darkcoding.net/software/memcached-list-all-keys/ for the original article on how to get the data from memcache in the first place. | |
require 'net/telnet' | |
headings = %w(id expires bytes cache_key) | |
rows = [] |