Já tem uns bons anos de uso, mas está em boas condições e funcionando perfeitamente. Plug USB para PC e para Playstation.
Preço: R$100
:root { | |
--color-primary: #ff0000; | |
--color-success: #95ae3b; | |
--color-warning: #e59123; | |
--color-danger: #ca4b57; | |
--color-off-white: #f7f8f8; | |
--color-gray-lighter: #d2d2d2; | |
--color-blue-light: #0f8489; | |
--color-content-background: #323232; | |
--color-webcam-letterboxing: #404040; |
FROM alphacep/kaldi-vosk-server:latest | |
RUN mkdir /opt/vosk-model-pt_BR \ | |
&& cd /opt/vosk-model-pt_BR \ | |
&& wget -q https://alphacephei.com/vosk/models/vosk-model-pt-fb-v0.1.1-20220516_2113.zip \ | |
&& unzip vosk-model-pt-fb-v0.1.1-20220516_2113.zip \ | |
&& mv vosk-model-pt-fb-v0.1.1-20220516_2113 model \ | |
&& rm -rf vosk-model-pt-fb-v0.1.1-20220516_2113.zip | |
EXPOSE 2700 |
An easy way to extend Bigbluebutton functionality by including an iframe of another service in the presentation area.
This code is currently implemented in this branch: https://github.com/lfzawacki/bigbluebutton/tree/generic-component
Code for the POC quiz application: https://github.com/lfzawacki/react-quiz-component
Added at 14:40 UTC: to save some guessing, flag is inside the listening Python script.
Hello test subject # 49277. The next pwning room is not yet complete, so you should just wait here and not enter it until further notice.
ssh [email protected]
Password: LabRat#49277
#!/bin/bash | |
# Re-enable uneeded services for music | |
pulseaudio -D | |
sudo service samba start | |
sudo service saned start | |
sudo service smbd start | |
sudo service nmbd start |
This is useful if you're working on a project with other developers and want to use different gems locally that you don't have to commit to the repository.
From this repository https://github.com/gerrywastaken/Gemfile.local. The rest the instructions here are mostly based on what is written there with some modifications.
#!/bin/bash -e | |
FILENAME=owncloud-8.0.4.tar.bz2 | |
LATEST=https://download.owncloud.org/community/$FILENAME | |
SHA=https://download.owncloud.org/community/$FILENAME.sha256 | |
PGP=https://download.owncloud.org/community/$FILENAME.asc | |
INSTALL_PATH=/var/www | |
OWNCLOUD_USER='www-data' | |
echo " --- Download and check sha256 sum" |
/* | |
Por Lucas Zawacki e galera da oficina de introdução a Arduino | |
https://matehackers.org/arduino_day_2015 | |
*/ | |
const int buttonPin = 2; | |
const int buzzerPin = 11; | |
const int sensorPin = 4; | |
const int ledPin = 13; |