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
// So this is the model I have now (in JavaScript): | |
var GRACE_PERIOD_MILLIS = 259200000; // 3 days worth of milliseconds | |
function getRanking(post) { | |
var millis = post.dateCreated.getTime(); //get milliseconds since post was first posted | |
var currentMillis = Date.now(); //get current milliseconds since epoch |
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
package whatever; | |
class Outer2 {} | |
public class Outer { | |
class Inner2 {} | |
} | |
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
'use strict'; | |
const animals = { | |
canines: { | |
dogs: { | |
poodle: { | |
val: true | |
} |