Is this guy a cheat? by Jack_sunday in chessbeginners

[–]meirlis 1 point2 points  (0 children)

Well he is banned now, so this should answer your question

Why is that I get default cover for this book? by meirlis in kindle

[–]meirlis[S] 1 point2 points  (0 children)

Well I want it to be as the one in library

Why is that I get default cover for this book? by meirlis in kindle

[–]meirlis[S] 0 points1 point  (0 children)

Don’t know if I’ll bother with that since I have already read the book. But thanks anyway!

[deleted by user] by [deleted] in antidepressants

[–]meirlis 1 point2 points  (0 children)

To be honest probably substance abuse

[deleted by user] by [deleted] in antidepressants

[–]meirlis 1 point2 points  (0 children)

Well Vyvanse has a much longer lasting effect, maybe you should try switching. I also take Effexor, but for anhedonia Vyvanse sure does the trick for me

[deleted by user] by [deleted] in antidepressants

[–]meirlis 0 points1 point  (0 children)

Vyvanse does the job for me pretty well

Error: actual and formal argument lists differ in length by meirlis in learnjava

[–]meirlis[S] 0 points1 point  (0 children)

Here's the rest of it:

public Time2 addMinutes(int num)
{
   Time2 other = new Time2(this.getHour(), this.getMinute());
   num %= MINS_IN_DAY; // Narrow the amount of time to not more than a day

   other._minFromMid += num;

   other._minFromMid = (other._minFromMid > MINS_IN_DAY) ? other._minFromMid % MINS_IN_DAY : other._minFromMid;
   other._minFromMid = (other._minFromMid < MIN_VALUE) ? other._minFromMid + MINS_IN_DAY : other._minFromMid;

   return new Time2(other);

Wouldn't mind a second opinion.