Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
mmerickel
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
mmerickel
20d ago
This level of entitlement is the reason that FOSS has a maintenance / support epidemic. Maintainers don't owe you anything. They put the work in, not you.
2.
▲
by
mmerickel
9mo ago
Connect on your phone or other device. Connect to travel router. Clone the mac address of your device. Connect router to wifi. Adjust device to not auto login. Good to go.
3.
▲
by
mmerickel
1y ago
This is just flat-out untrue, OIDC or SAML plus SCIM should be the default for any enterprise-focused service provider or "you're doing it wrong". You can offer your own IDP as the default, but all of the problems that need t
4.
▲
by
mmerickel
2y ago
It's really fun when your ISP starts using CG-NAT as a security feature in marketing. You ask them for a static IP and they have you sign an agreement that you won't be getting the BENEFITS of their CUSTOMER FIREWALL. Yeah ok, so
5.
▲
by
mmerickel
2y ago
Remember even if timestamps may be generated using a monotonically increasing value that does not mean they were committed in the same order to the database. It is an entirely separate problem if you are trying to actually determine what ro
6.
▲
by
mmerickel
2y ago
I'm a huge proponent of using SQLite as an abstraction over a filesystem. One warning I will note though, is be aware that a SQLite database does not shrink unless you vacuum it (basically copies the data into a separate file and delet
7.
▲
by
mmerickel
4y ago
SQLAlchemy and your efforts are so amazing and appreciated. Thank you and the team for all of your hard work on 2.0 as well as the heroic effort that was put into 1.4 as a stepping stone for existing codebases!
8.
▲
by
mmerickel
4y ago
To be fair they are quite up front when you stake Ethereum that you cannot withdraw it before the network itself supports it... Hope they re-activate your account though!
9.
▲
by
mmerickel
4y ago
That's for using macOS input devices to control iPadOS. I was interested in using something on my phone to control my mac. From what I can tell "Switch Control" is probably it, but it looks pretty tricky to setup so far!
10.
▲
by
mmerickel
4y ago
Is there anything like this on iOS for controlling macOS?
11.
▲
by
mmerickel
5y ago
I have plenty of shortcuts that work on iOS but don't work on macOS. It's fun when you use siri on the mac and it tells you it can't do something halfway through.
12.
▲
by
mmerickel
5y ago
The promise of thread versus reality I feel will be a big problem - I'd love to be wrong though. I'm on the outside of things (haven't used thread, only read about it... use zigbee a lot though). But the way I understand it i
13.
▲
by
mmerickel
5y ago
There's an open issue to try to enable it - Gitlab issues a unique JWT to every pipeline but it's not directly consumable by AWS right now so you'd have to write an intermediate service that could convert the gitlab token int
14.
▲
by
mmerickel
6y ago
My project, hupper [1], isn't hot reloading but it's worth mentioning in this thread alongside other code reloaders. It is a general purpose tool to monitor python code and reload the process when code changes. You can use it with
15.
▲
by
mmerickel
6y ago
Quite a few of these packages have undergone significant backward-incompatible changes over the years and are intertwined with specific version ranges of other packages. The churn complaints are caused by the cadence of this happening and h
16.
▲
by
mmerickel
6y ago
It seems like something could be written around useRecoilCallback() to watch/get the current value of an atom outside of a React component. Does that sound right?
17.
▲
by
mmerickel
6y ago
Is there any support for changing multiple atoms at once / batch? This is where reducers shine to me - dispatching a single action from the ui in redux that multiple reducers can listen to and use to update their state. Also is there a
18.
▲
by
mmerickel
6y ago
The distinction is whether the resource is owned by another tenant or not. Often a user can view a resource but aren't allowed to edit it, at which point 403 is correct. However if it's something owned by another tenant entirely,
19.
▲
by
mmerickel
9y ago
Yep, until we eventually move everything into `pyproject.toml` which is explicitly documented to support `[tool.foo]` config namespaces. https://www.python.org/dev/peps/pep-0518/
20.
▲
by
mmerickel
9y ago
I'll take a chance to plug `vrun` https://pypi.org/project/vrun/ here as well which is a very lightweight wrapper around activate that only applies to the current command. You can use it to start a subshell i
21.
▲
by
mmerickel
9y ago
If you want readonly access using dot notation instead of keys then I have a simple gist [1] I use that works well for tracking nested dicts - even nested inside lists. It's a good way to pass a dict into a function expecting an object
22.
▲
by
mmerickel
10y ago
If you install the client there is an "i" info button in the upper right of chat that allows you to add participants.
23.
▲
by
mmerickel
10y ago
> And the developers seem to think this is totally ok. To be clear the core maintainer-ship of pyramid is about 2-3 people. We would love more contributors to the core codebase, but with that level of commitment we're obviously not
24.
▲
by
mmerickel
10y ago
2010 was a major transition for pyramid as it was re-branded from repoze.bfg and merged with the pylons project.
25.
▲
by
mmerickel
10y ago
This is awesome. I ran it on pyramid for fun. http://imgur.com/a/KZ9KR
26.
▲
by
mmerickel
10y ago
The fundamental issue is that you should not be exposing the encryption keys to the database. If you're using pgcrypto then you're issuing SQL statements in the database with the key. You should do your encryption client-side so
27.
▲
by
mmerickel
10y ago
After listening to the call it does seem like Apple didn't do due diligence and notify all parties involved. They notified the owner of the dev account, but not the owner of each account that was going to be deactivated. Doing this cou
28.
▲
by
mmerickel
10y ago
I believe a channel can only have one receiver and one sender, no? So you can't share the channel between multiple workers.
29.
▲
by
mmerickel
10y ago
That depends on a lot of factors. The advantage of an approach like this is that every package is built in a clean-room container independent of the host. For example my host is os x and I'm building binary tarballs to run on ubuntu. I
30.
▲
by
mmerickel
10y ago
The idea is actually to do something similar to a heroku buildpack where you have a container with build tools that generates binary assets. You then inject the built binary into a new image that has only runtime dependencies installed. I&#
More ›