To use this drop these two files in beside a folder called emoji filled with the emoji you want to upload.
Run npm install to grab the needed dependencies.
Modify the host, user, and pass in the file.
Then run: node import-emoji.js
| /* | |
| * Genarate rsa keys. | |
| */ | |
| package main | |
| import ( | |
| "crypto/rand" | |
| "crypto/rsa" | |
| "crypto/x509" |
| /* | |
| Script to Export Illustrator files as PNG's then make a thumbnail. | |
| Runs in CS5 only | |
| Overdocumented so that I know what the heck is going on if I have to look at it again. | |
| */ | |
| //Disable Alerts. We want this to be as unobtrusive as possible. | |
| app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS; |
| var ThemeEnabler = { | |
| isThemeOn: false, | |
| controls: null, | |
| onAppLoaded: async function() { | |
| this.checkCookie() | |
| do { |
| #!/usr/bin/python | |
| # Python program that emulates ChromeCast device | |
| from twisted.internet import reactor | |
| from twisted.internet.protocol import DatagramProtocol | |
| import tornado.ioloop | |
| import tornado.web | |
| import tornado.websocket | |
| import threading |
| const fs = require('fs'); | |
| const { exec } = require('child_process'); | |
| const file = fs.readFileSync('replicasets4.txt').toString(); | |
| // const file = fs.readFileSync('pods.txt').toString(); | |
| (async () => { | |
| const lines = file.split('\n'); | |
| const total = lines.length; |
Get personal access token from github
git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
| # (C) 2016, Deepak Kothandan | |
| # This file is part of Ansible | |
| # | |
| # Ansible is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. | |
| # | |
| # Ansible is distributed in the hope that it will be useful, |