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
| async function scrollDown() { | |
| const wrapper = document.querySelector("#search-page-list-container"); | |
| await new Promise((resolve, reject) => { | |
| var totalHeight = 0; | |
| var distance = 600; | |
| var timer = setInterval(async () => { | |
| var scrollHeightBefore = wrapper.scrollHeight; | |
| wrapper.scrollBy(0, distance); | |
| totalHeight += distance; |
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 puppeteer = require('puppeteer'); | |
| class Webpage { | |
| static async generatePDF(url) { | |
| const browser = await puppeteer.launch({ headless: true }); // Puppeteer can only generate pdf in headless mode. | |
| const page = await browser.newPage(); | |
| await page.goto(url, { waitUntil: 'networkidle', networkIdleTimeout: 5000 }); // Adjust network idle as required. | |
| const pdfConfig = { | |
| path: 'url.pdf', // Saves pdf to disk. | |
| format: 'A4', |
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
| --- | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: n8n-deployment | |
| namespace: standard | |
| labels: &labels | |
| app: n8n | |
| component: deployment | |
| spec: |
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
| var data = "do shash'owania"; | |
| var crypto = require('crypto'); | |
| crypto.createHash('md5').update(data).digest("hex"); |
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(ggplot2) | |
| ggplot(data = data.frame(x = c(-4, 6)), aes(x)) + | |
| stat_function(fun = dnorm, n = 101, args = list(mean = 0, sd = 1), geom = "area", fill = "#F5BB87", alpha = 0.9) + | |
| stat_function(fun = dnorm, n = 101, args = list(mean = 2.7, sd = 1), geom = "area", fill = "#BBD4EB", alpha = 0.9) + | |
| coord_fixed(xlim = c(-5, 7), ratio = 8, clip = "off") + | |
| annotate("segment", x = -3.9, y = 0, xend = 6, yend = 0, color = "grey60", size = 1.3) + | |
| annotate("segment", x = -3.5, y = -0.04, xend = -3.5, yend = 0.42, color = "grey60", size = 1.3) + | |
| annotate("text", x = 0, y = 0.18, label = "what people\nactually do\nin R", family = "Arial Bold", color = "white", size = 5.2) + | |
| annotate("text", x = 2.75, y = 0.18, label = "what people\nassume others\ndo in R", family = "Arial Bold", color = "white", size = 5.2) + |
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
| dualplot <- function(x1, y1, y2, x2 = x1, | |
| col = c("#C54E6D", "#009380"), | |
| lwd = c(1, 1), colgrid = NULL, | |
| mar = c(3, 6, 3, 6) + 0.1, | |
| ylab1 = paste(substitute(y1), collapse = ""), | |
| ylab2 = paste(substitute(y2), collapse = ""), | |
| nxbreaks = 5, | |
| yleg1 = paste(gsub("\n$", "", ylab1), "(left axis)"), | |
| yleg2 = paste(ylab2, "(right axis)"), | |
| ylim1 = NULL, ylim2 = NULL, ylim.ref = NULL, |
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
| #!/bin/bash | |
| APPNAME=<%= appName %> | |
| APP_PATH=/opt/$APPNAME | |
| BUNDLE_PATH=$APP_PATH/current | |
| ENV_FILE=$APP_PATH/config/env.list | |
| PORT=<%= port %> | |
| USE_LOCAL_MONGO=<%= useLocalMongo? "1" : "0" %> | |
| # remove previous version of the app, if exists |
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
| * Script to record and tag spotify tracks, by Lloyd Moore *) | |
| (* Make sure you are already recording in Audio Hijack Pro with a session called 'spotifySession' *) | |
| tell application "Spotify" | |
| set currentTrack to (current track) | |
| set trackName to (name of currentTrack) | |
| tell application "Audio Hijack Pro" | |
| set theSession to my getSession() | |
| end tell | |
| repeat |
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 on filesystem and started networking | |
| stop on shutdown | |
| author "Santosh Srinivas" | |
| description "Ghost Upstart Job for Thoughts instance" | |
| version "0.1" | |
| respawn | |
| respawn limit 5 30 |
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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
NewerOlder