Skip to content

Instantly share code, notes, and snippets.

View snowman's full-sized avatar
💭
I may be slow to respond.

snowman snowman

💭
I may be slow to respond.
View GitHub Profile
@snowman
snowman / builder_example.js
Last active July 25, 2021 08:39 — forked from necccc/builder_example.js
Gist for Transform your codebase using codemods
// create a function call that looks like
// "myfunc(someVar, 'bar')"
const callExpr = j.callExpression(j.identifier("myFunc"), [
j.indentifier("someVar"),
j.literal("bar"),
]);
@snowman
snowman / switch_windows_with_same_process_name.ahk
Last active July 6, 2021 14:58
AutoHotkey - Switch windows with same process name
#SingleInstance Force
#Persistent
DetectHiddenWindows, Off
;; Description
;;
;; This AutoHotkey script is to switch between different windows of the same process name.
;;
;; The checking algorithm is based on the app's process basename without path.
@snowman
snowman / README.md
Created February 1, 2021 15:25 — forked from joyrexus/README.md
Perl one-liners

Hi:

perl -e 'print "hello world!\n"'

A simple filter:

perl -ne 'print if /REGEX/'

Filter out blank lines (in place):

@snowman
snowman / background.html
Created December 12, 2020 05:39 — forked from srsudar/background.html
Pasting from the system clipboard using a Chrome extension.
<!DOCTYPE html>
<html>
<head>
<script src="background.js"></script>
</head>
<body>
<textarea id="sandbox"></textarea>
</body>
@snowman
snowman / m3u8-to-mp4.md
Created December 9, 2020 03:37 — forked from tzmartin/m3u8-to-mp4.md
m3u8 stream to mp4 using ffmpeg

1. Copy m3u8 link

Alt text

2. Run command

echo "Enter m3u8 link:";read link;echo "Enter output filename:";read filename;ffmpeg -i "$link" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 $filename.mp4
@snowman
snowman / For Mac 4.2.6 unlimited trial.md
Created December 7, 2020 06:30 — forked from rise-worlds/For Mac 4.2.6 unlimited trial.md
Beyond Compare 4 license for Windows, Mac, Linux

for 4.2.4 or higher,4.2.5,4.2.6 ,it's works , this is the way which makes Always in evaluation mode 。

  1. go to the dir : /Applications/Beyond Compare.app/Contents/MacOS
  2. change the name BCompare to BCompare.bak
  3. touch a file name BCompare , and chmod a+u BCompare
  4. insert BCompare the content :
#!/bin/bash
rm "/Users/$(whoami)/Library/Application Support/Beyond Compare/registry.dat"
"`dirname "$0"`"/BCompare.bak $@
@snowman
snowman / chars.cs
Last active April 2, 2020 05:48
C sharp basic #newbie
// chars.cs
// A listing to print out a number of characters and their numbers
//----------------------------------------------------------------
using System;
class chars
{
public static void Main()
{
#include <stdio.h>
//
// o n
// ---------------------->
// | . . . . .
// | . . . . .
// | . . . . .
// | . . . . .
// | . . . . .
@snowman
snowman / weixin.md
Last active April 1, 2020 04:54 — forked from Josscii/weixin.md
wechat_spider 原理扫盲帖

wechat_spider 原理扫盲帖

这篇文章旨在为刚接触 wechat_spider 的人提供一个快速了解这个项目基本原理的途径。

思路

首先我们随便进入一个微信公众号详情页。

@snowman
snowman / cloudSettings
Last active April 11, 2023 12:02
VS code extensions
{"lastUpload":"2022-07-14T13:42:39.092Z","extensionVersion":"v3.4.3"}