NOTE: this gist can be outdated, refer to this repository instead - https://github.com/ghaiklor/iterm-fish-fisherman-osx
- Download and install iTerm2 (it has better color fidelity than the built in Terminal).
| """ | |
| This Script is For saving the original Photos from affected photos after you import them somewhere. | |
| you Can run the sript by placing it into the directory of the Photo Booth Photos and execute it by openning terminal and moving to the current directory and type: python3 photoBoothOriginl.py | |
| """ | |
| import os | |
| directoryPath = "." # This is the current directory you leave it as a dot (".") if you placed the file at the same photos directory. |
NOTE: this gist can be outdated, refer to this repository instead - https://github.com/ghaiklor/iterm-fish-fisherman-osx
| #!/usr/bin/env bash | |
| # vim: noai:ts=4:sw=4:expandtab | |
| # shellcheck source=/dev/null | |
| # shellcheck disable=2009 | |
| # | |
| # Neofetch: A command-line system information tool written in bash 3.2+. | |
| # https://github.com/dylanaraps/neofetch | |
| # | |
| # The MIT License (MIT) | |
| # |
| <p style="line-height: 18px; font-size: 18px; font-family: times;"> | |
| Click "<i>Load samples</i>" to view and edit more JS samples.<br> | |
| <br> | |
| Labyrinth generated with JavaScript:<br><br> | |
| <script> | |
| for (var line=1; line<60; line++) { | |
| for(var i=1;i<50;i++) { | |
| var s = (Math.floor((Math.random()*5)%3)) ? "╱" : "╲"; | |
| document.write(s); | |
| } |
| # alis for opening Google Chrome from linux root user --kali | |
| alias chr="gksu -u chromeuser google-chrome" | |
| # alias for opening files from the CLI | |
| alias open="nautilus" | |
| # some more ls aliases | |
| alias ll='ls -l' | |
| alias la='ls -A' | |
| alias l='ls -CF' |
| ## | |
| # Host Database | |
| # | |
| # localhost is used to configure the loopback interface | |
| # when the system is booting. Do not change this entry. | |
| ## | |
| 127.0.0.1 localhost | |
| 255.255.255.255 broadcasthost | |
| ::1 localhost |
| /** | |
| * Author: Mustafa Jamal | |
| * | |
| * This program for deleting not selected files. | |
| */ | |
| import java.util.List; | |
| import java.util.ArrayList; | |
| import java.io.BufferedReader; | |
| import java.io.FileReader; |
| https://gitlab.com/gun1x/razer_keyboard_config/tree/master |
| import java.util.List; | |
| import java.util.ArrayList; | |
| import java.io.BufferedReader; | |
| import java.io.FileReader; | |
| import java.io.PrintWriter; | |
| import java.io.IOException; | |
| class Indent { | |
| static List<String> records = new ArrayList<String>(); |
| # Lines configured by zsh-newuser-install | |
| HISTFILE=~/.histfile | |
| HISTSIZE=99999 | |
| SAVEHIST=99999 | |
| bindkey -e | |
| # End of lines configured by zsh-newuser-install | |
| # The following lines were added by compinstall | |
| zstyle :compinstall filename '/home/mustafaj4m/.zshrc' | |
| autoload -Uz compinit |