Skip to content

Instantly share code, notes, and snippets.

View osamaqarem's full-sized avatar

Osama Qarem osamaqarem

View GitHub Profile
@osamaqarem
osamaqarem / decode.js
Last active April 22, 2020 03:05
Decode Base64 Image in Browser Console
function decode(imageString){
var image = new Image();
image.src = `data:image/png;base64,${imageString}`;
document.body.replaceWith(image);
}
@osamaqarem
osamaqarem / svn.md
Last active March 31, 2020 04:11
SVN for Git Users

Add all files

svn add --force * --auto-props --parents --depth infinity -q

Remove all files

svn revert * --depth infinity -q

Edit svn:global-ignore for current directory

(Easiest. Ignores must be set on parent directory)

@osamaqarem
osamaqarem / HPomen.md
Last active November 11, 2018 08:28
Ubuntu Setup for HP Omen

Ubuntu 18.04 on HP OMEN 15-CE032TX

Software to install

deluge tlp psensor intel-microcode alsamixer pavucontrol gnome-tweaks dconf-editor grub-customizer pixel-saver powertop

Workflow/Troubleshooting