Readit News logoReadit News
throwaway542134 commented on LA getting serious about lifting parking requirements in downtown   la.curbed.com/2019/8/6/20... · Posted by u/DoreenMichele
mixmastamyk · 6 years ago
Downtown has the best transport access in the entire city. There are frequent trains in every direction and long-distance thru Union Station. While not Germany-level, it is quite good.

Combined with the rise of rideshare and rentals etc, large parking garages are becoming obsolete.

throwaway542134 · 6 years ago
>Downtown has the best transport access in the entire city

The only problem is that most people don't have a reason to go there. The streets are usually empty aside from the homeless encampments.

The only reasons I've ever had to go to DTLA was to attend a conference and some games at the Staples Center. It's a cultural and recreational wasteland compared to the rest of the city.

throwaway542134 commented on LA getting serious about lifting parking requirements in downtown   la.curbed.com/2019/8/6/20... · Posted by u/DoreenMichele
slg · 6 years ago
As a resident of LA, I don't see this actually accomplishing much due to the specific market of downtown LA. Like the article mentions, basically all the new construction in that area comes in at the top of the market. Almost everyone in that socioeconomic class in LA has a car and would want a nearby place to park it. Developers therefore aren't going to build a new luxury high-rise and not provide parking for its residents.

That said, we might as well remove this regulation requiring parking if the market will dictate a similar level of parking anyway. I simply think this type of change would see a greater impact in neighborhoods in which car ownership levels are lower.

throwaway542134 · 6 years ago
I think this is just low cost/effort to reduce a particular problem. DTLA is the most walkable and accessible to public transit place in the city, the only issue is there's nothing there worth walking to besides the Staples Center.

The real area of focus for reducing traffic and vehicle usage should be the San Fernando Valley corridors (Sepulveda/405, the 5, and the 101 to San Gabriel Valley). Iirc from a recent report on KPCC there's like 600k daily commuters between the valley and the southland, and another 700k between the valley and San Gabriel Valley.

We have one metro stop in the SFV, which serves the 3 million residents. It's no wonder it's surrounded by a massive parking lot, and most commuters don't use it anyway.

throwaway542134 commented on Arabic Mathematics: Forgotten Brilliance? (1999)   www-history.mcs.st-andrew... · Posted by u/lioeters
Rattled · 6 years ago
I was told of Algebra coming from Al-Jabr meaning "number games". I was surprised I didn't see this mentioned in the article, until I found the book mentioned in Al-Khwarizmi's biography [1]. The book's title is "Hisab al-jabr w'al-muqabala" but no translation is given and Google's translation "Al Jaber account and interview" is not helpful. Can anyone confirm or deny the explanation I was given?

[1] http://www-history.mcs.st-andrews.ac.uk/Mathematicians/Al-Kh...

throwaway542134 · 6 years ago
iirc the title translates to something like "the Study|Art|Practice of balancing and restoring." I recall "al jabr" means "of/relating to balancing"

This source[1] states it as

>the science of restoring what is missing and equating like with like

[1] https://www.lexico.com/en/definition/algebra

throwaway542134 commented on Google Voice is killing SMS voicemail transcripts and Chrome Extension texting   androidpolice.com/2019/08... · Posted by u/gregmac
anonygler · 6 years ago
Voice is a core offering for Enterprise... and all of Google relies on it. It’s not going anywhere.
throwaway542134 · 6 years ago
So was hangouts.
throwaway542134 commented on Toshiba Introduces New Tiny NVMe SSD Form Factor   anandtech.com/show/14711/... · Posted by u/discreditable
shawnz · 6 years ago
Is it better than SD Express though, which also supports PCIe and is backwards compatible with existing cards?
throwaway542134 · 6 years ago
I don't think the connector is the problem but the devices you connect to. RPis are notorious for having a poor lifespan due to reading/writing from the SD cards, but I think that's mostly due to the cost tier of a $30 computer.
throwaway542134 commented on Major Update of Vector Class Library   agner.org/optimize/blog/r... · Posted by u/EvgeniyZh
pdovy · 6 years ago
FMV is pretty neat but there are scenarios where it's not ideal, so I'm not surprised to see it not used in what is meant to be a lightweight high performance library.

