Skip to content

Instantly share code, notes, and snippets.

View ifelsee's full-sized avatar

Burak ifelsee

View GitHub Profile
@ifelsee
ifelsee / clean-up-arch-linux.md
Last active December 5, 2022 23:53 — forked from rumansaleem/clean-up-arch-linux.md
Instructions to clean up Arch Linux (Manjaro)

Contents

  • Clean pkg cache
  • Remove unused packages (orphans)
  • Clean cache in /home
  • remove old config files
  • Find and Remove
    • duplicates
    • empty files
    • empty directories
  • broken symlinks
{
"1337x": {
"errorMsg": "Bad Username",
"errorType": "message",
"url": "https://1337x.to/user/{}/",
"urlMain": "https://1337x.to",
"username_claimed": "TheMorozko",
"username_unclaimed": "noonewouldeverusethis7"
},
"Kommunity": {
English Version Details.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Windows 7 Ultimate SP1-U ISO (Refresh)
~~~~~~~~~~~~~~~~~~~~~~~~~~~
x86
Part- X17-59463
en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso
SHA1: 65FCE0F445D9BF7E78E43F17E441E08C63722657
ISO/CRC: 35511F11
@ifelsee
ifelsee / vim .zshrc
Created April 27, 2021 22:54
vim .zshrc
# 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="/home/devarex/.oh-my-zsh"
# 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
@ifelsee
ifelsee / .vimrc
Created April 20, 2021 16:33
ifelsee .vimrc file
syntax on
:set number
nnoremap <S-Up> :m-2<CR>
nnoremap <S-Down> :m+<CR>
inoremap <S-Up> <Esc>:m-2<CR>
inoremap <S-Down> <Esc>:m+<CR>
set foldmethod=indent
set foldlevel=1
set foldclose=all
@ifelsee
ifelsee / hyper.js
Last active January 14, 2021 13:08
Hyper terminal config for zsh
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',