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://ts-ast-viewer.com/#code/GYVwdgxgLglg9mABACwKYBt1wBRgIYC2qAXIgM5QBOMYA5gDSJ5hxRqWIC8iA5GpnB4BKUhWp1EAbwBQiRJVRQQlJAAN+WRABJJ+IgF9VAbmn6gA | |
| import { Project, SyntaxKind } from "ts-morph"; | |
| const project = new Project({}); | |
| project.addExistingSourceFiles("./src/thing.ts"); | |
| const node = project.getSourceFileOrThrow("./src/thing.ts"); | |
| const result = node.forEachDescendant((node, traversal) => { |
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
| try { | |
| // add img alt tags using filename | |
| document.addEventListener( | |
| "DOMContentLoaded", | |
| function() { | |
| [...document.getElementsByTagName("img")].forEach(i => { | |
| i.alt = i.src | |
| .split("/") | |
| .pop() | |
| .split(".") |
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
| adduser ducklinguser --ingroup admin | |
| su ducklinguser | |
| cd | |
| echo "export PATH=$PATH:~/.local/bin" >> ~/.bashrc | |
| source ~/.bashrc | |
| git clone https://github.com/facebook/duckling | |
| cd duckling | |
| sudo apt-get update -y | |
| sudo apt-get install build-essential libpcre++-dev libpcre3-dev -y | |
| stack build && stack test && stack install |
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 { createMuiTheme } from "@material-ui/core"; | |
| import red from "@material-ui/core/colors/red"; | |
| import ThemeProvider from "@material-ui/styles/ThemeProvider"; | |
| import React from "react"; | |
| const themes = { | |
| default: createMuiTheme({}), | |
| red: createMuiTheme({ | |
| palette: { | |
| primary: red |
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 fs = require("fs"); | |
| const file = fs.readFileSync(".gitmodules").toString(); | |
| function parseGitModules(data, _callback) { | |
| var gitModules = data.split("["), | |
| subModulesCollections = []; | |
| gitModules.forEach(function(submodules) { | |
| if (/^submodule*/.test(submodules)) { |
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
| Actions { | |
| :branch | |
| :create_node | |
| :update_node | |
| :remove_node | |
| :create_edge | |
| :remove_edge | |
| } | |
| Action.create(type, actor, at, payload) |
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
| Scene.near('hackney, london, uk', 50, units: :km).where('data::text ilike ?', '%Building%').map{|s| s.data['url']}.count |
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
| tap "heroku/brew" | |
| tap "homebrew/bundle" | |
| tap "homebrew/cask" | |
| tap "homebrew/cask-drivers" | |
| tap "homebrew/cask-fonts" | |
| tap "homebrew/core" | |
| brew "atomicparsley" | |
| brew "direnv" | |
| brew "ffmpeg" | |
| brew "gnupg" |
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
| tap "heroku/brew" | |
| tap "homebrew/bundle" | |
| tap "homebrew/cask" | |
| tap "homebrew/cask-fonts" | |
| tap "homebrew/core" | |
| brew "gnupg" | |
| brew "hub" | |
| brew "hugo" | |
| brew "yarn" | |
| brew "heroku/brew/heroku" |
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
| { | |
| "type": "photo", | |
| "title": "Minchinhampton Common", | |
| "author_name": "Helena Downton", | |
| "author_url": "http://www.geograph.org.uk/profile/5", | |
| "web_page": "http://www.geograph.org.uk/photo/7", | |
| "thumbnail_url": "http://s3.geograph.org.uk/photos/00/00/000007_ce524193_120x120.jpg", | |
| "thumbnail_width": "120", | |
| "thumbnail_height": "90", | |
| "url": "http://s0.geograph.org.uk/photos/00/00/000007_ce524193.jpg", |