Notably the fact that the dispatching is done at runtime means you are trading off the convenience factor for code size and running extraneous dispatching code in your critical path. Additionally I've anecdotally seen on modern Intel hardware the power heuristics can penalize you for even _speculatively_ running some of the wider instruction sets.

throwaway542134 · 6 years ago
Am I missing something? The CPU dispatching in this library is done at runtime too... I thought FMV only has a penalty on the first call?
throwaway542134 commented on 8chan goes dark after hardware provider discontinues service   theverge.com/2019/8/5/207... · Posted by u/gregmac
danharaj · 6 years ago
What you say is reasonable, and is not free speech absolutist. This isn't a No True Scotsman sort of thing. There are people on this very forum who reject out of hand any question that 8chan should be censored.

Another reply to my comment supposed my criticism means that the alternative is a Soviet surveillance state. Really?

throwaway542134 · 6 years ago
I think the point is more that there's nuance in preventing speech (like censorship) and punishing the actions as a result of speech. I get that some would call those the same thing.

In the context of 8chan, I think there's a difference between allowing people to say whatever they want online and punishing the people that use that freedom to incite violence.

The part where it gets blurry to me is the hateful rhetoric that doesn't directly call for violence, but the only logical conclusion of the position is genocidal or otherwise racial violence. Talking about "invaders" or "American cities under foreign occupation" for example.

throwaway542134 commented on Major Update of Vector Class Library   agner.org/optimize/blog/r... · Posted by u/EvgeniyZh
jey · 6 years ago
From the docs:

    1.2 Features of VCL
    ∙ Vectors of 8-, 16-, 32- and 64-bit integers, signed and unsigned
    ∙ Vectors of single and double precision floating point numbers
    ∙ Total vector size 128, 256, or 512 bits
    ∙ Defines almost all common operators
    ∙ Boolean operations and branches on vector elements
    ∙ Many arithmetic functions
    ∙ Standard mathematical functions
    ∙ Permute, blend, gather, scatter, and table look-up functions
    ∙ Fast integer division
    ∙ Can build code for different instruction sets from the same source code
    ∙ CPU dispatching to utilize higher instruction sets when available
    ∙ Uses metaprogramming to find the optimal implementation for the selected instruction set and parameter values of a given operator or function
    ∙ Includes extra add-on packages for special purposes and applications
(Tldr: this is for CPU vectors and isn't directly comparable to a linear algebra library like Eigen.)

throwaway542134 · 6 years ago
> ∙ CPU dispatching to utilize higher instruction sets when available

What's the advantage of hand rolled CPU dispatching over compiler intrinsincs like function multiversioning in GCC/Clang?

throwaway542134 commented on Major Update of Vector Class Library   agner.org/optimize/blog/r... · Posted by u/EvgeniyZh
snowAbstraction · 6 years ago
Why would I choose this over http://eigen.tuxfamily.org/ or https://bitbucket.org/blaze-lib/blaze/src/master/ ?

I am just curious.

throwaway542134 · 6 years ago
If you don't actually need higher level math functions or it's prohibitive to implement something at the higher level. For example if you have an operation where you know the sparse-ness(?) of a matrix at compile time but the values of the matrix can change, you may want to implement the matrix multiplications by hand using SIMD ops.
throwaway542134 commented on DM48 Digital Chromatic Harmonica   lekholminstruments.com/... · Posted by u/troydavis
calibas · 6 years ago
"Low latency" is still like 10-20ms, which is very noticeable for a professional musician.
throwaway542134 · 6 years ago
Everyone should record a video of themselves reading text aloud, while playing the audio back at a 5-20ms delay into their headphones. It's hilarious!

Same thing happens when you play an instrument.

u/throwaway542134

KarmaCake day24July 30, 2019View Original