| 😄 | 😆 | 😊 | 😃 |
😩 | 😔 | 😞 | 😖 | 😨 | 😰 | 😣 | 😢 | 😭 | 😂 | 😲 | 😱 |
| 😫 | 😠 | 😡 | 😤 | 😪 | 😋 | 😷
😎 | 😵 | 👿 | 😈 | 😐 | 😶 | 😇 | 👽 | 💛 | 💙 | 💜 | ❤️ | 💚 | 💔 | 💓 | 💗 | 💕 | 💞 | 💘 | ✨
| #!/bin/bash | |
| if [ $# -gt 0 ] | |
| then | |
| max=$1 | |
| max=$(( $max + 1 )) | |
| else | |
| max=200 | |
| fi |
| http://shields.io/ |
| 😄 | 😆 | 😊 | 😃 |
😩 | 😔 | 😞 | 😖 | 😨 | 😰 | 😣 | 😢 | 😭 | 😂 | 😲 | 😱 |
| 😫 | 😠 | 😡 | 😤 | 😪 | 😋 | 😷
😎 | 😵 | 👿 | 😈 | 😐 | 😶 | 😇 | 👽 | 💛 | 💙 | 💜 | ❤️ | 💚 | 💔 | 💓 | 💗 | 💕 | 💞 | 💘 | ✨
| #include <roxlu/experimental/Image.h> | |
| namespace roxlu { | |
| Image::Image() | |
| :width(0) | |
| ,height(0) | |
| ,pixels(NULL) | |
| { | |
| } |
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: |
| <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); | |
| }); |
https://www.anaconda.com/download/
conda create -n oldpyqt pyqt=4
conda install -c acellera -n oldpyqt pyinstaller| #!/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 |
| #!/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 |
| #define DRIVER_VERSION 1 // 0 - маркировка драйвера кончается на 4АТ, 1 - на 4Т | |
| // ------------------------ НАСТРОЙКИ ---------------------------- | |
| // ----------------------- ПИНЫ --------------------------- | |
| #define BTN1 A3 // первая кнопка | |
| #define BTN2 A2 // вторая кнопка | |
| // ----------------------- ПИНЫ --------------------------- | |
| // -------------------- БИБЛИОТЕКИ --------------------- | |
| #include <OneWire.h> // библиотека протокола датчиков |