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
# TxGVNN <[email protected]> | |
# Name the wordspaces | |
# xprop to check window | |
# xmodmap [ --pke ] view keymap | |
set $tag1 | |
set $tag2 | |
set $tag3 | |
set $tag4 | |
set $tag5 | |
set $tag6 |
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
use std::slice::Iter; | |
pub struct StringReader<'a> { | |
iter: Iter<'a, u8>, | |
len: usize, | |
pos: usize, | |
} | |
impl<'a> StringReader<'a> { |
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
fn main() { println!("hello world!");} |
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
go get -u golang.org/x/tools/... |
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
# Use a terminal to open /etc/environment using a text editor as superuser | |
export http_proxy=fodev.org:8118/ | |
export https_proxy=fodev.org:8118/ | |
export ftp_proxy=fodev.org:8118/ | |
export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com" | |
export HTTP_PROXY=fodev.org:8118/ | |
export HTTPS_PROXY=fodev.org:8118/ | |
export FTP_PROXY=fodev.org:8118/ | |
export `NO_PROXY="localhost,127.0.0.1,localaddress,.localdomain.com" |
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
gsettings set org.gnome.desktop.lockdown disable-lock-screen 'true' |
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
{ | |
"breadcrumbs.enabled": true, | |
"window.zoomLevel": 3, | |
"workbench.statusBar.visible": true, | |
"workbench.activityBar.visible": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"files.autoSave": "afterDelay", | |
"explorer.confirmDelete": false, | |
"terminal.integrated.shell.linux": "/usr/bin/zsh", | |
"terminal.integrated.showExitAlert": false, |
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
sudo modprobe -r pcspkr | |
If you want to remove it permanently, you gotta tell modprobe to never load this module. | |
In the console, type this : (replace nano with your favorite text editor) | |
Code: | |
sudo nano /etc/modprobe.d/blacklist |
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 sh | |
sudo pacman -S fish zsh zsh-completions aria2 create_ap xchm bookworm zeal hardinfo net-tools python-pip docker traceroute goldendict mailutils mariadb mongodb nmap nodejs npm tree vim code postgresql vlc tcpdump vsftpd youtube-dl redis moc xclip proxychains-ng mitmproxy tor torsocks privoxy telegram-desktop cmake make nasm clang gcc dnscrypt-proxy ruby opera go yay |
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 sh | |
# ************ install rust programming language ************** | |
curl https://sh.rustup.rs -sSf | sh | |
export PATH="$HOME/.cargo/bin:$PATH" | |
# ************** install stable rust component **************** | |
rustup component add rustfmt | |
rustup component add clippy | |
rustup component add rls | |
rustup component add rust-src |
NewerOlder