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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE FixtureDefinition> | |
| <FixtureDefinition xmlns="http://www.qlcplus.org/FixtureDefinition"> | |
| <Creator> | |
| <Name>Q Light Controller Plus</Name> | |
| <Version>4.12.6</Version> | |
| <Author>Matteo Gheza</Author> | |
| </Creator> | |
| <Manufacturer>Proel</Manufacturer> | |
| <Model>PLLEDSPAR12</Model> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE FixtureDefinition> | |
| <FixtureDefinition xmlns="http://www.qlcplus.org/FixtureDefinition"> | |
| <Creator> | |
| <Name>Q Light Controller Plus</Name> | |
| <Version>4.12.6</Version> | |
| <Author>Matteo Gheza</Author> | |
| </Creator> | |
| <Manufacturer>ACME</Manufacturer> | |
| <Model>Color Fusion CF-805</Model> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE FixtureDefinition> | |
| <FixtureDefinition xmlns="http://www.qlcplus.org/FixtureDefinition"> | |
| <Creator> | |
| <Name>Q Light Controller Plus</Name> | |
| <Version>4.12.6</Version> | |
| <Author>Matteo Gheza</Author> | |
| </Creator> | |
| <Manufacturer>ZMY</Manufacturer> | |
| <Model>STROB18</Model> |
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
| ||castoola.tv^ | |
| ||castoola.com^ | |
| castoola.tv.lan |
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
| from PIL import Image, ImageDraw, ImageFont | |
| from matplotlib import pyplot as plt | |
| import glob | |
| import math | |
| from os import path | |
| def displayImage(img, title): | |
| plt.imshow(img) | |
| plt.title(title) | |
| plt.xticks([]), plt.yticks([]) |
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
| async function getNewFileHandle() { | |
| const options = { | |
| suggestedName: 'yt-history.json', | |
| startIn: 'downloads', | |
| types: [ | |
| { | |
| description: 'Text Files', | |
| accept: { | |
| 'text/plain': ['.txt'], | |
| }, |
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
| dd if=/dev/zero bs=1M count=4 of=./flash.bin | |
| dd if=./bootloader/bootloader.bin bs=1 count=$(stat -c%s ./bootloader/bootloader.bin) seek=$((16#1000)) conv=notrunc of=./flash.bin | |
| dd if=./partitions_singleapp.bin bs=1 count=$(stat -c%s ./partitions_singleapp.bin) seek=$((16#8000)) conv=notrunc of=./flash.bin | |
| dd if=./emulation.bin bs=1 count=$(stat -c%s ./emulation.bin) seek=$((16#10000)) conv=notrunc of=./flash.bin |
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
| name: palindrome_A-B | |
| source code: | | |
| # Accetta parole composte solamente dai caratteri "a" e "b" | |
| input: 'abba' | |
| blank: ' ' | |
| start state: start | |
| synonyms: | |
| accept: {R: accept} | |
| reject: {R: reject} | |
| # Un palindromo, in questa simulazione, può essere: |
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 | |
| # PlayOnLinux Script checker (MOD) | |
| # Made by Quentin Pâris and SuperPlumus and edited by Matteo Gheza | |
| output="/dev/stderr" | |
| file="$1" | |
| s_echo () |
NewerOlder