Skip to content

Instantly share code, notes, and snippets.

@Rplus
Rplus / README.md
Last active March 15, 2016 12:43
minion language translator
@Rplus
Rplus / .gitignore
Last active March 11, 2016 07:04
[Codepen] Micro Animation of Like
.temp
@Rplus
Rplus / Codepen details.js
Last active February 9, 2018 13:54
bookmarklet(s) in browser
// get codepen stats in `/pen/` & `/full/` page
/* globals fetch */
javascript: (function () {
var dialogId = 'stat-dialog';
var dialog = document.getElementById(dialogId);
if (!dialog) {
dialog = document.createElement('dialog');
dialog.id = dialogId;
dialog.style.position = 'fixed';
@Rplus
Rplus / Codepen - Facebook emoji.md
Last active February 26, 2016 17:12
Codepen - Facebook emoji

Codepen - Facebook emoji

@Rplus
Rplus / Stripe.md
Last active February 25, 2016 22:50
codepen project
@Rplus
Rplus / backup github issues & comments.js
Last active February 22, 2016 18:36
backup github issues & comments
/* globals fetch, confirm, prompt, location */
// How to use:
//
// 0. save the code below into your bookmark as a bookmarklet
// 1. go to target repo
// 2. click the bookmarklet in your Chrome
// 3. open console panel in devtool
// 4. enter `copy(githubIssues)`
// 5. paste directly in your text editor and save it!! ALL DONE!