Connor

@cjohnson318
34 Followers
91 Following
112 Posts
programming and painting
Webhttps://connor-johnson.com
Pronounshe/him
I have about 40GB of data in SQLite that I want to convert to a DuckDB database. I've exported the SQLite data into CSVs, but I'm unable to *build* a single file DuckDB database because DuckDB gets an Out of Memory error on this operation. Any ideas how to get around this? Should I use another technology? I have a lot of columnar data I want to manage. #duckdb
Y’all know of any history books on Asia Minor? I’d like to learn about the time between the Phrygians, through Byzantium, to the Ottomans. Thanks! #history #geopolitics #reading #books
Here's a pretty good article on using Zig from Python. The author begins by setting up a dev environment in a Docker container. https://z-uo.medium.com/zig-python-easy-optimized-f64341625d04
Spirulina, or 'Aztec cheese,' is Mexico’s pre-Hispanic superfood

This miraculous micro-algae was consumed regularly by the Aztecs as a common source of protein harvested from Lake Texcoco.

Mexico News Daily

@ParanoidFactoid

Like I've been saying: The Republican Party is no longer an American political party.

It is a Confederate Party.

Its explicit aim is to restore the pre-Civil War era in law, politics, and social policy.

Do not vote for the GOP for **anything.**

Do not vote 3rd Party or for your favorite vanity candidate.

Vote for Democrats up and down the ballot.

Yes, no matter how pissed off you are at them.

“The real problem of humanity is the following: we have Paleolithic emotions, medieval institutions, and god-like technology.”

— E. O. Wilson

Want to open a log file at the very end? Try `less +G <filename>`.

Synth genius Wendy Carlos studied physics & music at Brown & Columbia. She helped develop the 1st Moog synthesizer & her 1968 classical album Switched-On Bach went platinum. She brought #music & tech together & composed soundtracks for A Clockwork Orange, The Shining, Tron & more.

Carlos was assigned male at birth & transitioned to female. Unfortunately, many journalists focus more on her gender than her accomplishments that changed music forever. http://www.wendycarlos.com

Wendy Carlos HomePage

The Official Wendy Carlos HomePage. The definitive Web collection of information about the pioneer synthesist and composer (and solar eclipse photographer), including a "Write Wendy" Maildrop.

This "lol, what" moment is from actual #cypress #js test code manipulating a #primevue frontend. Why do I need to hit "enter" after typing "2" in an input field?

```js
cy.getBySel('design-create-form-field-stage')
.find('input')
.type("2{enter}", {force: true}) // lol, what
cy.getBySel('design-create-form')
.submit()
```

Finding a bearing from lat/lng pairs in #python

```python
import pyproj
geodesic = pyproj.Geod(ellps='WGS84')
fwd_azimuth, back_azimuth, distance = geodesic.inv(lng1, lat1, lng2, lat2)
```