Skip to content

Instantly share code, notes, and snippets.

View ffadilaputra's full-sized avatar
👉🏻 🐛 👀

Ivan Fadila Putra ffadilaputra

👉🏻 🐛 👀
View GitHub Profile
@robkovacs
robkovacs / figma-copy.md
Last active January 10, 2025 15:07
Copy Figma objects via JS
  1. Copy the object in Figma
  2. Open Clipboard Inspector or a tool like it that can read the raw data off your clipboard.
  3. When you paste the Figma object into this tool, you should see something that's type text/html, and possibly something of type text/plain. The text/plain one will be the text content of your object, which you can ignore.

In the text/html, you're looking for:

  1. An HTML comment starting with figmeta:
title description author
<!-- anti anti click bait -->
<!-- write with humanity -->
<!-- whoami/team/squad/personal -->

Background

Goal

@kcak11
kcak11 / App.md
Last active November 7, 2024 05:59
Country Codes

Country Codes

List of all Country Codes (ISO & Dialing) sorted in alphabetical order.

@nhandt64
nhandt64 / tt-domain.txt
Last active March 15, 2025 19:38
TikTok domains list for Pi-hole
v16a.tiktokcdn.com
p16-tiktokcdn-com.akamaized.net
log.tiktokv.com
ib.tiktokv.com
api-h2.tiktokv.com
v16m.tiktokcdn.com
api.tiktokv.com
v19.tiktokcdn.com
mon.musical.ly
api2-16-h2.musical.ly
const measureTime = (cb, ...args) => {
const t0 = performance.now();
cb(...args);
const t1 = performance.now();
console.log('Call to doSomething took ' + (t1 - t0) + ' milliseconds.');
};
@ardianta
ardianta / hello-world.js
Last active August 28, 2020 08:44
Testing script for npx
#!/usr/bin/env node
for(var i = 0; i < 10; i++){
console.log("Hello World!");
}
@abdilahrf
abdilahrf / hosts
Last active May 16, 2024 00:04
Blokir hostname INDIHOM* ke localhost kita biar kapok, untuk linux tambahin di file /etc/hosts & windows /System32/drivers/etc/hosts
# INDIHOM*
127.0.0.1 x-tags.net
127.0.0.1 a01.uadexchange.com
127.0.0.1 cdn.uzone.id
127.0.0.1 cdn3.uzone.id
127.0.0.1 cfs.uzone.id
127.0.0.1 csf.uzone.id
127.0.0.1 d01.notifa.info
127.0.0.1 d31qbv1cthcecs.cloudfront.net
127.0.0.1 d5nxst8fruw4z.cloudfront.net
@creative-cranels
creative-cranels / ReadMe.md
Last active February 26, 2025 02:07
Private NPM alternative
@pyk
pyk / app.js
Last active July 31, 2018 16:06
app.js
// Models is sequelize instance
app.use('/smartphones', smartphonesRouter(models));
@rproenca
rproenca / Clipboard.js
Last active January 21, 2025 03:16
Copy text to clipboard using Javascript. It works on Safari (iOS) and other browsers.
window.Clipboard = (function(window, document, navigator) {
var textArea,
copy;
function isOS() {
return navigator.userAgent.match(/ipad|iphone/i);
}
function createTextArea(text) {
textArea = document.createElement('textArea');