I hereby claim:
- I am smoll on github.
- I am smoll (https://keybase.io/smoll) on keybase.
- I have a public key ASBHo8T9zVPaZkuH45iYFk59KEMa8-hPmrmgw4mGOxGuPgo
To claim this, I am signing this object:
[[source]] | |
name = "pypi" | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
[dev-packages] | |
[packages] | |
google-cloud-storage = "*" |
I hereby claim:
To claim this, I am signing this object:
const fs = require('fs') | |
const path = require('path') | |
const rewriteFile = (file, value, replacement) => { | |
const data = fs.readFileSync(file, 'utf-8') | |
const replaced = data.replace(value, replacement) | |
fs.writeFileSync(file, replaced, 'utf-8') | |
} | |
const rewriteMinifyJs = () => { |
var url ='https://www.google.de/search?q=Yahoo+logo&source=lnms&tbm=isch&sa=X'; | |
var page = new WebPage() | |
var fs = require('fs'); | |
var vWidth = 1080; | |
var vHeight = 1920; | |
page.viewportSize = { | |
width: vWidth , | |
height: vHeight |
import {inject} from 'aurelia-framework'; | |
import {Session} from './session'; | |
@inject(Session) | |
export class Auth { | |
// App specific | |
userPoolId = 'us-east-1_fgCWraBkF'; | |
appClientId = '57lq262n28o7ddt8i36jcjj7qd'; |
Reference(s):
http://www.sourcegear.com/diffmerge/downloads.php - get the installer version, NOT the dmg version
bash: | |
export AWS_ACCESS_KEY_ID='...' | |
export AWS_SECRET_ACCESS_KEY='...' | |
export AWS_REGION='us-east-1' | |
irb or ruby script: | |
require 'aws-sdk' | |
s3 = AWS::S3.new |
require 'parser/current' | |
require 'unparser' | |
require 'byebug' | |
module YourHelper | |
def s(type, *children) | |
Parser::AST::Node.new(type, children) | |
end | |
end |
#!/bin/bash | |
# Functions ============================================== | |
# return 1 if global command line program installed, else 0 | |
# example | |
# echo "node: $(program_is_installed node)" | |
function program_is_installed { | |
# set to 1 initially | |
local return_=1 |
require 'cucumber/formatter/io' | |
module Cucumber | |
module Formatter | |
# The formatter used for <tt>--format rerun</tt> | |
# | |
# This formatter keeps track of all failing features and print out their location. | |
# Example: | |
# | |
# features/foo.feature:34 features/bar.feature:11:76:81 |