Creates merge request on Gitlab for you
Download it, add executable perms and place into PATH:
# Place it into ~/.bin
mkdir ~/.bin| #!/usr/bin/env bash | |
| # /bin/bash -c "$(curl -fsSL https://gist.github.com/thangphuocnguyen/3f3442273716874395c18883c3c3e866/raw/afa5309211c55c0f6eb0fac02da32c6d665f8051/zsdot-init.sh)" | |
| unameOut="$(uname -s)" | |
| case "${unameOut}" in | |
| Linux*) DOTFILES_OS=linux;; | |
| Darwin*) DOTFILES_OS=mac;; | |
| CYGWIN*) DOTFILES_OS=cygwin;; | |
| MINGW*) DOTFILES_OS=minGw;; |
| #!/bin/bash | |
| # | |
| # Set Colors | |
| # | |
| bold=$(tput bold) | |
| underline=$(tput sgr 0 1) | |
| reset=$(tput sgr0) |
Install the custom CSS plugin, then make a file on your computer that will hold your custom CSS, I like to make one in my home directory called ~/.vscodestyles.css and then add the CSS into it.
Once done, open your command palette and select enable custom CSS and JS
| /* https://gist.github.com/akmeghdad/b1208c2caa601f0ba29f953faabac709 */ | |
| /* THANKS OF */ | |
| /* https://gist.github.com/samdenty/b96f4df576d05cb123248f8ebfa899b6 */ | |
| /* https://gist.github.com/Lightfire228/39dc2cf403237a190e79a000912691b2 */ | |
| /* [WINDOWS] add this code in %USERPROFILE%\AppData\Local\Programs\Microsoft VS Code\resources\app\out\vs\workbench\workbench.main.css */ | |
| :root { | |
| /** Width of the lines **/ | |
| --tree-width: 14px; | |
| /** Opacity of the lines whilst not hovered **/ | |
| --tree-opacity: 0.1; |
This tutorial is how to post website/application on IPFS and link with ENS domains(.eth).
If you have any question please contact us for help:
No need for homebrew or anything like that. Works with https://www.git-tower.com and the command line.
gpg --list-secret-keys and look for sec, use the key ID for the next stepgit to use GPG -- replace the key with the one from gpg --list-secret-keys| # Utilities | |
| # --------------------------------------------------------------------------------- | |
| You can find the key-ID by listing your keys with the following command: | |
| gpg --list-keys | |
| # Delete Private Key | |
| # Remove the keypair (both the public and private keys) specified by name. | |
| gpg --delete-secret-key key-ID | |
| /* | |
| * Scaffolding | |
| * Basic and global styles for generating a grid system, structural layout, and page templates | |
| * ------------------------------------------------------------------------------------------- */ | |
| .container | |
| Sets a width of 940px which also centres the content (clears floated elements before/after) | |
| .container-fluid | |
| Sets a minimum width of 940px (clears floated elements before/after) |