I hereby claim:
- I am souhaiebtar on github.
- I am tsouhaieb (https://keybase.io/tsouhaieb) on keybase.
- I have a public key ASB5thOwU7VEYTagEGRBJB2AB7gEn6g31vihxfGXRWcY3wo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| USER=$(whoami) | |
| get_distribution() { | |
| lsb_dist="" | |
| # Every system that we officially support has /etc/os-release | |
| if [ -r /etc/os-release ]; then | |
| lsb_dist="$(. /etc/os-release && echo "$ID")" | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### | |
| ### Shell script to download Oracle JDK / JRE / Java binaries from Oracle website using terminal / command / shell prompt using wget. | |
| ### You can download all the binaries one-shot by just giving the BASE_URL. | |
| ### Script might be useful if you need Oracle JDK on Amazon EC2 env. | |
| ### Script is updated for every JDK release. | |
| ### Features:- | |
| # 1. Resumes a broken / interrupted [previous] download, if any. | |
| # 2. Renames the file to a proper name with including platform info. |
| #!/bin/bash | |
| # Create wineprefix using this script, install Photoshop, do not run it, then change wine version to '1.7.41-PhotoshopBrushes' emulating 'win7' | |
| [ "$PLAYONLINUX" = "" ] && exit 0 | |
| source "$PLAYONLINUX/lib/sources" | |
| PREFIX='Photoshop' | |
| WINEVERSION='1.9.3-staging' | |
| TITLE='Adobe Photoshop' | |
| EDITOR='Adobe Systems Inc.' |
| RESTORE=$(echo -en '\033[0m') | |
| RED=$(echo -en '\033[00;31m') | |
| GREEN=$(echo -en '\033[00;32m') | |
| YELLOW=$(echo -en '\033[00;33m') | |
| BLUE=$(echo -en '\033[00;34m') | |
| MAGENTA=$(echo -en '\033[00;35m') | |
| PURPLE=$(echo -en '\033[00;35m') | |
| CYAN=$(echo -en '\033[00;36m') | |
| LIGHTGRAY=$(echo -en '\033[00;37m') | |
| LRED=$(echo -en '\033[01;31m') |
| # backup chrome profile | |
| cd ~/.config | |
| tar -jcvf google-chrome-profile.tar.bz2 google-chrome | |
| mv google-chrome-profile.tar.bz2 ~/ | |
| # restore chrome profile | |
| mv google-chrome-profile.tar.bz2 ~/.config | |
| cd ~/.config |
| # Linux (Using KDE Neon, Based on Ubuntu 18.04 a.k.a Bionic Beaver) # | |
| 1. Update your Sublime Text 3 to latest version (3.2.1 Build 3207) | |
| 2. Enter License | |
| 3. Open Terminal and execute command | |
| 4. "sudo chattr +i ~/.config/sublime-text-3/Local/License.sublime_license" to make immutable file | |
| 5. Done | |
| ----- BEGIN LICENSE ----- | |
| Member J2TeaM |
| inside .vimrc | |
| ```vimrc | |
| function! UseTabs() | |
| set tabstop=4 " Size of a hard tabstop (ts). | |
| set shiftwidth=4 " Size of an indentation (sw). | |
| set noexpandtab " Always uses tabs instead of space characters (noet). | |
| set autoindent " Copy indent from current line when starting a new line (ai). | |
| endfunction |