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
| wget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains example.com -erobots=off --wait=1 --no-parent example.comwget --recursive --page-requisites --adjust-extension --span-hosts --convert-links --restrict-file-names=windows --domains cs-214.epfl.ch -erobots=off --wait=1 --no-parent cs-214.epfl.ch/ |
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
| #ref: https://forums.zotero.org/discussion/78550/getting-zotero-to-work-under-ubuntu-linux-solved | |
| xdg-mime default zotero.desktop x-scheme-handler/zotero |
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
| { | |
| description = "Python Flake"; | |
| inputs.nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; | |
| outputs = { self, nixpkgs}: | |
| let | |
| system = "x86_64-linux"; | |
| pkgs = import nixpkgs { inherit system; }; |
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
| # Install Nix from updates-testing repo, (repo is temporarily enabled for this command) | |
| sudo dnf install nix nix-daemon --enablerepo=updates-testing | |
| # Enable Nix Daemon | |
| sudo systemctl enable --now nix-daemon | |
| # References | |
| ## https://fedoraproject.org/wiki/QA:Updates_Testing | |
| ## https://packages.fedoraproject.org/pkgs/nix/nix/ | |
| ## https://fedoraproject.org/wiki/Changes/Nix_package_tool |
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
| .toolbar.reader-toolbar { | |
| display: none; | |
| } |
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
| /* hides the native tabs */ | |
| #TabsToolbar { | |
| visibility: collapse; | |
| } | |
| /* hides Tree Style Tab's header */ | |
| #sidebar-box[sidebarcommand=treestyletab_piro_sakura_ne_jp-sidebar-action] > #sidebar-header{ | |
| display: none; | |
| } |
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
| ;; Set frame size | |
| (add-hook 'after-make-frame-functions | |
| (lambda (frame) (set-frame-size frame 80 24))) | |
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
| emacsclient -c -e "(progn (raise-frame) (x-focus-frame (selected-frame)))" |
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
| alias venv='[[ -d "./venv" ]] || python -m venv venv; source ./venv/bin/activate; [[ -e "requirements.txt" ]] && pip install -U -r requirements.txt' |
NewerOlder