- Precisamos de:
- Circuito
- Tabela Verdade
- Mapa de Karnaugh
- Entregar em: 17ago2019
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| </head> | |
| <body> | |
| <h1>Check Unicode on a web server with php</h1> | |
| <p>If your filenames requires characters with diacritics or any Unicode characters and not only the strict latin characters (26 letters + 10 numbers + some symbols and punctuation marks), the web server should be checked and fixed.</p> |
| #!/bin/bash | |
| TITULO=$1 | |
| PASTA=$2 | |
| echo "$TITULO será salvo em: ./$PASTA/" | |
| mkdir "$PASTA" | |
| sleep 3 | |
| httrack "$TITULO" -O "$PASTA" -N100 -I0 --max-rate 0 --disable-security-limits --near -v -s0 | |
| # não usar -%i0 |
| ''' | |
| Verificado por Rafael Requião em 03jul2019 | |
| 1 - Soma, subtração, multiplicação, divisão, resto da divisão, exponenciação e raiz quadrada. | |
| > OK | |
| 2 - Calcular fatorial de um número. | |
| > OK | |
| 3 - Mostrar lista de operações disponíveis; solicitar operação; solicitar operandos; mostrar resultado da operação selecionada. |
| ''' | |
| Helper script for Koha 19.05.01 - Tarball stable - on armhf Ubuntu Xenial - running on my Odroid C2 | |
| It installs the most missing modules using CPAN from root shell ! | |
| Instructions: | |
| - After running: | |
| # perl -MCPAN -e "install Modern::Perl" | |
| - You need to pipe the output from the PERL Dependencies Script to "missing_mods.txt": | |
| # ./koha_perl_deps.pl -m -u > ./missing_mods.txt |
| sudo whoami ; locate com.apple.UserEventAgent-System | xargs sudo launchctl unload | |
| # https://discussions.apple.com/thread/6614895 |
| #!/bin/bash | |
| service bind9 stop | |
| pgrep pihole-FTL | |
| if [ $? -gt 0 ] | |
| then | |
| pihole-FTL | |
| else | |
| echo "pihole-FTL's process is already running!" |
| #!/bin/bash | |
| cd $(dirname $0) | |
| arch=powerpc | |
| ram=256 | |
| dist=jessie | |
| mirror='http://ftp.de.debian.org/debian' | |
| disk=debian-$dist-$arch.qcow2 |
The controller almost works wirelessly, but it keeps pressing "D-pad down" button and disconnects. Since there is a warning on my PPC compiling tryout... it must be some bug.
Check this Imgur Gallery for some pics.
I also forked some fork of the original sixpair - that seems to have DualShock4 support.
May RetroArch and it's input drivers help?
| /* | |
| * sixpair.c version 2007-04-18 | |
| * Modified to run on Mac OSX by | |
| * Erlend Cleveland 2011-09-04 | |
| * | |
| * Compile with: gcc -o sixpair sixpair.c -lusb | |
| */ | |
| #include <string.h> | |
| #include <unistd.h> |