04/27 - Sparking Saturday!

Status
Not open for further replies.

Kadauchi

Well-Known Member
Master Pleaser
Crowd Pleaser
Joined
Jan 12, 2016
Messages
7,098
Reaction score
21,951
Points
1,263
I can attest to the fact that at times it is far less than 12 hours.
Could you have something like CCleaner that is on a schedule to run that could be clearing your cookies inbetween the 12 hours. The 12 hours is also tied to the browser, so different browsers (or profiles within those) will have different times.
 

HelloHello

Well-Known Member
Joined
Mar 3, 2018
Messages
8,863
Reaction score
19,928
Points
938
Gender
Female
Could you have something like CCleaner that is on a schedule to run that could be clearing your cookies inbetween the 12 hours. The 12 hours is also tied to the browser, so different browsers (or profiles within those) will have different times.
Nope
 
  • Like
Reactions: Kadauchi

MagicalStreams

I'd gladly pay you Tuesday for a hamburger today.
Joined
Feb 10, 2018
Messages
578
Reaction score
1,593
Points
393
Gender
Female
What are you watching on Netflix?
I found this series called Lucifer, that is so outrageous and hilarious. I mean, I can see how some folks would find some of the things said offensive, but I try not to take my entertainment so seriously, so I find it hilarious.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
I guess i should just add that into MTS too at some point.
Is the word 'options' in your code just a placeholder for the details object or does it do something?
 

theturkscribe

Well-Known Member
Contributor
Joined
Feb 6, 2018
Messages
3,628
Reaction score
10,538
Points
838
Gender
Female
I found this series called Lucifer, that is so outrageous and hilarious. I mean, I can see how some folks would find some of the things said offensive, but I try not to take my entertainment so seriously, so I find it hilarious.
I've passed by it a bunch it looks like it's marathonable which is always good in my book.
 

MagicalStreams

I'd gladly pay you Tuesday for a hamburger today.
Joined
Feb 10, 2018
Messages
578
Reaction score
1,593
Points
393
Gender
Female
I've passed by it a bunch it looks like it's marathonable which is always good in my book.
Not to mention the dude on the show takes all these modern songs and plays them on the piano, and it's just so awesome. (Now I don't know if the actor really plays or it's Hollywood magic, but it SOUNDS awesome!)
 
  • Like
Reactions: theturkscribe

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
Just a placeholder.
Thanks. Reading your code is pretty much the only somewhat successful way I've had at learning ES6
Destructuring. You would be shocked how long it took for me to figure this one out.


Code:
const { version } = chrome.runtime.getManifest();
 
  • Like
Reactions: Kadauchi

theturkscribe

Well-Known Member
Contributor
Joined
Feb 6, 2018
Messages
3,628
Reaction score
10,538
Points
838
Gender
Female
Not to mention the dude on the show takes all these modern songs and plays them on the piano, and it's just so awesome. (Now I don't know if the actor really plays or it's Hollywood magic, but it SOUNDS awesome!)
Interesting! I wouldn't be surprised if it was the actor.
 
  • Like
Reactions: scrmcasey

Kadauchi

Well-Known Member
Master Pleaser
Crowd Pleaser
Joined
Jan 12, 2016
Messages
7,098
Reaction score
21,951
Points
1,263
Thanks. Reading your code is pretty much the only somewhat successful way I've had at learning ES6
Destructuring. You would be shocked how long it took for me to figure this one out.


Code:
const { version } = chrome.runtime.getManifest();
Np, happy to help. How about array destructuring?

Code:
const arr = [1, 2, 3, 4, 5];
const [a, b, ...c] = arr;
console.log(a, b, c); // what would this print (no cheating)
 

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,508
Reaction score
104,411
Points
2,088
Location
Las Vegas
Gender
Female
I'm going to start working on some stuff on the server. There shouldn't be any major interruptions, but you may get some errors here and there as I restart things over the next couple hours.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
Np, happy to help. How about array destructuring?

Code:
const arr = [1, 2, 3, 4, 5];
const [a, b, ...c] = arr;
console.log(a, b, c); // what would this print (no cheating)
I think you wouldnt have to try anywhere near that hard to confuse me:eek:

I really should have gotten this. Its just like

Code:
function myFunc (param1, param2, ...args) {
const arguments = [].slice.call(args);
//other stuff here
}
 
Last edited:
  • Like
Reactions: Kadauchi
Status
Not open for further replies.