Skip to content

Instantly share code, notes, and snippets.

@Lomanic
Lomanic / flip_dot_clock.ino
Created February 9, 2021 09:51 — forked from iizukak/flip_dot_clock.ino
Flip Dot Clock
// 0x80 beginning
//___________________
// 0x81 - 112 bytes / no refresh / C+3E
// 0x82 - refresh
// 0x83 - 28 bytes of data / refresh / 2C
// 0x84 - 28 bytes of data / no refresh / 2C
// 0x85 - 56 bytes of data / refresh / C+E
// 0x86 - 56 bytes of data / no refresh / C+E
// ---------------------------------------
// address or 0xFF for all
@Lomanic
Lomanic / Readme.md
Created February 4, 2020 19:58 — forked from fracz/Readme.md
Restore intentionally deleted commits in Git

Restore intentionally deleted commits in Git (remote)

Situation

  1. You own a Git repository server and the developers do not have access to it (i.e. they can only read & write to the repo, but not gc it).
  2. You had a developer that wrote a project for you.
  3. He got angry for whatever reason and deleted all branches from the remote repo. He also push -fed the master branch leaving only one silly commit there.
  4. He escaped from the country leaving you without any code at all (at least this is what he believe in).
  5. You have never cloned the repo to other machine. There were only two copies of it: the developer's one and the server's one.
@Lomanic
Lomanic / send-magic-packet.sh
Last active June 21, 2019 17:18 — forked from SteveMarshall/send-magic-packet.sh
Wake-On-Lan Magic Packet using netcat in bash
#!/usr/bin/env bash
mac_address=$1
# Strip colons from the MAC address
mac_address=$(echo $mac_address | sed 's/://g')
broadcast=$2
port=4343
# Magic packets consist of 12*`f` followed by 16 repetitions of the MAC address
@Lomanic
Lomanic / utmstrip.user.js
Last active November 7, 2018 23:08 — forked from paulirish/utmstrip.user.js
userscript: Drop the UTM params from a URL when the page loads
// ==UserScript==
// @name UTM param stripper
// @author Paul Irish, Sam Hasler, Lomanic
// @namespace http://github.com/paulirish
// @version 1.3
// @description Drop the UTM params from a URL when the page loads.
// @extra Cuz you know they're all ugly n shit.
// @include /^http.*\?.*[?&]utm_.*$/
// @run-at document-start
// @updateURL https://gist.github.com/Lomanic/cf1158a9bfb90d8b5dbbb4d05483e857/raw/utmstrip.user.js
@Lomanic
Lomanic / common.sh
Created February 13, 2018 15:16 — forked from jeckel/common.sh
Common bash functions
#!/bin/bash
# ----------------------------------------------------------
# Define common colors and styles
#
readonly RED='\033[0;31m'
readonly GREEN='\033[0;32m'
readonly ORANGE='\033[0;33m'
readonly BLUE='\033[0;34m'
readonly PURPLE='\033[0;35m'
31683AD77BFC47A1D1A4F30959FDDE26|0001 - Electroplankton (Japan).nds
4E24E5D333A91F948265A177B2FF9DB2|0001 - Electroplankton (Japan) (1).nds
283631768B2213227FBBEE91154C688F|0002 - Need for Speed - Underground 2 (USA) (En,Fr,De,Es,It).nds
C7B2F7A5861F7D4BC94FF050D0B4FBD0|0002 - Need for Speed - Underground 2 (USA) (En,Fr,De,Es,It) (1).nds
D57CB3335F228F3DB869003766D10970|0002 - Need for Speed - Underground 2 (USA) (En,Fr,De,Es,It) (2).nds
C8065C4B4A21337C2928A14973218D26|0003 - Yoshi Touch & Go (USA).nds
827CBAB11FB04D1C87389077CB5809BE|0003 - Yoshi Touch & Go (USA) (1).nds
90C6F561CAFB5EDE611398E2F5CA88BD|0003 - Yoshi Touch & Go (USA) (2).nds
6796156F49B5ED663EF986B379FFD4EA|0003 - Yoshi Touch & Go (USA) (3).nds
FD920DBC37C332D392B547B1D7D5839D|0004 - Feel the Magic - XY-XX (USA) (En,Ja).nds
@Lomanic
Lomanic / open_process.go
Created November 12, 2017 16:46 — forked from castaneai/open_process.go
WinAPI OpenProcess in Golang
package main
import (
"fmt"
"syscall"
"unsafe"
)
type Process uintptr
package main
import (
"github.com/AllenDang/w32"
"io"
"os"
"unsafe"
"errors"
"fmt"
"syscall"
@echo off
net session >nul 2>&1
if %ERRORLEVEL% NEQ 0 ( echo Run this script with administrator privileges & exit /B 1 )
:: https://gist.github.com/Albirew/613cbf63595647ff26b269d5271871a0
echo +------------------------------------------------------------------+
echo ^| SMBv1 patch against malwares like WannaCry ou notPetya / Petwrap ^|
echo +------------------------------------------------------------------+
echo.
:: deactivate SMBv1 on SMB server
reg add "HKLM\SYSTEM\CurrentControlSet\services\LanmanServer\Parameters" /v SMB1 /t REG_DWORD /d 0 /f
@Lomanic
Lomanic / Google_Lucky_Button_Fix.user.js
Last active November 17, 2016 10:00 — forked from stcruy/Google_Lucky_Button_Fix.user.js
Google Lucky Button Fix - Greasemonkey script
// ==UserScript==
// @name Google Lucky Button Fix
// @namespace -
// @version 2
// @description On Google search result pages that have "&btnI" in the url, automatically redirect to the first hit.
// @include /^https?:\/\/(?:encrypted|www)\.google\.[^/]+\/(?:$|[#?]|search|webhp).*&btnI.*/
// @grant none
// ==/UserScript==
var firstLink = document.querySelector("#search .rc a").href;
window.location.replace(firstLink);