Skip to content

Instantly share code, notes, and snippets.

View amblerkr's full-sized avatar
🎶
Music is Life

Ambler amblerkr

🎶
Music is Life
View GitHub Profile
@amblerkr
amblerkr / notion2blog.js
Created July 30, 2020 19:14 — forked from mayneyao/notion2blog.js
Notion.so > Personal Blog | custom domain + disqus comment
const MY_DOMAIN = "agodrich.com"
const START_PAGE = "https://www.notion.so/gatsby-starter-notion-2c5e3d685aa341088d4cd8daca52fcc2"
const DISQUS_SHORTNAME = "agodrich"
addEventListener('fetch', event => {
event.respondWith(fetchAndApply(event.request))
})
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
🌞 Morning 25 commits ███▎░░░░░░░░░░░░░░░░░ 15.6%
🌆 Daytime 41 commits █████▍░░░░░░░░░░░░░░░ 25.6%
🌃 Evening 23 commits ███░░░░░░░░░░░░░░░░░░ 14.4%
🌙 Night 71 commits █████████▎░░░░░░░░░░░ 44.4%
아이돌 ‘유료 서비스’의 명암 [이슈와치]
https://t.co/14fvkysoXd
#팬마케팅 #팬덤비즈니스 #팬덤플랫폼
#플랫폼비즈니스 #뮤직비즈니스
@amblerkr
amblerkr / instagram_count_to_googe_sheet.js
Created November 29, 2020 19:26 — forked from JulienDev/instagram_count_to_googe_sheet.js
Track your Instagram followers over time with Google Sheets Scripts
// Your sheet name in the document
var sheetName = "Data";
// Your instagram user id
var user_id = "CHANGE-ME"; //find your id here : https://codeofaninja.com/tools/find-instagram-user-id
var instagram_base_url = "https://www.instagram.com/graphql/query/";
var following = "?query_hash=58712303d941c6855d4e888c5f0cd22f&variables=%7B%22id%22%3A%22" + user_id + "%22%2C%22first%22%3A24%7D"
var followers = "?query_hash=37479f2b8209594dde7facb0d904896a&variables=%7B%22id%22%3A%22" + user_id + "%22%2C%22first%22%3A24%7D"
var medias = "?query_hash=f2405b236d85e8296cf30347c9f08c2a&variables=%7B%22id%22%3A%22" + user_id + "%22%2C%22first%22%3A12%7D"
We couldn’t find that file to show.
🇰🇷S. Korea 3 minutes ago
🤒Active: 8,555
😌Recovered: 70,117
💀Deaths: 1,459
💉Tests: 5,847,178
@amblerkr
amblerkr / COVID-19
Last active December 20, 2020 04:16
COVID-19 Status
ID Date Cases(change) Deaths(chng)
-- 2020-12-14 71503614(540659) 1612833(7085)
US 2020-12-14 16256754(189723) 299177(1340)
BR 2020-12-14 6901952( 21825) 181402( 279)
IN 2020-12-14 9884100( 27071) 143355( 336)
MX 2020-12-14 1250044( 8608) 113953( 249)
IT 2020-12-14 1843712( 17937) 64520( 484)
UK 2020-12-14 1849403( 18447) 64170( 144)
FR 2020-12-14 2376852( 11533) 57911( 150)
IR 2020-12-14 1108269( 7451) 52196( 247)
// ==UserScript==
// @name Absolute Enable Right Click & Copy
// @namespace Absolute Right Click
// @description Force Enable Right Click & Copy & Highlight
// @shortcutKeys [Ctrl + `] Activate Absolute Right Click Mode To Force Remove Any Type Of Protection
// @author Absolute
// @version 1.8.9
// @include *://*
// @icon https://i.imgur.com/AC7SyUr.png
// @compatible Chrome Google Chrome + Tampermonkey
javascript:function redirectURLFunc(){var targetURL=window.location.href.split("?")[0]+"?";var fqa=new Array("oid","aid");for(var i=0;i<fqa.length;i++){targetURL=targetURL+(i>0?"&":"")+fqa[i]+"="+__getQuerystring(fqa[i])}window.location.href=targetURL}function __getQuerystring(key){key=key.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");var regex=new RegExp("[\\?&]"+key+"=([^&#]*)");var qs=regex.exec(window.location.href);if(qs==null)return"";else return qs[1]}redirectURLFunc();