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
// WF_blinky.v | |
// | |
// The "Hello World" of Digital Logic! | |
// This example blinks the on-board user LED once a second. | |
module fpga_top( | |
input WF_BUTTON, | |
output reg WF_LED | |
); |
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 | |
echo "Installing Grafana apt-source..." | |
apt-get install -y apt-transport-https | |
apt-get install -y software-properties-common wget | |
wget -q -O - https://packages.grafana.com/gpg.key | apt-key add - | |
echo "deb https://packages.grafana.com/oss/deb stable main" | tee -a /etc/apt/sources.list.d/grafana.list | |
echo "Updating APT cache..." | |
apt-get update | |
echo "Installing Grafana" |
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
; adc_wizard_apr11.a51 ; ADC test, done with configuration wizard Jan 11: pins reassigned | |
; ADC as voltmeter (8 bits displayed on LCD), input on P0.0 | |
; rev path 3/16 | |
$NOSYMBOLS ; keeps listing short | |
$INCLUDE (C:\SiLabs\MCU\INC\c8051f410.inc) | |
$INCLUDE (C:\SiLabs\MCU\INC\VECTORS320.INC) ; Tom's vectors definition file | |
STACKBOT EQU 080h ; put stack at start of scratch indirectly-addressable block (80h and up) | |
DISPLAY_HI EQU P2 |
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
; adc_wizard_apr11.a51 ; ADC test, done with configuration wizard Jan 11: pins reassigned | |
; ADC as voltmeter (8 bits displayed on LCD), input on P0.0 | |
; rev path 3/16 | |
$NOSYMBOLS ; keeps listing short | |
$INCLUDE (C:\SiLabs\MCU\INC\c8051f410.inc) | |
$INCLUDE (C:\SiLabs\MCU\INC\VECTORS320.INC) ; Tom's vectors definition file | |
STACKBOT EQU 080h ; put stack at start of scratch indirectly-addressable block (80h and up) | |
DISPLAY_HI EQU P2 |
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
; adc_wizard_apr11.a51 ; ADC test, done with configuration wizard Jan 11: pins reassigned | |
; ADC as voltmeter (8 bits displayed on LCD), input on P0.0 | |
; rev path 3/16 | |
$NOSYMBOLS ; keeps listing short | |
$INCLUDE (C:\SiLabs\MCU\INC\c8051f410.inc) | |
$INCLUDE (C:\SiLabs\MCU\INC\VECTORS320.INC) ; Tom's vectors definition file | |
STACKBOT EQU 080h ; put stack at start of scratch indirectly-addressable block (80h and up) | |
DISPLAY_HI EQU P2 |
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
install.packages("rtweet") # Only necessary the first time, to install the rtweet package | |
library(rtweet) | |
#See here for info on creating access token: https://cran.r-project.org/web/packages/rtweet/vignettes/auth.html | |
twitter_token <- create_token(app = "rtweet-ows", # whatever you named app | |
consumer_key = "<CONSUMER_KEY_HERE>", | |
consumer_secret = "<CONSUMER_SECRET_HERE>") | |
tweets <- get_timeline("realDonaldTrump", n = 5000) # Can also use search terms and the like here, or increase number of tweets to load | |
View(tweets) |
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
license: gpl-3.0 | |
height: 600 | |
border: no |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
ffmpeg -i http://bit.ly/ISS_HDEV -o frame.png |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder