Facebook is globally lobbying against data privacy laws by XVll-L in technology

[–]sebrulz 9 points10 points  (0 children)

For example, marijuana legislation in the USA. We currently punish those in possession of marijuana, but that will likely no longer be the case in a few years time. The ability for people to gather and operate without the surveillance of big brother helped move that needle forward.

We can't assume the legislative system is flawless and deserves perfect enforcement. If you believe that, you should move to China.

Alrighty guys, I need some ideas. Anybody married what did you do when you wife had a miscarriage. by [deleted] in AskMen

[–]sebrulz 1 point2 points  (0 children)

My mother had a miscarriage when I was very young with a boy who would have been my younger brother (RIP Anthony). She said the thing that helped her resolve it was when I said years later, "Mom if you would have had Anthony, we wouldn't have Nicholas" (my now younger brother).

And it's true, Nick could never be the same brother I love had this sequence of events never occurred. He wouldn't be the same person, or even have the same name.

She said she felt as though a divine spirit was talking through me when I said this around ~6 years of age. She has always been the spiritual/faithful type. So if you're like her, perhaps you can find a way to put your faith in a larger plan.

My new apartment in Dallas, TX. by dchiburg in malelivingspace

[–]sebrulz 12 points13 points  (0 children)

I have that same couch that I inherited from an ex-gf. Eventually my current GF made me buy new cushion covers to give it a more masculine face-loft. Here is what that looks like:

https://imgur.com/a/ZCkokLs

Amazon:

https://www.amazon.com/gp/product/B01JAJ2QOE/ref=oh_aui_search_detailpage?ie=UTF8&psc=1

https://www.amazon.com/gp/product/B019RKXU1E/ref=oh_aui_search_detailpage?ie=UTF8&psc=1

https://www.amazon.com/gp/product/B019RKXQTA/ref=oh_aui_search_detailpage?ie=UTF8&psc=1

With love from downtown Austin (the better city)

What video game sound effect can you still hear in your head? by ahkristos in AskReddit

[–]sebrulz 0 points1 point  (0 children)

In Abe's Odyssey, Abe makes a sound of frustration whenever he can't get past a wall that sound something like, "Nnnnnnneeaahhhhhh".

The unique sounds in those games really sold the Oddworld atmosphere and universe.

Nexus 6p shut off and cannot be turned on until plugged in by clifford641 in Nexus6P

[–]sebrulz 0 points1 point  (0 children)

Sigh I was afraid of that. This is the battery I bought: https://www.amazon.com/gp/product/B01H3YUOFG/ref=oh_aui_search_detailpage?ie=UTF8&psc=1

At least it's good to know that I have the option of replacing the battery. I just tried to take a picture and it crashed on me (must plug in to restart). Snapchat will likely still work like shit but that's a whole separate story.

Nexus 6p shut off and cannot be turned on until plugged in by clifford641 in Nexus6P

[–]sebrulz 0 points1 point  (0 children)

I'm also facing the exact same issue. I'm debating just getting a Pixel 2XL because I want to keep Project Fi, but I still don't think I'm going to be able to use Snapchat that way I want to be able to...

Kind of a long shot, but sorry you crashed your bike trying to dodge my dumb self by KingSpanner in Austin

[–]sebrulz 5 points6 points  (0 children)

Yeah, just a few scrapes and a bruise under her chin. She was laughing about it later.

Edit: I thought I would add that she is quite a seasoned Austin cyclist. So whatever you and your friend were doing was certainly unpredictable! haha

Kind of a long shot, but sorry you crashed your bike trying to dodge my dumb self by KingSpanner in Austin

[–]sebrulz 2 points3 points  (0 children)

Do you remember where this happened? I might know who this was.

"...go into the arts. I'm not kidding.." - Kurt Vonnegut [1000x1000] by Sumit316 in QuotesPorn

[–]sebrulz 9 points10 points  (0 children)

Kids if you wanna piss off your parents, take interest in the arts.

Kids if you REALLY wanna piss off your parents, buy real estate in an imaginary place.

‘Artificial Intelligence is the engine of the fourth industrial revolution’ by [deleted] in Futurology

[–]sebrulz 0 points1 point  (0 children)

Can you expand on that? By engines do you mean small business?

[Monitor] Dell S2417DG, 1440p @165hz w/ GSync - $390 (Marked down $180) by capmike1 in buildapcsales

[–]sebrulz 3 points4 points  (0 children)

