This file contains hidden or 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
| .vimiumHintMarker { | |
| background-color: rgba(46, 92, 79, 0.648438); | |
| padding: 3px; | |
| border-radius: 3px; | |
| text-align: center; | |
| font-size: 8pt; | |
| border: 1px solid #000; | |
| box-shadow: 2px 2px 2px #333; | |
| color: #D3FF5A; | |
| opacity: 0.9; |
This file contains hidden or 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
| .vimiumHintMarker { | |
| background-color: #444; | |
| padding: 3px; | |
| border-radius: 3px; | |
| text-align: center; | |
| font-size: 8pt; | |
| border: 1px solid #000; | |
| box-shadow: 2px 2px 2px #333; | |
| color: #fff; | |
| opacity: 0.9; |
This file contains hidden or 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 pc4=proxychains4 | |
| ##### | |
| git_incremental_clone() | |
| { | |
| REPO=$1 | |
| DIR=$2 | |
| git clone --recurse-submodules $REPO $DIR --depth=1 | |
| cd $DIR |
This file contains hidden or 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
| # -*- coding: utf-8 -*- | |
| """ | |
| Python Script to download the Chrome Extensions (CRX) file directly from the google chrome web store. | |
| Referred from http://chrome-extension-downloader.com/how-does-it-work.php | |
| """ | |
| from __future__ import division | |
| import argparse | |
| import requests |
This file contains hidden or 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 bash | |
| # | |
| # Setup automatic sync from a Github upstream repository to a fork | |
| # - a branch "actions" will be created (or re-used) to hold the Github action to run | |
| # - sync is done each hour | |
| # - branch 'actions' needs to be the default branch of your fork (=> settings) | |
| # - the script is able to both create and update and rewrite the sync script if you modify this script file | |
| # | |
| # Author: Mathiue Carbou |
This file contains hidden or 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
| #!/bin/bash | |
| OPENSSL_VERSION="1.0.1g" | |
| curl -O http://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz | |
| tar -xvzf openssl-$OPENSSL_VERSION.tar.gz | |
| mv openssl-$OPENSSL_VERSION openssl_i386 | |
| tar -xvzf openssl-$OPENSSL_VERSION.tar.gz | |
| mv openssl-$OPENSSL_VERSION openssl_x86_64 | |
| cd openssl_i386 |
This file contains hidden or 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
| /* | |
| Arc Dark theme for styling Vimium link hints | |
| By Giorgi Gzirishvili (@giogziro95). This code is in the public domain. | |
| To use: | |
| 1. Copy the code. | |
| 2. Go to the Vimium options. | |
| 3. Click Show Advanced Options. |
This file contains hidden or 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
| #!/bin/bash | |
| case $# in | |
| 0) | |
| echo "Usage: $0 {start|stop}" | |
| exit 1 | |
| ;; | |
| 1) | |
| case $1 in | |
| start) |
OlderNewer