Skip to content

Instantly share code, notes, and snippets.

View asselin's full-sized avatar

Andre Asselin asselin

View GitHub Profile
@asselin
asselin / rollup-typescript.md
Last active September 29, 2022 18:18 — forked from aleclarson/rollup-typescript.md
The best Rollup config for TypeScript libraries

Features

🔥 Blazing fast builds
😇 CommonJS bundle
🌲 .mjs bundle
.d.ts bundle + type-checking
🧐 Source maps

Install

@asselin
asselin / trackpointkeyboard.json
Last active November 4, 2021 01:07 — forked from k3174r0-75uch1y4/trackpointkeyboard.json
setting for karabiner-elements to use trackpoint keyboard on mac OS sierra.
{
"title": " Thinkpad keyboard",
"rules": [
{
"description": "Fix Thinkpad keyboard scroll",
"manipulators": [
{ "type": "basic",
"from": {
"pointing_button": "button3"
}
@asselin
asselin / OpenWithSublimeText3.bat
Last active November 30, 2016 21:24 — forked from roundand/OpenWithSublimeText3.bat
Open folders with Sublime Text 3 from windows explorer context menu (tested in Windows 10)
@echo off
FOR /F "tokens=* USEBACKQ" %%F IN (`where sublime_text`) DO (
SET st3Path=%%F
)
ECHO %st3Path%
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f