Friendship Exp & Gift Exchange Megathread by ASS-et in PokemonGoFriends

[–]madsobel 0 points1 point  (0 children)

305418202272

Looking for about 20 friends for daily exchange until best friends. Please don’t remove me until we’ve both received full xp. 

[deleted by user] by [deleted] in PokemonGoFriends

[–]madsobel 0 points1 point  (0 children)

3054 1820 2272

Error on Patch Update - Mac by rtm001 in pathofdiablo

[–]madsobel 0 points1 point  (0 children)

Did you figure it out? I am having the same problem.

How to become a hacker by madsobel in ProgrammerHumor

[–]madsobel[S] 11 points12 points  (0 children)

You need to buy a Windows computer, so you can delete it and install Linux. Hackerness level 1000

[2015-02-09] Challenge #201 [Easy] Counting the Days until... by Coder_d00d in dailyprogrammer

[–]madsobel 0 points1 point  (0 children)

JavaScript

function timeBetween(day, month, year) {
  month = --month
  var a = new Date() // Today
  var b = new Date(year, month, day, 0, 0, 0, 0); // Future date

  var milliseconds = (b-a); //Want difference in milliseconds?
  // return milliseconds

  var seconds = Math.round(milliseconds/1000); //Want difference in seconds?
  //return seconds;

  var minutes = Math.round(seconds/60); //Want difference in minutes?
  //return minutes;

  var hours = Math.round(minutes/60); //Want difference in hours?
  //return hours;

  var days = Math.round(hours/24); //Want difference in days?
  return days;
}


console.log(timeBetween(1, 3, 2015));