Viewing profile — lmcnearney
lmcnearney
HN member- Joined
- Mon, Jan 28, 2013, 7:13 PM UTC
- HN karma
- 8
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About lmcnearney
https://mcnearney.net
https://stackoverflow.com/users/25549/lance-mcnearney
https://github.com/lmcnearney
Recent public activity
-
comment
Comment #33871208
It's pretty similar to Netlify's per-user pricing and team limits. Which is ironic as we moved some our sites away from Netlify over to Render due to that pricing change and now th…
-
comment
Comment #25460122
I would be careful depending on Keycloak given what happened with CentOS recently: - https://www.gluu.org/blog/keycloak-is-the-next-centos/
-
comment
Comment #22886150
I used this Python library to create a TOTP for my bank’s Symantec VIP login: https://github.com/dlenski/python-vipaccess I then can store it in my 1Password which provides the new…
-
comment
Comment #22517639
I’ve inherited code bases that migrated from SVN to Git without converting and bringing over the old revisions. This has resulted in a number of times where I hit a cliff when tryi…
-
comment
Comment #21127701
Armor Games | Part-time/Freelance Front-End Web Developer | Irvine, CA | ONSITE or REMOTE Armor Games is a online community for casual gamers. We offer an online destination hostin…
-
comment
Comment #19800966
Armor Games | Part-time/Freelance Web Developer | Irvine, CA | ONSITE or REMOTE Armor Games is a online community for casual gamers. We offer an online destination hosting over a t…
-
comment
Comment #19800927
SEEKING FREELANCER | Armor Games | LAMP Web Developer | Irvine, CA or Remote Armor Games is in need of a part-time/freelance web developer who can dedicate 1-2 days a week toward r…
-
comment
Comment #10492655
Reloaded Games, Inc. | Huntington Beach, CA | Onsite Senior Software Developer - Platform Reloaded Games develops and publishes high-quality free-to-play MMOs for a global audience…
-
comment
Comment #10155176
Reloaded Games, Inc. | Huntington Beach, CA | Onsite Senior Software Developer - Platform Reloaded Games develops and publishes high-quality free-to-play MMOs for a global audience…
-
comment
Comment #9997405
Reloaded Games, Inc. | Huntington Beach, CA | Onsite Senior Software Developer - Platform Reloaded Games develops and publishes high-quality free-to-play MMOs for a global audience…
-
comment
Comment #9813058
Reloaded Games | Huntington Beach, CA | On-site, Full time We are a free-to-play video game company whose titles include APB: Reloaded, Hawken, and Fallen Earth. Software Engineer …
-
comment
Comment #7833754
Location: Irvine, CA (Orange County), Local/Remote, Full Time Stack: C#, PHP, Python Resume: http://goo.gl/0nUe9A Contact: Please see my website or profile for my e-mail address. I…
-
comment
Comment #5822901
It's really going to depend on your group of players. There's a wide variety of board and card games available with different mechanics and play styles. I can recommend Race for th…
-
comment
Comment #5669680
Another note: Packages provided by Ubuntu use /etc/nginx/sites-available/ and /etc/nginx/sites-available/ for storing site configs but the package directly from Nginx stores config…
-
comment
Comment #5440758
"The bit about dependencies is most interesting to me. In PHP, the problem of dependencies is offloaded to Apache, and by extension the server host. PEAR helps a lot, but even that…
-
comment
Comment #5440727
Look at php-fpm (FastCGI process manager) which has been bundled with PHP 5.3+. On the nginx side, you would configure it to use fastcgi_pass. An example configuration is available…
-
comment
Comment #5440655
You would also want to install an opcode cache like APC, XCache, etc. That way the code is only compiled on the first page load. http://en.wikipedia.org/wiki/List_of_PHP_accelerato…