HN user

gourneau

2,743 karma

http://josh.gourneau.com I am a belt buckle engineer http://tnbelt.com

I am also an enthusiast of Python, Django, Linux, and mobile devices.

Posts138
Comments276
View on HN
github.com 3y ago

Brex's Prompt Engineering Guide

gourneau
3pts0
aws.amazon.com 3y ago

Finch: An Open Source Client for Container Development from AWS

gourneau
1pts0
books.google.com 5y ago

Google Talk to Books

gourneau
1pts0
lightproxy.org 6y ago

LightProxy – Cross platform Web debugging proxy

gourneau
2pts0
tensorspace.org 7y ago

TensorSpace.js 3D neural network visualization

gourneau
3pts0
cryptobabyname.com 8y ago

Crypto Baby Name – Help name my friend's kid using Ethereum smart contracts

gourneau
5pts1
github.com 9y ago

Use TensorFlow and computer vision to hide HN when you boss is near

gourneau
3pts0
medium.com 9y ago

Cancer Moonshot Task Force

gourneau
2pts0
mirai.veriny.tf 9y ago

Kyōkai a fast asynchronous Python server-side web microframework

gourneau
14pts0
techcrunch.com 9y ago

Polybit's Standard Library allows developers to publish functions to the cloud

gourneau
6pts0
github.com 10y ago

Pokémon GO API in Python

gourneau
3pts1
www.undefine.ca 11y ago

Symphony #2 for dot matrix printers

gourneau
2pts0
www.patternfly.org 11y ago

PatternFly – Open Interface Project for the Enterprise

gourneau
1pts0
www.ansible.com 11y ago

Ansible 1.8 Now Released

gourneau
10pts0
github.com 11y ago

Turn your PostgreSQL queries into Charts

gourneau
3pts0
rattic.org 12y ago

RatticDB – A open source password management service written with Django

gourneau
2pts0
www.slideshare.net 12y ago

Efficient Django QuerySet Use [slides + audio]

gourneau
1pts0
www.youtube.com 12y ago

The show Bill Nye the Science Guy is 20 years old today

gourneau
2pts1
pypi.python.org 12y ago

Pyquery: a jquery-like library for python

gourneau
3pts0
www.youtube.com 13y ago

The Sound of Quicksort

gourneau
3pts0
allthingsd.com 13y ago

Full D11 Interview with Elon Musk

gourneau
1pts0
goldenrecord.org 13y ago

Contents of the Voyager Golden Record

gourneau
1pts0
lesswrong.com 13y ago

Maximizing Your Donations via a Job

gourneau
2pts0
heather.cs.ucdavis.edu 13y ago

The H-1B work visa is fundamentally about cheap, de facto indentured labor.

gourneau
3pts0
deepakbala.me 13y ago

Analyzing H1B data with Python and Pandas

gourneau
1pts0
vimeo.com 13y ago

PyData Silicon Valley 2013 videos

gourneau
4pts0
github.com 13y ago

Pg_activity - top like application for PostgreSQL server activity monitoring.

gourneau
5pts0
www.cockos.com 13y ago

Record screen captures directly to GIF with LICEcap for Windows and OS X

gourneau
2pts0
opensourcehacker.com 13y ago

Creating animated GIF screen captures on OSX

gourneau
1pts0
github.com 13y ago

Go-rest A small and evil REST framework for Go

gourneau
2pts0

I’m working with several Postgres databases that share identical schemas, and I want to make their data accessible from a single interface.

Currently, I’m using Postgres FDWs to import the tables from those databases. I then create views that UNION ALL the relevant tables, adding a column to indicate the source database for each row.

This works, but I’m wondering if there’s a better way — ideally something that can query multiple databases in parallel and merge the results with a source database column included.

Would tools like pgdog, pgcat, pganimal be a good fit for this? I’m open to suggestions for more efficient approaches.

Thanks!

Here's hoping LLMs stick to the naming trend used for telescopes like the ELT:

• Large Telescopes → Large Language Models (LLM): Solid start, foundational capabilities.

• Large Telescope (VLT) → Very Large Language Models (VLLM): Major upgrade in size and skills.

• Giant Telescopes → Giant Language Models (GLM): Multimodal, smarter and more specialized.

• Extremely Large Telescope (ELT) → Extremely Large Language Models (ELLM): Expert-level, cross-domain.

• Overwhelmingly Large Telescope (OWL) → Overwhelmingly Large Language Model (OWLLM): Theoretical AGI, huge power, ethical dilemmas.

Thanks Eli! Almost 15 years ago learned a lot about Python GUI work from your blog. Some of your examples helped me write some software for NASA!

Wi Flag (2002) 3 years ago

I also loved this game it was my first MMO, and in many ways was so ahead of its time. I still dream about it occasionally.

Gail.com FAQ 4 years ago

From the page source :)

  <!-- Okay, if you really want to see a photo of my cat and have resorted to looking at the source HTML, here is a photo: https://gail.com/boxcat.jpg -->

I love my M1 for development, I have a work M1, and I like it so much I am getting M2 for person use.

I had 2 main issues at first, but they are both resolved. One, if you want to use arm native Python conda now supports arm which is great. The second issue was docker, but it turns out that docker has qemu built in. here is an example of how to use x86 docker images on a M1 Mac.

     docker run -it --platform linux/amd64 ubuntu bash

Is anyone else getting this warning? I am using macOS 12.3.1, iTerm2 3.4.15 and bash 3.2.57(1)

bash: trap: __bp_install: invalid signal specification

TIL that time can also output max memory use, and IO use very useful!

Like they do here:

/usr/bin/time -o performance.log -a -f"%e\t%M\t%x\t%C"

%e (Not in tcsh.) Elapsed real time (in seconds).

%M Maximum resident set size of the process during its lifetime, in Kbytes.

%x (Not in tcsh.) Exit status of the command.

%C (Not in tcsh.) Name and command-line arguments of the command being timed.