Viewing profile — mmerickel
mmerickel
HN member- Joined
- Mon, Aug 29, 2011, 4:19 PM UTC
- HN karma
- 147
- Public activity
- 56 items
- HN profile
- View on Hacker News ↗
About mmerickel
Recent public activity
-
comment
Comment #46372293
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.
-
comment
Comment #44955784
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…
-
comment
Comment #43273290
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…
-
comment
Comment #42576848
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 sepa…
-
comment
Comment #41968073
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 (b…
-
comment
Comment #34542166
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…
-
comment
Comment #31624640
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!
-
comment
Comment #31386112
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…
-
comment
Comment #31386074
Is there anything like this on iOS for controlling macOS?
-
comment
Comment #30545606
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.
-
comment
Comment #30376268
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…
-
comment
Comment #28539428
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 se…
-
comment
Comment #26039366
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 …
-
comment
Comment #24367318
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 …
-
comment
Comment #23183816
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?
-
comment
Comment #23183355
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 l…
-
comment
Comment #22850157
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…
-
comment
Comment #15355215
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/
-
comment
Comment #15203498
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 …
-
comment
Comment #14274983
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…
-
comment
Comment #13601764
If you install the client there is an "i" info button in the upper right of chat that allows you to add participants.
-
comment
Comment #13437199
> 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, bu…
-
comment
Comment #13116396
2010 was a major transition for pyramid as it was re-branded from repoze.bfg and merged with the pylons project.
-
comment
Comment #13112839
This is awesome. I ran it on pyramid for fun. http://imgur.com/a/KZ9KR
-
comment
Comment #12866087
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 k…