Name | Version | Enabled | ID |
---|---|---|---|
Attach from Clipboard | 1.1.0 | true | [email protected] |
CustomizeMyBird | 2.7.9.1 | true | CustomizeMyBird@Aris_CTRdev |
Disable DragAndDrop (Thunderbird) | 3.2.0 | true | [email protected] |
Dorando keyconfig | 2018.1 | true | [email protected] |
Header Tools Lite | 0.6.2 | true | [email protected] |
Manually sort folders | 1.2.1 | true | [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Shotcuts | |
// @namespace http://bitflow.org | |
// @version 0.1 | |
// @description add shotcuts | |
// @match https://*/* | |
// @copyright 2022+, You | |
// ==/UserScript== | |
function onKey(e) { | |
// console.log(e, e.key); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"strings" | |
) | |
const DASH = "-" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"encoding/json" | |
"fmt" | |
"time" | |
) | |
type Duration struct { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* MIT License | |
* | |
* Copyright (c) 2017 Roland Singer [[email protected]] | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights | |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
* copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias gcl='git clone' | |
alias gs='git status' | |
alias gd='git diff' | |
alias gdc='git diff --cached' | |
alias gl='git lg' | |
alias gps='git push -u' | |
alias gconf='vi .git/config' | |
alias gamend='git commit --amend' | |
alias gamendy='git commit --amend --no-edit' | |
alias gback='git reset --hard HEAD~' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Usage: | |
>>> class Color(SimpleEnum): | |
>>> red = KV | |
>>> green = 'green' # same as using `KV` | |
>>> grey = 'gray' | |
>>> Color.red | |
'red' | |
>>> Color.grey |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.mw, | |
.tsf{ | |
margin: 0 auto; | |
} | |
/* search tool bar */ | |
#hdtb-msb, | |
#resultStats { | |
position: relative; | |
left: calc((100vw - 950px)/2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Updated: 2018-10-17 | |
import re, sys, os | |
""" | |
Converts the Nix profile SH script to a Fish-compatible profile using a | |
simple line-by-line replace algorithm. | |
""" |
NewerOlder