Hacker Newsnew | past | comments | ask | show | jobs | submit | account-5's commentslogin

Have they fixed the backdoor yet?

https://news.ycombinator.com/item?id=43443494


If you go through the issues and the discussions, linked in the article that you yourself linked, you'll see that the devs addressed the backdoor and privacy issues.


Ok.


As far as I know, yes.


You can actually do this, as a fob, but you have to buy one from a vending machine in the gym. Remembering the pin is easier.


I love reading about this sort of thing. My personal solution to the issues with the app and the wait for it to work (if it worked) was to memorize the pin. I believe I'm still quicker getting in than even the OPs solution, and with less hassle too since I don't need a device or any services.


As someone who knows SQL and doesn't develop with (Java|Type)Script this looks way more verbose and confusing.


> Did you know that we provide flexible and robust data acquisition hardware and software that can be used for testing satellites, rockets, airplanes, or helicopters in the air, in space, or on the ground? Our solutions are used and trusted by leading aerospace companies. Contact us to learn more.

Interesting article for a sales pitch. Nicely done.


It'll not be long before the UK gov add crying to the online safety bill, so enjoy this while you can, people of the UK.


You got a license for that free speech there gov?


Be careful, I'd hate for your comment to misconstrued as one talking poorly of the government or government officials.


I'm assuming, since it's a binary encoded, the textual output would not be something you'd like to look at.


Why? I’m comfortable reading 0x48 0x65 0x78 0x61 0x64 0x65 0x63 0x69 0x6D 0x61 0x6C


With a table explaining what the byte codes mean? Absolutely I want to see that.


People look at TCP packets all the time.


In which format? As a list of 1s and 0s; in hex? TCP or IP if I just pasted the textual version of any binary data id captured without some form of conversion it's not good to look at. Especially if it's not accompanied by the encoding schema so you can actually make sense of it.


The encoding schema are also present for XML and JSON, but not CBOR, so yes, that’s another gap if the book is intended for a technical audience.


This and the many other stories like this is why none of these companies has any of my data.


I feel like I keep harping on about Nushell but as scripting languages go it's right up there for me. Built with rust too and comes with a ton of stuff built in.

What's the niche this fills? I came across roc-lang recently which seemed interesting too, again built with rust, and opinionated on certain things common in older languages.

It doesn't have to, and obviously it's your project, but what is this offering over other languages. Why would I reach for it?


I hadn't really looked at Nushell, but it (process control) is definitely something I plan to improve in Aria (https://github.com/egranata/aria/issues/21). Right now I have a simple system() wrapper, but not much in terms of advanced subprocess control. Maybe worth investing some time in cleaning up?

I have tried to fill the niche of "scratch my itches, please", which means Aria is intended to feel smooth, pleasant and simple to write in. There are still things I want to improve before calling it a 1.0, but the general theme is, a general purpose scripting language with just enough structure and as little ceremony as possible.

It may be that I struck the wrong balance somewhere (and I know of a few places, e.g. operator overloading - I plan to rewire the syntax), and that would be great to get eyes on and get feedback!


Just a side note, roc-lang is being rewritten in Zig[0]

[0] https://gist.github.com/rtfeldman/77fb430ee57b42f5f2ca973a39...


I don't think it's fair to say Microsoft hijacked the curl command. It's just an alias for a powershell cmdlet. Powershell is definitely not perfect but theres less pitfalls than bash (string quoting, etc; there's loads: https://mywiki.wooledge.org/BashPitfalls). I think powershell was/is a step in the right direction, but in that respective I also think Nushell is a massive improvement on top too.

All of this is opinion though, I just prefer the stuff you get out the box you don't with bash.


I create courses that are taken on Linux and Windows.

On one hand, I love that curl is aliased to iwr, since I can tell learners to run a curl command without arguments and trust that it will work cross platform

On the other hand, iwr is a cmdlet that shortcuts the System.Net.WebRequest .NET method, which is very, very different from libcurl.

For example, the cmdlet uses one of its properties to obtain bytes downloaded so that it can display a progress bar. Unfortunately, doing this seems to be blocking, as downloads complete SIGNIFICANTLY more quickly if you add -NoProgress to the command. This break cross platform compatibility, however, which adds complexity during course development (more tests, more copy, etc)


I've been using iwr for years and didn't know that the progress bar added latency! Much appreciated.

My main point to the OP was more that it's just an alias, you can remove it and use real curl if you want.


No problem! I definitely recommend using the real thing where possible!


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: