This file contains 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
{"result": {"count": "1384", "event": {"date": "1", "description": "Tiberius, under order of Augustus, quells revolts in Germania (1\u20135).", "lang": "en", "category1": "By place", "category2": "Roman Empire", "granularity": "year"}, "event": {"date": "1", "description": "Gaius Caesar and Lucius Aemilius Paullus are appointed consuls.", "lang": "en", "category1": "By place", "category2": "Roman Empire", "granularity": "year"}, "event": {"date": "1", "description": "Gaius Caesar marries Livilla, daughter of Antonia Minor and Nero Claudius Drusus, in an effort to gain prestige.", "lang": "en", "category1": "By place", "category2": "Roman Empire", "granularity": "year"}, "event": {"date": "1", "description": "Quirinius becomes a chief advisor to Gaius in Armenia. Gnaeus Domitius Ahenobarbus, whose father Lucius Domitius Ahenobarbus had served as consul in 16 BC, also serves in the Armenia campaigns.", "lang": "en", "category1": "By place", "category2": "Roman Empire", "granularity": "year"}, "event": {"date": |
This file has been truncated, but you can view the full file.
This file contains 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
This file has been truncated, but you can view the full file.
This file contains 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
[ | |
{ | |
"Adresse": "01B1A", | |
"Stimmart": "Erststimme", | |
"Bezirksnummer": "01", | |
"Bezirksname": "Mitte", | |
"Wahlbezirk": "1A", | |
"Wahlbezirksart": "B", | |
"Briefwahlbezirk": "011A", |
This file has been truncated, but you can view the full file.
This file contains 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
This file contains 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
// Name: Cheat Sheet | |
// Index: 0 | |
import "@johnlindquist/kit" | |
let sheet = ` | |
; = App Launcher | |
/ = File Browser | |
> = Terminal | |
< = Clipboard History |
This file contains 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
// Name: GitHub Repos | |
// Description: List GitHub repositories and perform actions on them | |
// Author: Vogelino | |
// Twitter: @soyvogelino | |
import "@johnlindquist/kit"; | |
const { Octokit } = await npm("octokit"); | |
const shodwon = await npm("showdown"); | |
const converter = new shodwon.Converter({ |
This file contains 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
// Name: Change case of selected text | |
// Description: Choose a transformation method (eg. camelCase) to transform the selected text in-place (Or some text input) | |
// Author: Vogelino | |
// Twitter: @soyvogelino | |
import "@johnlindquist/kit"; | |
const changeCase = await npm("change-case"); | |
let text = await getSelectedText(); |
This file contains 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
// Name: Get Tabler Icons | |
// Description: Copies a Tabler Icon from tabler open-sourced repository. | |
// Author: Lucas Vogel | |
// Twitter: @soyvogelino | |
import "@johnlindquist/kit"; | |
const iconsPath = "https://tabler-icons.io/icons.json"; | |
let files = []; |
This file contains 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
// Name: Unsplash | |
// Description: Search unsplash for the perfect image to download | |
// Author: Vogelino | |
// Twitter: @soyvogelino | |
import "@johnlindquist/kit"; | |
const { createApi } = await npm("unsplash-js"); | |
const accessKey = await env( | |
"UNSPLASH_ACCESS_KEY", |
This file contains 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
// Name: Todoist | |
// Description: Create and browse your Todoist Tasks | |
// Author: Vogelino | |
// Twitter: @soyvogelino | |
import "@johnlindquist/kit"; | |
const { TodoistApi } = await npm("@doist/todoist-api-typescript"); | |
const { formatRelative } = await npm("date-fns"); | |
interface ProjectType { |
NewerOlder