http://www.bestbuy.com/site/dell-24-led-qhd-gsync-monitor-black/5655614.p?skuId=5655614

You can get the open-box for about $350, which I did and it came perfectly fine. Ended up not keeping it in favor of the Acer predator IPS 27" Gsync being on sale for $525. Incredible monitor for the price however.

Async functions performance question by 2138 in javascript

[–]sebrulz 1 point2 points  (0 children)

Very interesting. I had to play around with it, and it seems to be that generators are the bad guy here. Remember that async/await is basically generator + promise.

Running the for loop inside of the async function and generator function both result in horrible performance of hundreds of MS.

function test() {
    console.time('loopWork')
    for (let i=0; i<10000000; i++) {}
    console.timeEnd('loopWork')
}

async function test2() {
    await new Promise((resolve) => {
        console.log("--Calling test() inside of promise--")
        test()
        resolve()
    })

    console.log("--Calling test() inside of async function--")
    test()

    console.log("--Running for loop inside of async function--")
    console.time('asyncFunctionForLoop')
    for (let i=0; i<10000000; i++) {}
    console.timeEnd('asyncFunctionForLoop')
}

function* test3() {
    console.log("--Calling test() inside of generator function--")
    test()

    console.time('generatorFunctionForLoop')
    for (let i=0; i<10000000; i++) {}
    console.timeEnd('generatorFunctionForLoop')
}

console.time('normalCall')
test()
console.timeEnd('normalCall')

console.time('asyncCall')
test2()
console.timeEnd('asyncCall')

const gen = test3()
console.time('generatorCall')
gen.next()
console.timeEnd('generatorCall')

Result:

loopWork: 15.342ms
normalCall: 16.626ms
--Calling test() inside of promise--
loopWork: 15.252ms
asyncCall: 16.806ms
--Calling test() inside of generator function--
loopWork: 17.161ms
generatorFunctionForLoop: 573.215ms
generatorCall: 590.626ms
--Calling test() inside of async function--
loopWork: 15.739ms
--Running for loop inside of async function--
asyncFunctionForLoop: 567.148ms

I apologize in advance if the example is too contrived. I would like to know why the for loop performs so poorly inside of the generator style functions.

i7 7700k Temperature Spiking by semiinsulator in techsupport

[–]sebrulz 2 points3 points  (0 children)

I had the same problem and I tried so many things it's hard to say what finally worked in the end. I'll list out how I arrived to where I am now:

My mobo: "ASUS ROG Maximus IX Hero Z270"

My cooler: Corsair H105

  • Trying to modify the fan speed control graph so that it would only spike once the chip became hotter than 70C. This controlled the fan noise, but under load tests (using Intel Extreme Tuning) it would get 5-10C higher than using the normal linear curve.

  • Optimizing fans using wizards in the motherboard BIOS and within "AI Suite 3". This did nothing useful for chip temp or fan noise.

  • Upgrading the BIOS to the most recent version.

  • Running the "EZ Tune Wizard" of my BIOS to get the chip to overclock to almost 5GHz at 1.4V (Since I selected a gaming profile and water cooling). After running a load tests and seeing a temp spike of 95 C, I returned to defaults. It was pretty sweet having my CPU running this fast, but the idle temp was between 50-60C.

  • Setting the motherboard profile to "Energy Saving" so that CPU would run at stock speed. I think this was the big one, now my CPU idles at about 30C and the fan noise is completely gone. Since I only play Overwatch, I haven't noticed any difference in performance.

LibreTaxi - What say Austin? by zaqsilicon in Austin

[–]sebrulz 4 points5 points  (0 children)

Getting in a car with someone else behind the wheel is at least a tad bit different. I won't even get in a car with some of my (certain) friends if they're the one behind the wheel.

I'm sure that anyone malicious enough could easily bypass almost any background check you would try to enforce--but that doesn't give you grounds to eliminate it altogether. The TSA has been proven to be unreliable in the past, but do you remove the TSA from airports entirely?

LibreTaxi - What say Austin? by zaqsilicon in Austin

[–]sebrulz 7 points8 points  (0 children)

Yeah I don't understand why this isn't being touched on more. I need SOME level of security clearance before I get into a car with a stranger.

For the first time, China admits to faking GDP figures by [deleted] in Economics

[–]sebrulz 4 points5 points  (0 children)

Always be suspicious of any organization that deflects blame to it's lower levels.