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
class Node { | |
constructor(val) { | |
this.value = val; | |
} | |
} | |
class SLLNode extends Node { |
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
// This is a fork of the below to get YYYY-MM-DD date formats (to be on the same page with international usage/teams | |
// How to use: | |
// 1. Copy the public snippet "Past and Future Dates - Public" | |
// 2. Rename its 'lib_for_Dates Snippet to something else | |
// 3. Copy/paste this script's contents there | |
// 4. Update all the snippets' top line from: | |
// %snippet:'lib_for_Dates% | |
// to: | |
// %snippet:'Citus_lib_for_Dates% | |
// (where 'Citus_lib_for_Dates is what you renamed your snippet to) |
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
Sub ResizeImagesToHalf() | |
' | |
' Source: https://superuser.com/a/941255/172631 | |
' | |
' .ScaleHeight below was getting the error: | |
' Run-time error '4693': | |
' This member cannot be accessed on a horizontal line. | |
' | |
' have to check the type of object it seems, source: | |
' https://answers.microsoft.com/en-us/msoffice/forum/all/fix-for-macro-to-add-borders-to-all-images-in-a/43b255dc-7cca-4df9-8721-1b6135ae6aca |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
function log(message) { | |
console.log(' '.repeat(new Error().stack.match(/\n/g).length - 2) + message); | |
} |
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
{ | |
"AF": { | |
"countries": [ | |
"DZ", | |
"AO", | |
"BW", | |
"BI", | |
"CM", | |
"CV", | |
"CF", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder