https://www.anaconda.com/download/
conda create -n oldpyqt pyqt=4
conda install -c acellera -n oldpyqt pyinstaller
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
#define DRIVER_VERSION 1 // 0 - ΠΌΠ°ΡΠΊΠΈΡΠΎΠ²ΠΊΠ° Π΄ΡΠ°ΠΉΠ²Π΅ΡΠ° ΠΊΠΎΠ½ΡΠ°Π΅ΡΡΡ Π½Π° 4ΠΠ’, 1 - Π½Π° 4Π’ | |
// ------------------------ ΠΠΠ‘Π’Π ΠΠΠΠ ---------------------------- | |
// ----------------------- ΠΠΠΠ« --------------------------- | |
#define BTN1 A3 // ΠΏΠ΅ΡΠ²Π°Ρ ΠΊΠ½ΠΎΠΏΠΊΠ° | |
#define BTN2 A2 // Π²ΡΠΎΡΠ°Ρ ΠΊΠ½ΠΎΠΏΠΊΠ° | |
// ----------------------- ΠΠΠΠ« --------------------------- | |
// -------------------- ΠΠΠΠΠΠΠ’ΠΠΠ --------------------- | |
#include <OneWire.h> // Π±ΠΈΠ±Π»ΠΈΠΎΡΠ΅ΠΊΠ° ΠΏΡΠΎΡΠΎΠΊΠΎΠ»Π° Π΄Π°ΡΡΠΈΠΊΠΎΠ² |
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/env bash | |
if [[ $# -eq 0 ]]; then | |
echo "Version not recieve" 2>&1 | |
echo "Example: $0 v3.11.2 l" 2>&1 | |
echo "Example: $0 v3.11.2" 2>&1 | |
exit 1 | |
fi | |
if [[ $EUID -ne 0 ]]; then |
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/python3 | |
# -*- coding: utf-8 -*- | |
from requests import get | |
from lxml.html import document_fromstring | |
from os import path, makedirs | |
try: | |
import progressbar # pip install progressbar2 | |
bar = progressbar.ProgressBar() | |
_bar = 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
<script> | |
function downloadPack() { | |
fetch("https://api.github.com/repos/yuru-yuri/Manga-Downloader/releases/latest") | |
.then(response => response.json()) | |
.then((out) => { | |
// Initiate the download. | |
document.querySelector("#without-html5-").innerHTML="<a href='"+out.zipball_url+"'>Click here if the download didn't start automatically.</a>"; | |
window.location.assign(out.zipball_url); | |
}); |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
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
#include <roxlu/experimental/Image.h> | |
namespace roxlu { | |
Image::Image() | |
:width(0) | |
,height(0) | |
,pixels(NULL) | |
{ | |
} |
| π | π | π | π |
π© | π | π | π | π¨ | π° | π£ | π’ | π | π | π² | π± | | π« | π | π‘ | π€ | πͺ | π | π·
π | π΅ | πΏ | π | π | πΆ | π | π½ | π | π | π | β€οΈ | π | π | π | π | π | π | π | β¨
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
http://shields.io/ |
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
#!/bin/bash | |
if [ $# -gt 0 ] | |
then | |
max=$1 | |
max=$(( $max + 1 )) | |
else | |
max=200 | |
fi |
NewerOlder