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
date | alt | tree | id | bloom | |
---|---|---|---|---|---|
2025-04-14 | Prunus ‘Taki-nioi’ | taki_nioi | 163 | First Bloom | |
2025-04-14 | Prunus pendula ‘Pendula Rosea ’ | pendula | 128 | Peak Bloom | |
2025-04-14 | Prunus pendula ‘Pendula Plena Rosea’ | yae_beni_shidare | 126 | Peak Bloom | |
2025-04-14 | Prunus × sieboldii | sieboldii | 160 | First Bloom | |
2025-04-14 | Prunus ‘Hata-zakura’ | hatazakura | 106 | First Bloom | |
2025-04-14 | Prunus ‘Ariake’ | ariake | 154 | First Bloom | |
2025-04-14 | Prunus ‘Ukon’ | ukon | 162 | Prebloom | |
2025-04-14 | Prunus × sieboldii | sieboldii | 161 | First Bloom | |
2025-04-14 | Prunus ‘Fudan-zakura’ | fudan_zakura | 107 | Post-Peak Bloom |
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
library(tidyverse) | |
library(rvest) | |
library(ggtext) | |
library(extrafont) | |
rt <- read_html("https://editorial.rottentomatoes.com/guide/best-christmas-movies/") | |
film_regex <- regex( | |
"^([A-Za-z0-9.' ,-:&]* \\([0-9]{4,4}\\))\\n\\s+([0-9]{0,4})\\%\\n\\s+([0-9]{0,4})\\%" | |
) |
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
#!/usr/bin/env python3 | |
""" | |
Help audit, remove, and update musician infoboxes. | |
https://en.wikipedia.org/wiki/Category:Pages_using_infobox_musical_artist_with_associated_acts | |
""" | |
import re | |
import requests |
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
#!/usr/bin/env bash | |
# Description: Extract unique URLs from the plain text output from Zoom chat and | |
# save links to new file. | |
# Usage: bash extract_zoom_urls.sh | |
# Set path to where Zoom chat is, or `cd` to the directory itself | |
FILE=meeting_saved_chat.txt | |
# Get list of unique links shared in Zoom chat |
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
# Follow instructions here for more: | |
# https://exercism.io/cli-walkthrough | |
# Releases: | |
# https://github.com/exercism/cli/releases | |
# Download and move around | |
# Change URL as needed for new versions | |
wget https://github.com/exercism/cli/releases/download/v3.1.0/exercism-3.1.0-linux-x86_64.tar.gz | |
mkdir bin | |
mv exercism bin/ |
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
# Make logo | |
library(hexSticker) | |
library(showtext) | |
# Add Google Font | |
font_add_google(name = "Open Sans", family = "Open Sans") | |
showtext_auto() # Use this font in all rendering | |
# Picture of book that was quickly screenshot | |
imgurl <- "~/Downloads/Screenshot 2022-06-13 092720.png" |
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
library(dplyr) | |
library(stringr) | |
library(ggplot2) | |
d <- rtweet::search_tweets("from:stats_feed", n = 30) %>% | |
filter(status_id == "1521871339908263937") %>% | |
pull(text) %>% | |
str_split("\n") %>% | |
as_tibble(.name_repair = "universal") %>% | |
rename("data" = "...1") %>% |
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
start_date | stop_date | |
---|---|---|
1999-07-15 | 1999-11-15 | |
1999-11-15 | 2000-02-15 | |
1999-12-15 | 2000-02-15 | |
2000-09-15 | 2002-02-15 | |
2002-02-15 | 2003-12-15 | |
2002-02-15 | 2003-12-15 | |
2003-02-15 | 2004-03-15 | |
2004-04-15 | 2004-08-15 | |
2004-08-15 | 2005-04-15 |
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1 column, instead of 2 in line 1.
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
Category: All categories | |
Month,Data scientist: (United States) | |
2004-01,0 | |
2004-02,0 | |
2004-03,0 | |
2004-04,0 | |
2004-05,0 | |
2004-06,0 | |
2004-07,0 |
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
# https://rstudio-pubs-static.s3.amazonaws.com/155168_61e1f687681d44e4988ce28b7f6ec13b.html | |
# https://www.leehbi.com/blog/2019-06-04-Google-Trends-with-R | |
library("dplyr") | |
library("ggplot2") | |
library("gtrendsR") | |
library("extrafont") | |
loadfonts(device = "win") |
NewerOlder