This file contains 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
-- fake functions | |
function GetInstanceInfo() | |
return '', 'raid', 1, '', '', '', '', '', '' | |
end | |
function GetDifficultyInfo(fakeArg1) | |
return '', '', true, '', true, '', '' | |
end | |
-- usually provided by wow API |
This file contains 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
text = "The official Twitter account for Fall Guys released a \"human for scale\" illustration featuring their playable characters. Fall Guys are all 183cm (6ft) by the way." | |
tags = ['FallGuys'] | |
assets = ['fallguys-scale.jpeg', 'fallguys-eyes.png'] | |
# alt texts for images | |
assetsAlts = ['A Fall Guy next to human', 'Fall Guy eyes and skull'] | |
credits = ['https://www.artstation.com/tudormorris'] |
This file contains 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
// ==UserScript== | |
// @name Tarkov Wiki fixer | |
// @namespace https://escapefromtarkov.fandom.com | |
// @version 0.1 | |
// @description Remove bullshit elements that nobody needs in the fandom wiki | |
// @author JonathanMH | |
// @match https://escapefromtarkov.fandom.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
/run SendChatMessage(GetRandomArgument("Bombidum..","Hop along, my hearties!","Wake now my merry lads!","Merry dol! Derry dol! My darling!", "Tom Bom, jolly Tom, Tom Bombadillo!"),"SAY") |
This file contains 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
net stop w32time | |
net start w32time | |
w32tm /resync /nowait | |
# $trigger = New-JobTrigger -AtStartup -RandomDelay 00:00:30 | |
# Register-ScheduledJob -Trigger $trigger -FilePath C:\Users\jonat\ntp-trigger.ps1 -Name StartupTriggerNTP |
This file contains 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
package main | |
import ( | |
"log" | |
"io/ioutil" | |
"os" | |
"os/exec" | |
"path/filepath" | |
"runtime" |
This file contains 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
// file: index.js | |
var _ = require("lodash"); | |
var express = require("express"); | |
var bodyParser = require("body-parser"); | |
var jwt = require('jsonwebtoken'); | |
var passport = require("passport"); | |
var passportJWT = require("passport-jwt"); |
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 5 columns, instead of 6 in line 1.
This file contains 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
Name,Gender,"preferred language",startDate,endDate | |
Barbara McFinley,Female,JavaScript,2015-13-01,, |
This file contains 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 fs = require('fs'); | |
var async = require('async'); | |
var request = require('request'); | |
var cheerio = require('cheerio'); | |
var _ = require('lodash'); | |
var url = 'http://programmingexcuses.com'; | |
var excuses = []; |
This file contains 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 request = require('request'); | |
var async = require('async'); | |
var xml2js = require('xml2js'); | |
var parseString = require('xml2js').parseString; | |
var parser = new xml2js.Parser( | |
{ | |
preserveChildrenOrder: true, | |
explicitArray: false, | |
charkey: "content", |
NewerOlder