Version: 1.9.8
Platform: x86_64
First, install or update to the latest system software.
sudo apt-get update
sudo apt-get install build-essential chrpath libssl-dev libxft-dev
On a recent project, I ran into an issue with Python Selenium webdriver. There's no easy way to open a new tab, grab whatever you need and return to original window opener.
Here's a couple people who ran into the same complication:
So, after many minutes (read about an hour) of searching, I decided to do find a quick solution to this problem.
| #! /bin/bash | |
| # | |
| # Diffusion youtube avec ffmpeg | |
| # Configurer youtube avec une résolution 720p. La vidéo n'est pas scalée. | |
| VBR="2500k" # Bitrate de la vidéo en sortie | |
| FPS="30" # FPS de la vidéo en sortie | |
| QUAL="medium" # Preset de qualité FFMPEG | |
| YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" # URL de base RTMP youtube |
001 Bulbasaur - http://goo.gl/maps/CCAoD
002 Ivysaur - http://goo.gl/maps/WSnj4
003 Venusaur - http://goo.gl/maps/UMLVF
004 Charmander - http://goo.gl/maps/54twl
005 Charmeleon - http://goo.gl/maps/0hKpB
| --- | |
| version: 1 | |
| disable_existing_loggers: False | |
| formatters: | |
| simple: | |
| format: "%(name)-20s%(levelname)-8s%(message)s" | |
| handlers: | |
| console: | |
| class: logging.StreamHandler | |
| level: DEBUG |
| /************************************************************************** | |
| * simpletun.c * | |
| * * | |
| * A simplistic, simple-minded, naive tunnelling program using tun/tap * | |
| * interfaces and TCP. Handles (badly) IPv4 for tun, ARP and IPv4 for * | |
| * tap. DO NOT USE THIS PROGRAM FOR SERIOUS PURPOSES. * | |
| * * | |
| * You have been warned. * | |
| * * | |
| * (C) 2009 Davide Brini. * |
| ''' | |
| Created on Jul 13, 2015 | |
| @author: kashefy | |
| ''' | |
| import numpy as np | |
| from scipy import signal | |
| if __name__ == '__main__': | |
A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.
| Name | Stars | Last Commit | Description |
|---|---|---|---|
| three.js | ![GitH |