Les Partages de Memiks
Tag cloud
Picture wall
Daily
RSS Feed
  • RSS Feed
  • Daily Feed
  • Weekly Feed
  • Monthly Feed
Filters

Links per page

  • 20 links
  • 50 links
  • 100 links

Filters

Untagged links
page 26 / 155
28 insultes et gros mots en japonais, les Bujoku | Un Gaijin au Japon https://www.gaijinjapan.org/insultes-japonaises/
Thu Dec 5 12:31:03 2019 archive.org
QRCode

Voici une liste d'insultes et gros mots en japonais. Parce qu'il en existe comme dans toutes les langues, et que très souvent, ce sont les mots que l'on retient le plus facilement. On les appelle les Bujoku en japonais.

Mettre en place des build automatiques avec jenkins et docker - LinuxFr.org https://linuxfr.org/users/purplepsycho/journaux/mettre-en-place-des-build-automatiques-avec-jenkins-et-docker
Tue Dec 3 06:53:13 2019 archive.org
QRCode
thumbnail

Mettre en place des build automatiques avec jenkins et docker

Un peu de fromage dans votre proxy de conteneurs | Aukfood https://www.aukfood.fr/un-peu-de-fromage-dans-votre-proxy/
Tue Nov 26 19:44:29 2019 archive.org
QRCode
thumbnail

Eh oui c'est la saison des fromages ... il y a une saison pour les fromages ? Pourquoi il parle de fromages sur un blog technique d'admins ?
Pour les retardataires, je vais parler ici de Traefik, qui est un proxy, voir LE proxy pour les architectures Docker, Swarm, Kubernetes etc ... C'est un excellent

Note: a acheter /index.php/shaare/fp4oGQ
Tue Nov 19 13:07:43 2019 archive.org
QRCode

https://www.amazon.co.jp/dp/B07D9H83R4/ref=pd_sim_328_4/355-9514694-8329029?_encoding=UTF8&pd_rd_i=B07D9H83R4&pd_rd_r=cd89c19e-bb75-4e1d-94b9-7ee53aa1be31&pd_rd_w=nCNM5&pd_rd_wg=pxNGu&pf_rd_p=4446cd16-eada-4bb1-91df-7c54a5fbd0b9&pf_rd_r=H3W5RRYJVHZ2WBMA3NR2&psc=1&refRID=H3W5RRYJVHZ2WBMA3NR2

https://www.amazon.co.jp/dp/B07R87Z178/ref=pd_sbs_328_5/355-9514694-8329029?_encoding=UTF8&pd_rd_i=B07R87Z178&pd_rd_r=18c6ed1c-5558-443f-b98f-c1ac4095bba9&pd_rd_w=js8wh&pd_rd_wg=ZR7bE&pf_rd_p=1585d594-d9d0-474b-8a4e-69eca1566911&pf_rd_r=390Y27A2359PHZF8NBG6&psc=1&refRID=390Y27A2359PHZF8NBG6

cadeau moi electronique
AUR (en) - crosstool-ng https://aur.archlinux.org/packages/crosstool-ng/
Fri Nov 15 20:48:13 2019 archive.org
QRCode
thumbnail

Versatile (cross-)toolchain generator

How to shrink OpenStack qcow2 image using qemu-img – tuxfixer.com http://www.tuxfixer.com/how-to-shrink-openstack-qcow2-image-with-qemu-img/
Fri Nov 15 14:31:27 2019 archive.org
QRCode

If you transfer qcow2 images very frequently across OpenStack Clouds or between KVM and Openstack environments, they can quickly grow larger. Luckily qcow2 image size can be decreased to reasonable values using qemu-img tool. Below we present how to shrink Openstack/KVM qcow2 image.

Examples:

Shrink qcow2 image without compression (larger file, short compression time):

[root@tuxfixer ~]# qemu-img convert -O qcow2 centos7.qcow2 centos7_small.qcow2
Shrink qcow2 image with compression (smaller file, long compression time):

[root@tuxfixer ~]# qemu-img convert -O qcow2 -c centos7.qcow2 centos7_small.qcow2

qcow2 qemu image size
Thonny, Python IDE for beginners https://thonny.org/
Fri Nov 15 14:06:01 2019 archive.org
QRCode

https://github.com/thonny/thonny/wiki/MicroPython

Easy to get started. Thonny comes with Python 3.7 built in, so just one simple installer is needed and you're ready to learn programming. (You can also use a separate Python installation, if necessary.) The initial user interface is stripped of all features that may distract beginners.

Initial layout
No-hassle variables. Once you're done with hello-worlds, select View → Variables and see how your programs and shell commands affect Python variables.

