Skip to content

Instantly share code, notes, and snippets.

View metawops's full-sized avatar
🎯
Focusing

Stefan Wolfrum metawops

🎯
Focusing
View GitHub Profile
@clintel
clintel / gist:1155906
Created August 19, 2011 02:40
Fenced code in bullet lists with GitHub-flavoured MarkDown??

Fenced code blocks inside ordered and unordered lists

  1. This is a numbered list.

  2. I'm going to include a fenced code block as part of this bullet:

    Code
    More Code
    
@eviltester
eviltester / gist:11093f0e4c501a41990e227393184eda
Last active November 19, 2024 16:11
uncheck twitter interests
var timer=100;document.querySelectorAll("div > input[type='checkbox']:checked").forEach((interest) => {setTimeout(function(){interest.click()},timer);timer+=2000;});
@daniepetrov
daniepetrov / fix.md
Last active January 15, 2021 12:14
How to Fix Blurry Fonts in MacOS Mojave / Catalina for Non-Retina Displays
defaults write -g CGFontRenderingFontSmoothingDisabled -bool NO
defaults -currentHost write -globalDomain AppleFontSmoothing -int 1

Light font smoothing defaults command (my selection):

defaults -currentHost write -globalDomain AppleFontSmoothing -int 1
#include <ESP8266WiFi.h>
// Replace with your SSID and Password
const char* ssid = "";
const char* password = "";
// Replace with your unique IFTTT URL resource
const char* resource = "";