chrome://settings/searchEngines
Search engine
Keyword
URL with %s in the place of query
Google FR
| // CyberPunk 2077 Mod: Reset Attributes always available | |
| // https://www.nexusmods.com/cyberpunk2077/mods/9240 | |
| // Authors: snogthemo, Boboss74, yakuzadeso | |
| @wrapMethod(NewPerksCategoriesGameController) | |
| private final func ResolveResetAttributesButtonVisibility() -> Void { | |
| if (IsDefined(this.m_questSystem) && this.m_questSystem.GetFact(n"ResetAttributeDisabled") == 1) { | |
| this.m_questSystem.SetFact(n"ResetAttributeDisabled", 0); | |
| } | |
| wrappedMethod(); |
| // image-rendering:pixelated | |
| javascript: let e=document.createElement('style');e.innerHTML='img{image-rendering:pixelated}';document.head.appendChild(e) | |
| // prevent leave page | |
| javascript: javascript:window.onbeforeunload=()=>true |
| [color] | |
| ui = auto | |
| [alias] | |
| brancha = branch --all | |
| fetcha = fetch --all --verbose --prune | |
| amendpush = !git commit --amend --no-edit && git push --force-with-lease | |
| lol = log --graph --decorate --oneline | |
| lola = log --graph --decorate --oneline --all | |
| lolaa = log --graph --decorate --all --pretty='%C(auto)%h%Creset%C(auto)%d%Creset %cr %Cblue<%an>%Creset %s' --abbrev-com |
| alias ll='ls -laF' | |
| # display numerical chmod within ls, https://stackoverflow.com/a/50686667/4711132 | |
| alias lschmod="ls -laF --color=always -F --group-directories-first |awk '{k=0;s=0;for(i=0;i<=8;i++){;k+=((substr(\$1,i+2,1)~/[rwxst]/)*2^(8-i));};j=4;for(i=4;i<=10;i+=3){;s+=((substr(\$1,i,1)~/[stST]/)*j);j/=2;};if(k){;printf(\"%0o%0o \",s,k);};print;}'" | |
| # docker | |
| alias dpsa='docker ps --all' | |
| alias drma='docker stop $(docker ps -aq) && docker rm $(docker ps -aq)' | |
| # npm | |
| alias nrb='npm run build' |
| # This is a fork of a fork of a fork... of probably https://www.marc-eymard.fr/linux/bash-prompt | |
| # Add the following lines inside your ~/.bashrc | |
| # START : git, coloration | |
| if [ -z "$PS1_ORIG" ]; then | |
| PS1_ORIG=$PS1 | |
| OLD_PROMPT_COMMAND=$PROMPT_COMMAND | |
| fi |
| # Mute spotify advertising | |
| # Script powershell Windows 10 | |
| # | |
| # Run when ads are starting, then the script will mute during ~50 sec, then unmute | |
| $obj = new-object -com wscript.shell | |
| $obj.SendKeys([char]173) | |
| Start-Sleep -Seconds 50 | |
| $obj.SendKeys([char]173) | |
| exit |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Event</title> | |
| <style> | |
| body { | |
| background-color: #2a2a33; | |
| } | |
| .content { | |
| padding-top: 120px; |