Skip to content

Instantly share code, notes, and snippets.

View hydraslay's full-sized avatar
🎮
Asobing

hydraslay hydraslay

🎮
Asobing
  • Tokyo
  • 18:14 (UTC +09:00)
View GitHub Profile
@hydraslay
hydraslay / credentials.json.enc
Created July 28, 2021 05:07
Log Workerリクエストファイルreq.zip中身
v2.local.DQOeSspaUDRaR_2gU3zXAnFioD_FxuFX3qtX1ysyBmzL2GXduyYRRJRhvYnCtfE0junXWthF-9yryyT5Iybg7-Cp6w4NQJf-eaybK83L00dVVc2eQcFhGK2ZpBuhRI8yz8AIDJwh-luxrq-kdKvM9mhJ6Qy5CmBpE7ORRfE_LGVwLdemQff6cTowso2Je8qGAQhfqUvfad1VzsbdhL_naRJ4Gfr2Xbv_z9yz8Yix-cLfMLR97aaKXqx3DfDLzJ5UubsNC__liPYs36spmGH9e6IgW2eMmDNOn7P5GWhzVQczJvvu42EaYITpDCPUXBGQzdkNzhevQdlA0c2qaiya3kIlFGy5Tj9M33DViigbEHHgMYq-viacvuVJh3GvjNFxGi3r6U_e2XQqkvCc_wUvy4Dmfoe21WzLoyzcPPchjOVhdyDZfBHN0yzDi_zkXPXKWg8th4fQxqKoDEAyTvg9GdNavt5My_ApC_yUcwN8VCVXulopgKDKdtv7MA1sStn_g2FSN-bpwQd45C3WfbBkD7f6Mugf--biOcaFdpyJAO5WmSo-aq8ZNNI.eyJraWQiOjF9
@hydraslay
hydraslay / sample.txt
Created September 30, 2020 04:45
public javascript library distribute
https://unpkg.com/{package-name}@{version}/{file-path}
https://unpkg.com/howler@2.2.0/dist/howler.js
https://unpkg.com/jquery@3.1.1/dist/jquery.min.js
@hydraslay
hydraslay / index.html
Last active March 25, 2020 08:22
use following <script> and your page will be testable with protractor. this is simply confirm stable with no wait so you should wait for specific element to continue your test.
<script>
var Testability = (function () {
function Testability() {}
Testability.prototype.whenStable = function (callback) {
callback();
};
return Testability;
}());
var testability = window._synctractor = window._synctractor || new Testability();
window.getAngularTestability = function (_element) { return testability; };
option_settings:
- namespace: aws:elasticbeanstalk:cloudwatch:logs
option_name: StreamLogs
value: true
- namespace: aws:elasticbeanstalk:cloudwatch:logs
option_name: DeleteOnTerminate
value: false
- namespace: aws:elasticbeanstalk:cloudwatch:logs
option_name: RetentionInDays
value: 14
@hydraslay
hydraslay / open-chrome-mac.sh
Created September 6, 2019 09:29
Open Chrome without CORS restriction
open -n -a /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --args --user-data-dir="/tmp/chrome_dev_test" --disable-web-security
@hydraslay
hydraslay / git.migrate
Created August 29, 2019 04:00 — forked from niksumeiko/git.migrate
Moving git repository and all its branches, tags to a new remote repository keeping commits history
#!/bin/bash
# Sometimes you need to move your existing git repository
# to a new remote repository (/new remote origin).
# Here are a simple and quick steps that does exactly this.
#
# Let's assume we call "old repo" the repository you wish
# to move, and "new repo" the one you wish to move to.
#
### Step 1. Make sure you have a local copy of all "old repo"
### branches and tags.
#!/usr/bin/python
'''
A Simple mjpg stream http server for the Raspberry Pi Camera
inspired by https://gist.github.com/n3wtron/4624820
'''
from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer
import io
import time
import picamera