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
using Newtonsoft.JSON; | |
namespace JSONExample | |
{ | |
internal class Program | |
{ | |
public static void main(string[] args) | |
{ | |
Product product = new Product(); |
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 events = require('events'); | |
let eventEmitter = new events.EventEmitter(); | |
//Create an event handler: | |
let myEventHandler = function () { | |
console.log('I hear a scream!'); | |
} | |
//Assign the event handler to an event: | |
eventEmitter.on('scream', myEventHandler); |
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
/* | |
GUY.C | |
Tile Source File. | |
Info: | |
Form : All tiles as one unit. | |
Format : Gameboy 4 color. | |
Compression : None. |
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
// ==UserScript== | |
// @name Automatique CA-FR website | |
// @namespace http://tampermonkey.net/ | |
// @version 9000 | |
// @description met automaitquement les docs de microsoft en francais canadien | |
// @author ViniDalvino | |
// @match http*://docs.microsoft.com/* | |
// @grant none | |
// ==/UserScript== |
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
/** | |
* @name IUseArchBtw | |
* @authorLink https://github.com/ViniDalvino | |
* @source https://gist.github.com/ViniDalvino/7a16f6dc4b7ac012e91db157f4d4dad2 | |
*/ | |
module.exports = (() => { | |
const config = { | |
info: { | |
name: "IUseArchBtw", |
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
// ==UserScript== | |
// @name QuickDontbugmenot | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Quickly view burner account for the web page on dont bug me not | |
// @author ViniDalvino | |
// @match * | |
// @grant none | |
// ==/UserScript== |
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
Show hidden characters
// npm module config - used when you export module | |
{ | |
"compilerOptions": { | |
/* Basic Options */ | |
"incremental": true, | |
"target": "ES2020", | |
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ | |
"lib": [ | |
"ES6", | |
"ESNext" |