Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am yeedle on github.
  • I am yeedle (https://keybase.io/yeedle) on keybase.
  • I have a public key ASAAPQHuf4Regji3HsrhtW0tKbOSvMjHlV1lSpxv6zbvPAo

To claim this, I am signing this object:

@yeedle
yeedle / tiobe.R
Last active January 12, 2018 15:47 — forked from hadley/tiobe.R
library(rvest)
library(stringr)
library(tidyverse)
page <- read_html("https://www.tiobe.com/tiobe-index/r/")
script <- page %>%
html_node("body > section > section > section > article > script") %>%
html_text()
041adf4cc10534b649bfaeed80934e4369203cabff2756e57453bb99472c7897beb04d71b16f83217631ea0628d114d4fe78b9e045c885c62205aca860db0c0775;realazthat
@yeedle
yeedle / app.js
Last active March 31, 2025 13:29
let tasks = []
async function main() {
let response = await fetch('http://localhost:3000/tasks')
tasks = await response.json();
console.log(tasks)
}
main()
async function addTaskBtnClicked() {