now alias my-api-xyz.now.sh my-new-domain.com
now alias my-api-xyz.now.sh my-new-custom-name
const Twit = require('twit') | |
const config = require('./config') | |
const bot = new Twit(config) | |
const listOutFollowers = userName => { | |
bot.get( | |
'followers/ids', | |
{ | |
screen_name: userName, |
{ | |
"bracketSpacing": true, | |
"jsxBracketSameLine": true, | |
"parser": "babylon", | |
"printWidth": 70, | |
"semi": false, | |
"singleQuote": true, | |
"tabWidth": 2, | |
"trailingComma": "none", | |
"useTabs": false, |
;[ ...document.querySelectorAll('.mn-person-card') ].forEach((card) => { | |
// first pull out name and occupation | |
const name = card.querySelector('.mn-person-info__name').textContent | |
// console.log(name) | |
const headline = card.querySelector('.mn-person-info__occupation').textContent | |
// console.log(headline) | |
// find the button to remove connection | |
const dropdown = card.querySelector('.dropdown') | |
const showDelete = dropdown.querySelector('.show-delete-dialog-btn') | |
// const button = dropdown.querySelector('.remove') |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// Choose either "stable" for receiving highly polished, | |
// or "canary" for less polished but more frequent updates | |
updateChannel: 'canary', |
enum _ModelMutationType { | |
CREATED | |
UPDATED | |
DELETED | |
} | |
# Meta information about the query. | |
type _QueryMeta { | |
count: Int! | |
} |
require('dotenv').config(); | |
const { GraphQLClient } = require('graphql-request'); | |
const client = new GraphQLClient(process.env.ENDPOINT, { headers: { | |
'Authorization': `Bearer ${process.env.ACCESS_TOKEN}` | |
}}); | |
const query = T => ` | |
query Get${T}s { | |
all${T}s { | |
id |
[ | |
"followback", | |
"followers", | |
"grumpy cat", | |
"gamergate", | |
"quotes", | |
"facts", | |
"harry potter", | |
"follow for", | |
"facebook fans", |
https://en.wikipedia.org/wiki/Box-drawing_character
my-app/
ββ .gitignore
ββ node_modules/
ββ public/
ββ src/
β ββ ...
@spences10 you need shell: 'C:\\Windows\\System32\\cmd.exe',
in your config
how can I shorten the command prompt in hyper?
PS1=β$β