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
| import type { Prompt, Page, Browser } from 'arbitrary-command-palette/types'; | |
| export async function( | |
| prompt: Prompt, | |
| page: Page, | |
| browser: Browser, | |
| ) { | |
| prompt.thinking(); | |
| const catResp = await fetch('https://cataas.com/cat'); |
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
| # | Name | Type 1 | Type 2 | Total | HP | Attack | Defense | Sp. Atk | Sp. Def | Speed | Generation | Legendary | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | Bulbasaur | Grass | Poison | 318 | 45 | 49 | 49 | 65 | 65 | 45 | 1 | False | |
| 2 | Ivysaur | Grass | Poison | 405 | 60 | 62 | 63 | 80 | 80 | 60 | 1 | False | |
| 3 | Venusaur | Grass | Poison | 525 | 80 | 82 | 83 | 100 | 100 | 80 | 1 | False | |
| 3 | VenusaurMega Venusaur | Grass | Poison | 625 | 80 | 100 | 123 | 122 | 120 | 80 | 1 | False | |
| 4 | Charmander | Fire | 309 | 39 | 52 | 43 | 60 | 50 | 65 | 1 | False | ||
| 5 | Charmeleon | Fire | 405 | 58 | 64 | 58 | 80 | 65 | 80 | 1 | False | ||
| 6 | Charizard | Fire | Flying | 534 | 78 | 84 | 78 | 109 | 85 | 100 | 1 | False | |
| 6 | CharizardMega Charizard X | Fire | Dragon | 634 | 78 | 130 | 111 | 130 | 85 | 100 | 1 | False | |
| 6 | CharizardMega Charizard Y | Fire | Flying | 634 | 78 | 104 | 78 | 159 | 115 | 100 | 1 | False |
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
| const r1 = #{ | |
| a: 1, | |
| b: 2, | |
| c: 3, | |
| }; | |
| const r2 = #{ | |
| a: #{ | |
| b: #{ | |
| c: 123, |
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
| group:homework 1 | |
| assets = { | |
| id:number, type:string, title:string , publication_date:number | |
| 100 , 'cd' , 'Best of Phill Colins', 1567696321 | |
| 200 , 'book' , 'Pippi Långstrump' , 1567667305 | |
| 300 , 'book' , 'Madicken' , 1567663305 | |
| } | |
| stock = { |
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
| ::[CmdletBinding(SupportsShouldProcess)] | |
| ::# Update these values for wherever you have GW2 installed. | |
| ::# The launch arguments only get passed if you do not have a Settings.json file. | |
| ::# | |
| ::# Modes: | |
| ::# (no args) Automatic: keep ArcDPS updated & enabled, but if GW2 crashed last | |
| ::# session with ArcDPS on, disable it until a newer ArcDPS is released. | |
| ::# -DisableArcDPS Force-disable ArcDPS for this launch (temporary "uninstall"). | |
| ::# -EnableArcDPS Force-(re)install and enable the latest ArcDPS, clearing any lockout. | |
| ::Param( |
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
| .as-console-wrapper { max-height: 100% !important; top: 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
| [ | |
| { | |
| "id": "readme.template", | |
| "template": { | |
| "uri": "readme.template.mustache" | |
| }, | |
| "targetPath": "../README.template.md", | |
| "force": false | |
| }, { | |
| "id": "global.fragments", |
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
| import { bar } from './demo_internal'; | |
| export function foo() {} |
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
| import * as moment from 'moment'; // might warn due to missing types file | |
| console.log( moment() ); |
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
| // The main SASS file. Import this file to have access to global variables. | |
| // ----- Global colors ------- | |
| // Handy colors | |
| $white: #FFFFFF; | |
| $black: #000000; | |
| // ----- KTH specifics ----- | |
| $kth-color-blue: #2258A5; // #0064B0 | |
| $kth-color-light-blue: #2E7CC0; |
NewerOlder