Skip to content

Instantly share code, notes, and snippets.

View aneveux's full-sized avatar
🐝
ʕノ•ᴥ•ʔノ ︵ ┻━┻

Antoine Neveux aneveux

🐝
ʕノ•ᴥ•ʔノ ︵ ┻━┻
View GitHub Profile
@lucaspar
lucaspar / userChrome.css
Last active May 2, 2025 00:11
Check out the repo instead: https://github.com/lucaspar/firefox-vertical-tabs | Stylesheets for collapsible vertical tabs for Firefox. Tabs expand horizontally when hovered, similar to Edge's.
/*
How to use this CSS:
0. Install the Sidebery extension: https://addons.mozilla.org/en-US/firefox/addon/sidebery/.
1. In Sidebery settings:
a. Set the title preface must as "[S] " (without quotes).
This is used by CSS rules below to identify when Sidebery is active.
b. Set 'Tabs tree structure' to false -- this stylesheet doesn't adapt to
multiple tab levels, but feel free to tweak it!
c. Copy and paste the "SIDEBERY STYLES" section below in
@sylvainpolletvillard
sylvainpolletvillard / cloudSettings
Created October 19, 2018 09:30
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-10-19T09:30:08.862Z","extensionVersion":"v3.2.0"}
@jglick
jglick / backport.sh
Last active June 10, 2024 20:52
Example of setting up a Jenkins plugin backport branch
BASE=1.19 # or whatever; last release compatible with targeted core or other deps
BASETAG=mystuff-${BASE} # or as per http://maven.apache.org/maven-release/maven-release-plugin/prepare-mojo.html#tagNameFormat
FIX=abcd1234 # whatever the backportable fix was, in master or somewhere newer than $BASE
git checkout -b ${BASE}.x $(git log --reverse --ancestry-path --pretty=%H ${BASETAG}..master | head -1)
# or for JEP-305 (“Incrementals”) use: mvn versions:set-property -Dproperty=revision -DnewVersion=${BASE}.1
mvn versions:set -DnewVersion=${BASE}.1-SNAPSHOT -DgenerateBackupPoms=false
git commit -a -m "Prepare for ${BASE}.1"
git push -u origin ${BASE}.x
git cherry-pick -x -m1 $FIX
mvn -B release:{prepare,perform}
@gosukiwi
gosukiwi / .vimrc
Last active February 24, 2020 06:01
.vimrc
" ---------------------- USABILITY CONFIGURATION ----------------------
" Basic and pretty much needed settings to provide a solid base for
" source code editting
" don't make vim compatible with vi
set nocompatible
" turn on syntax highlighting
syntax on
" and show line numbers