Founder: Stanley Sakai
Graphics:
| 'use strict'; | |
| // Use Express as our routing middleware. | |
| const express = require('express'); | |
| const app = express(); | |
| const port = process.env.port || 4000; | |
| startServer(); | |
| function startServer () { |
Founder: Stanley Sakai
Graphics:
| const fs = require('fs'); | |
| const Json2csvParser = require('json2csv').Parser; | |
| let output; | |
| // Read in a giant CSV file. | |
| fs.readFile('input.json', 'utf8', (err, data) => { | |
| if (err) throw err; | |
| output = JSON.parse(data); | |
| parse(output); |
This script removes the input length limit which can trip up Plover users.
Simply install the script into TamperMonkey (Chrome) or GreaseMonkey (Firefox) and get racing.
The script was created by community member nimble
| import React, { Fragment, useEffect, useState } from 'react'; | |
| import PropTypes from 'prop-types'; | |
| function Parallax(props) { | |
| const [YPos, setYPos] = useState(0); | |
| const { uppermodulevisible, addclass } = props; | |
| function handleScroll() { | |
| if (uppermodulevisible === 1) { | |
| console.log("you were module visible", uppermodulevisible); |
| # Github | |
| alias g="git" | |
| alias gs="git status" | |
| alias ga="git add" | |
| alias gaa="git add -A" | |
| alias ga.="git add ." | |
| alias gb="git branch" | |
| alias gca="git commit -a -m" | |
| alias gcmm="git commit -m" |
| 1 #!/bin/zsh | |
| 2 | |
| 3 # Color variables. | |
| 4 red=$'\e[1;31m' | |
| 5 grn=$'\e[1;32m' | |
| 6 blu=$'\e[1;34m' | |
| 7 mag=$'\e[1;35m' | |
| 8 cyn=$'\e[1;36m' | |
| 9 white=$'\e[0m' | |
| 10 yellow=$'\e[1;33m' |
| #!/bin/bash | |
| ## **run `chmod +x ~/myFolder/clay_import_site.bash`.** | |
| ## grab uris. | |
| printf "\n" | |
| echo " Enter article URI including www." | |
| printf "\n" |