wget -P foldername -mpck --user-agent="" -e robots=off --restrict-file-names=nocontrol -E https://example.com/
четверг, 2 августа 2018 г.
среда, 1 августа 2018 г.
Создание архивированного образа карты
Pretty good and simple way to deal with this is simply pipe it via gzip, something like this:
# dd if=/dev/sdb | gzip > backup.img.gz
This way your image will be compressed and most likely unused space will be squeezed to almost nothing.
You would use this to restore such image back:
# cat backup.img.gz | gunzip | dd of=/dev/sdb
четверг, 28 июня 2018 г.
SplashScreen на Android под QML
Долго искал простой рабочий мануал по настройке SplashScreen под Android. https://medium.com/@benlaud/complete-guide-to-make-a-splash-screen-for-your-qml-android-application-567ca3bc70af
Подписаться на:
Сообщения (Atom)
Centos Добавить CA Global Sign
Первый сертификат с этой страницы https://support.globalsign.com/ca-certificates/intermediate-certificates/organizationssl-intermediate-cer...
-
Столкнулся тут с проблемой. Не работают сервисы для получения прямых сылок на видео ВКонтакте. То есть либо тормозят они, либо выдают что ни...
-
Первый сертификат с этой страницы https://support.globalsign.com/ca-certificates/intermediate-certificates/organizationssl-intermediate-cer...
-
Pretty good and simple way to deal with this is simply pipe it via gzip, something like this: # dd if=/dev/sdb | gzip > backup.img.gz ...