Variables table
Simple debugger. Just press Ctrl+F5 instead of F5 and you can run your programs step-by-step, no breakpoints needed. Press F6 for a big step and F7 for a small step. Steps follow program structure, not just code lines.

Stepping through statements
Step through expression evaluation. If you use small steps, then you can even see how Python evaluates your expressions. You can think of this light-blue box as a piece of paper where Python replaces subexpressions with their values, piece-by-piece.

Visualization of expression evaluation
Faithful representation of function calls. Stepping into a function call opens a new window with separate local variables table and code pointer. Good understanding of how function calls work is especially important for understanding recursion.

Visualization of call frames
Highlights syntax errors. Unclosed quotes and parentheses are the most common beginners' syntax errors. Thonny's editor makes these easy to spot.

Visualization of syntax errors
Explains scopes. Highlighting variable occurrences reminds you that the same name doesn't always mean the same variable and helps spotting typos. Local variables are visually distinguished from globals.

Local and global names are visually distinguished
Mode for explaining references. Variables are initially presented according to simplified model (name → value) but you can switch to more realistic model (name → address/id → value).

Variables table vs values table
Code completion. Students can explore APIs with the help of code completion.

Code completion
Beginner friendly system shell. Select Tools → Open system shell to install extra packages or learn handling Python on command line. PATH and conflicts with other Python interpreters are taken care of by Thonny.

System shell prepared for Python commands
Simple and clean pip GUI. Select Tools → Manage packages for even easier installation of 3rd party packages.

python ide powerfull
Building MicroPython for ESP8266 http://akshaim.github.io/IoT/MicroPython_ESP8266/MP_ESP_101.html
Fri Nov 15 13:48:57 2019 archive.org
QRCode
esp8266 micro python compile
ESP32_BME280_SPI/ESP32_BME280_SPI.cpp at master · mgo-tec/ESP32_BME280_SPI https://github.com/mgo-tec/ESP32_BME280_SPI/blob/master/src/ESP32_BME280_SPI.cpp
Wed Nov 13 16:22:37 2019 archive.org
QRCode
thumbnail

B10000000 --> 0x80
B01111111 --> 0x7F

bme280
MicroPython | CircuitPython Hardware: SD Cards | Adafruit Learning System https://learn.adafruit.com/micropython-hardware-sd-cards/micropython
Thu Nov 7 17:00:46 2019 archive.org
QRCode
thumbnail
sdcard micropython esp8266
Xtensa on QEMU - Linux/Xtensa http://wiki.linux-xtensa.org/index.php/Xtensa_on_QEMU
Thu Nov 7 08:26:07 2019 archive.org
QRCode
qemu xtensa esp8266
pboard controlling WS2801 ledstrip over SPI - MicroPython Forum https://forum.micropython.org/viewtopic.php?f=6&t=1351&p=40880&hilit=spi#p40880
Wed Nov 6 16:57:32 2019 archive.org
QRCode
thumbnail
SPI write/read on ESP32 - MicroPython Forum https://forum.micropython.org/viewtopic.php?t=4214
Wed Nov 6 16:55:54 2019 archive.org
QRCode
spi esp8266 micropython
Install Windows7 on KVM Qemu · hpaluch/hpaluch.github.io Wiki https://github.com/hpaluch/hpaluch.github.io/wiki/Install-Windows7-on-KVM-Qemu
Wed Nov 6 16:00:32 2019 archive.org
QRCode
thumbnail
Windows 10 Virtualization with KVM — Funtoo https://www.funtoo.org/Windows_10_Virtualization_with_KVM
Wed Nov 6 16:00:00 2019 archive.org
QRCode
wendlers/mpfshell: A simple shell based file explorer for ESP8266 Micropython based devices ⛺ https://github.com/wendlers/mpfshell
Tue Nov 5 15:16:24 2019 archive.org
QRCode
thumbnail
Micropython_course/PITCHME.md at master · philwilkinson40/Micropython_course https://github.com/philwilkinson40/Micropython_course/blob/master/PITCHME.md
Tue Nov 5 15:13:49 2019 archive.org
QRCode
thumbnail
adafruit/Adafruit_CircuitPython_BME280: CircuitPython driver for the BME280 https://github.com/adafruit/Adafruit_CircuitPython_BME280/
Tue Nov 5 12:51:51 2019 archive.org
QRCode
thumbnail
esp8266 micro python spi
Install gcc compiler on Windows with MSYS2 for C/C++ | DevDungeon https://www.devdungeon.com/content/install-gcc-compiler-windows-msys2-cc
Tue Nov 5 11:57:48 2019 archive.org
QRCode
thumbnail
MicroPython on Unicorn https://micropython.org/unicorn/
Tue Nov 5 11:12:39 2019 archive.org
QRCode
thumbnail
page 26 / 155
4769 links, including 1683 private
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Theme by kalvn