Minx2121
Well-Known Member
- Joined
- Jul 9, 2018
- Messages
- 2,778
- Reaction score
- 5,816
- Points
- 763
- Age
- 34
- Gender
- Female
Coffee is losing it's affect on me
Coffee is losing it's affect on me
I didn't find much early this morning. During the rest of the week early morning has seemed pretty dead too.I guess i should just add that into MTS too at some point.
Noooooooooooooooooooooooooo what can we mere mortals do without it?!Coffee is losing it's affect on me
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.I can attest to the fact that at times it is far less than 12 hours.
Caffeine patches????Noooooooooooooooooooooooooo what can we mere mortals do without it?!
NopeCould 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.
Glad its not just me, thought I may have been going crazyI can attest to the fact that at times it is far less than 12 hours.
I would pay good money for something like that.Caffeine patches????
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.What are you watching on Netflix?
Is the word 'options' in your code just a placeholder for the details object or does it do something?I guess i should just add that into MTS too at some point.
Just a placeholder.Is the word 'options' in your code just a placeholder for the details object or does it do something?
I've passed by it a bunch it looks like it's marathonable which is always good in my book.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.
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!)I've passed by it a bunch it looks like it's marathonable which is always good in my book.
Thanks. Reading your code is pretty much the only somewhat successful way I've had at learning ES6Just a placeholder.
const { version } = chrome.runtime.getManifest();
Interesting! I wouldn't be surprised if it was the actor.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!)
Np, happy to help. How about array destructuring?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();
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 meNp, 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)
function myFunc (param1, param2, ...args) {
const arguments = [].slice.call(args);
//other stuff here
}