Skip to content

Instantly share code, notes, and snippets.

View fmeyer's full-sized avatar
👨‍💻
Grinding

Fernando Meyer fmeyer

👨‍💻
Grinding
View GitHub Profile
@fmeyer
fmeyer / gist_cleanup.js
Last active March 20, 2021 17:34 — forked from gabmontes/delete-all-my-gists.js
Gist cleanup
var async = require('async');
var GitHubApi = require('@octokit/rest');
var github = new GitHubApi({
version: '3.0.0',
});
github.authenticate({
type: 'oauth',
token: 'XXXXXXX'
#!/usr/bin/env bash
#
# gist-backup
#
# Backs up all your public and private gists
# to the given directory.
#
# Example:
#
# gist-backup ~/gist-backups
/**
MACROS
macros.h
Purpose: A collection of commonly used Useful C macros.
@author Shubham Ramdeo
@version 0.2
Released under MIT LICENSE (see LICENSE.txt)
*/
@fmeyer
fmeyer / cryto01.py
Last active January 22, 2019 17:14
# from cryptography
# key = None
# iv = None
#
# cipher = None
# encryptor = None
# ciphertext = None
# decryptor = None
# plaintext = None
@fmeyer
fmeyer / thing.js
Last active June 3, 2021 12:06
Unfollow everyone on linkedin
// Go to here https://www.linkedin.com/feed/following/?filterType=connection
// open the chrome dev tools console
// paste the following
// go grab a cup of tea
// get rid of all life coach from linkedin
var buttons = $('button'), interval = setInterval(function() {
var btn = $('.is-following');
console.log('Clicking:', btn);
btn.click();
@fmeyer
fmeyer / logbook
Last active June 13, 2022 22:20
Renders a Github Wiki with the content and entries from a log book
#!/bin/bash
cd ~/code/logdata.wiki/ || exit
TS=$(date +'%H:%M:%S')
DS=$(date +'%Y-%m-%d')
YEAR=$(date +'%Y')
CURRENT_LOG_DIR="logs/$YEAR/"
# check if current log year exists, creates if no
if [ ! -d "$CURRENT_LOG_DIR" ]; then
mkdir -p "$CURRENT_LOG_DIR"
fi

Keybase proof

I hereby claim:

  • I am fmeyer on github.
  • I am fmeyer (https://keybase.io/fmeyer) on keybase.
  • I have a public key ASACZeH6C6IwHYvOSvYXk71kOPmjafmtEmGpzf7NvrvatQo

To claim this, I am signing this object:

@fmeyer
fmeyer / content.md
Created May 7, 2020 20:51
Gist from Drafts

Werfqwerqwe

<center>
{{ if .IsNamedParams }}
{{- $site := .Get "site" -}}
{{- $name := .Get "name" -}}
{{- $domains := split $site "," -}}
{{- $domains := apply $domains "printf" "site:%s" "." -}}
{{- $domains := delimit $domains " || " -}}
{{- $domains := printf " ( %s )" $domains -}}
@fmeyer
fmeyer / gist:7c5f05eb90d1a367d18018fecb2b5275
Created June 19, 2020 07:03
Test sanitizer race condition
##### ../misc/cgo/testsanitizers
--- FAIL: TestShared (0.03s)
--- FAIL: TestShared/tsan_shared (2.19s)
cshared_test.go:71: `/tmp/TestShared464897178/tsan_shared` exited with exit status 66
==================
WARNING: ThreadSanitizer: data race (pid=146300)
Write of size 8 at 0x7fc3bfc95c10 by thread T1:
#0 pthread_attr_getstacksize <null> (tsan_shared+0x00000041d5c2)
#1 x_cgo_init <null> (libtsan_shared.so+0x000000098a15)