Skip to content

Instantly share code, notes, and snippets.

View kkame's full-sized avatar
🏠
Working from home

KKAME kkame

🏠
Working from home
View GitHub Profile
🌞 Morning 33 commits ▉░░░░░░░░░░░░░░░░░░░░ 4.6%
🌆 Daytime 178 commits █████▏░░░░░░░░░░░░░░░ 24.7%
🌃 Evening 352 commits ██████████▎░░░░░░░░░░ 48.9%
🌙 Night 157 commits ████▌░░░░░░░░░░░░░░░░ 21.8%
@kkame
kkame / 📊 Weekly development breakdown
Last active October 29, 2020 13:48
Weekly development breakdown
PHP 10 hrs 55 mins ████████████▋░░░░░░░░ 60.1%
Blade Template 1 hr 52 mins ██▏░░░░░░░░░░░░░░░░░░ 10.3%
Other 1 hr 20 mins █▌░░░░░░░░░░░░░░░░░░░ 7.4%
JavaScript 1 hr 10 mins █▎░░░░░░░░░░░░░░░░░░░ 6.5%
JSON 52 mins █░░░░░░░░░░░░░░░░░░░░ 4.8%
@kkame
kkame / js
Last active August 18, 2019 09:57
optimize coursera
document.getElementsByClassName('video-main-player-container')[0].style.width="800px";
document.getElementsByClassName('rc-VideoItemWithHighlighting')[0].style.margin="0px";
document.getElementsByClassName('rc-VideoMiniControls')[0].style.display='none';
@kkame
kkame / packagist-kr-nginx-config
Last active August 11, 2019 05:11
packagist-kr-nginx-config
upstream cluster {
server ncloud.packagist.kr fail_timeout=1s;
server packagist.jp backup;
keepalive 100;
}
server {
root /home/packagist-mirror/public;
@kkame
kkame / bitbucket2gitlab.sh
Created February 21, 2019 05:32
change git remote url bitbucket to gitlab
#!/bin/sh
git remote set-url origin ${$(git config --get remote.origin.url)/bitbucket\.org/gitlab\.com}