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
https://sir-sherwin.blogspot.com.by/2012/04/how-to-access-router.html |
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
.flex { | |
display: flex | |
} | |
.flex > .full-height { | |
flex: 1 1 auto | |
} |
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
gs -q -dPDFFitPage -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \ | |
-r600 -g3300x1831 \ | |
-sOutputFile=out.pdf \ | |
in_1.pdf in_2.pdf |
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
flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.flatpakrepo | |
flatpak remote-add --if-not-exists winepak https://dl.winepak.org/repo/winepak.flatpakrepo | |
# sudo flatpak install -y --user --from https://download.mono-project.com/repo/monodevelop.flatpakref | |
sudo flatpak install -y --user http://flatpak.uploadedlobster.com/peek-stable.flatpakref | |
sudo flatpak install -y --user http://feedreader.xarbit.net/feedreader-repo/feedreader.flatpakref | |
sudo flatpak install -y --user flathub com.axosoft.GitKraken | |
sudo flatpak install -y --user flathub com.discordapp.Discord |
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
xdg-mime default nautilus.desktop inode/directory | |
gsettings set org.gnome.desktop.background show-desktop-icons true | |
exo-preferred-applications | |
update-mime-database $HOME/.local/share/mime/ | |
sudo update-mime-database /usr/share/mime/ |
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
Re-generate /etc/apt/sources.list on Ubuntu or Debian | |
https://repogen.simplylinux.ch/ | |
https://debgen.simplylinux.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
watch -n3 grep -i -e 'mhz' -e 'ghz' /proc/cpuinfo | |
watch -n3 "egrep -i 'mhz|ghz' /proc/cpuinfo" |
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/h3disp: illegal video mode "-m 720i". Try one of the following: | |
480i use "-m 480i" or "-m 0" | |
576i use "-m 576i" or "-m 1" | |
480p use "-m 480p" or "-m 2" | |
576p use "-m 576p" or "-m 3" | |
720p50 use "-m 720p50" or "-m 4" | |
720p60 use "-m 720p60" or "-m 5" | |
1080i50 use "-m 1080i50" or "-m 6" | |
1080i60 use "-m 1080i60" or "-m 7" |
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
/*========== Mobile First Method ==========*/ | |
/* Custom, iPhone Retina */ | |
@media only screen and (min-width : 320px) { | |
} | |
/* Extra Small Devices, Phones */ | |
@media only screen and (min-width : 480px) { |
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
static int | |
HostIFGetUserPages(void *uvAddr, // IN | |
struct page **ppages, // OUT | |
unsigned int numPages) // IN | |
{ | |
int retval; | |
down_read(¤t->mm->mmap_sem); | |
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0) | |
unsigned int flags = 0; |