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
#PSReadline theme to match VSCode editor colors | |
if ($env:TERM_PROGRAM -eq 'VSCode' -or $env:WT_SESSION) { | |
if ($psedition -eq 'core') { | |
$ansiesc = "`e" | |
} else { | |
$ansiesc = [char]0x1b | |
} | |
Set-PSReadlineOption -Colors @{ | |
Command = "$($ansiesc)[93m" |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="path/to/new/ohmyzsh/folder" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
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
# 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 |
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
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>(); |
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
https://gitlab.com/gun1x/razer_keyboard_config/tree/master |
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
/** | |
* 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; |
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
## | |
# 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 |
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
# 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' |
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
<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); | |
} |
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 | |
# 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) | |
# |
NewerOlder