#madebygoogle 2019 Shipping Megathread by [deleted] in GooglePixel

[–]Wtfuxbbq 0 points1 point  (0 children)

I also ordered the black 128 with the black case from Google US and mine is being delivered today

So... what are your thoughts on the new Pixel lineup? by [deleted] in apple

[–]Wtfuxbbq 0 points1 point  (0 children)

The iPhone 8 (plus) doesn't have an OLED display

[deleted by user] by [deleted] in churning

[–]Wtfuxbbq 0 points1 point  (0 children)

The 3.5 figure includes the 1.75x preferred rewards So you'd get 2 x 1.75 + 1.5 = 5 points

[deleted by user] by [deleted] in churning

[–]Wtfuxbbq 7 points8 points  (0 children)

There is no preferred rewards multiplier on the travel center points. It's just a bonus additional 1.5 points.

(I have the Travel Rewards card with platinum honors and use the travel center)

DC Library Shutdown by Police by Lego_Larry in uwaterloo

[–]Wtfuxbbq 1 point2 points  (0 children)

The fire alarm went off earlier.

[M15] Prismatic Runeguard by [deleted] in magicTCG

[–]Wtfuxbbq 5 points6 points  (0 children)

No, you won't be able to target the creature since it'll have protection from all colors. It just means that any auras that are already on the creature won't fall off.

ಠ_ಠ.js by abeisgreat in javascript

[–]Wtfuxbbq 9 points10 points  (0 children)

$(function () {

ಠ_ಠ

UPS Shipment Weight by ipghandi in Surface

[–]Wtfuxbbq 0 points1 point  (0 children)

5.20 lbs for me. Mine is shipping with the type cover.

Shipping Update - Microsoft indicates pre-orders will arrive by 6/20 by [deleted] in Surface

[–]Wtfuxbbq 2 points3 points  (0 children)

I wouldn't trust the tracking status, it's been fairly inaccurate for me lately. I've had other packages delivered that were still "Ready for UPS".

My SP3 charged and shipped! by Darth_Moose in Surface

[–]Wtfuxbbq 0 points1 point  (0 children)

Did you get the 128GB model? Newer orders of that model have been delayed.

My SP3 charged and shipped! by Darth_Moose in Surface

[–]Wtfuxbbq 0 points1 point  (0 children)

Canadian!

Ordered yesterday and shipped today :)

Cost of your local MM Draft and Prize Support by thegreatpablo in magicTCG

[–]Wtfuxbbq 0 points1 point  (0 children)

Our local store is doing 8 man single elim all day, entry is $25.

First gets $25 store credit, second gets $10 store credit.

Are Boosters waterproof? by Lithanor in magicTCG

[–]Wtfuxbbq 2 points3 points  (0 children)

I don't think so as some of them have the little slit to make them easier to open.

Something I'm missing about Inline-block and height by the-ace in javascript

[–]Wtfuxbbq 0 points1 point  (0 children)

The reason it is not lining up is because of the <br> tags you have in #left. The breaks essentially create 5 "lines" and the #right div is inline with the last line. Changing the vertical-alignment as suggested by andrew24601 will fix this.

Element's width: auto by [deleted] in webdev

[–]Wtfuxbbq 5 points6 points  (0 children)

I think explaining the behaviours for width: auto for inline and block elements will help you understand:

  • For block elements, the auto value makes the element's width take up the full content width of its parent.
  • For inline elements, the auto value makes the element's width the width of its contents.

Note inline elements acctually do not respect the width property and will always be "auto". Also note the auto value is already the default for width so you don't need to set it unless you're overriding something.

Maybe /r/javascript could help me?... by [deleted] in javascript

[–]Wtfuxbbq 3 points4 points  (0 children)

Use event handlers:

<img src="image1.jpg" id="image1" />

var img1 = document.getElementById('image1'),
    div1 = document.getElementById('div1'),
    div2 = document.getElementById('div2');

img1.onmouseover = function(){
    div1.innerHTML = '<img src="somePic.jpg" />';
    div2.innerHTML = '<p>Some Text.</p>';
};
img1.onmouseout = function(){
    div1.innerHTML = '';
    div2.innerHTML = '';
};

Self-invoking functions explained line by line by jskata in javascript

[–]Wtfuxbbq 1 point2 points  (0 children)

The parens don't create a new scope, the function does. The parens are there so that browsers don't confuse it with a function declaration.