This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"Message":"Claim Bounty for dApp.xyz","Signature":"xxxx","Wallet Address":"0x59178bAc7A9BBfa287F39887EAA2826666f14A2a"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"Message":"Claim Bounty for dApp.xyz","Signature":"0xaeaab479f6c9687e0ffd53f8f418c39a768773458b1601bc6ac1c59f6760aa7538e81f853887ef1b2e217dc478a051dd2f190764074a335f5c752a23a03968571c","Wallet Address":"0x59178bAc7A9BBfa287F39887EAA2826666f14A2a"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo 'setting ibus-mozc...' | |
| # Change ibus-mozc default input mode to hiragana | |
| sleep 3 && \ | |
| xdotool keydown super+space && sleep 0.2 && \ | |
| xdotool key space && sleep 0.2 && \ | |
| xdotool keyup super+space && \ | |
| for i in `seq 0 9` | |
| do |
I hereby claim:
- I am tetz on github.
- I am takemon (https://keybase.io/takemon) on keybase.
- I have a public key ASDJLhB5y184eD_MjCsWEXA2f_ivhcUtHRoawFklkbhmQgo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict' | |
| let fs = require("fs"); | |
| let path = require("path"); | |
| exports.handler = async (event) => { | |
| console.log('==== file path ===='); | |
| console.log(path.resolve("./sample.cert.pem")); | |
| fs.readFile(__dirname + '/sample.cert.pem', (err, data) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import logging | |
| import symphony | |
| import tweepy as tp | |
| import json | |
| import operator | |
| import time |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func resizeImage(image: UIImage, newWidth: CGFloat) -> UIImage { | |
| let scale = newWidth / image.size.width | |
| let newHeight = image.size.height * scale | |
| UIGraphicsBeginImageContextWithOptions(CGSize(width: newWidth, height: newHeight), false, 0.0) | |
| image.draw(in: CGRect(x: 0, y: 0,width: newWidth, height: newHeight)) | |
| let newImage = UIGraphicsGetImageFromCurrentImageContext() | |
| UIGraphicsEndImageContext() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo ngrep -q -d eth0 -W byline port 80 |
NewerOlder