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
| import os | |
| import json | |
| import spotipy | |
| from spotipy.oauth2 import SpotifyOAuth | |
| # ---------- CONFIG ---------- | |
| CLIENT_ID = os.environ["SPOTIFY_CLIENT_ID"] | |
| CLIENT_SECRET = os.environ["SPOTIFY_CLIENT_SECRET"] | |
| REDIRECT_URI = os.environ.get("SPOTIFY_REDIRECT_URL", "http://localhost:8888/callback") | |
| PLAYLIST_ID = "spotify:playlist:0Acu6f3Pcr0cJRUVqXTQ8b" # or just the ID part |
| :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" |