shollyethan, to selfhosted
@shollyethan@fosstodon.org avatar

Just published a new article in my alternatives series focused on viable replacements for :

https://selfh.st/alternatives/airtable/

As usual, let me know if I missed anything or if you have any feedback on the article/series!

dirkdierickx, to programming
@dirkdierickx@mastodon-belgium.be avatar

#TodayInHistory 1984 - Ashton-Tate introduces the dBase III relational #database program for IBM PC-compatible computers.

dBase was one of the first database management systems for microcomputers and the most successful in its day. The dBase system included the core database engine, a query system, a forms engine, and a #programming language that tied all of these components together.

#retrocomputing

clairegiordano, to PostgreSQL
@clairegiordano@hachyderm.io avatar

Hello to those of you who went to #PGDayChicago (organized by the amazing Henrietta Dombrovskaya) here are my slides.

The conference was so much fun! 🎉🐘 I was honored to give this talk & spend time w/#PostgreSQL & #Microsoft friends

🎤 Map of Amazing Postgres Extensions You Might Not Know About 🎤

#Postgres #OpenSource #database #conference

https://speakerdeck.com/clairegiordano/map-of-amazing-postgres-extensions-you-might-not-know-about-claire-giordano-pgday-chicago-2024

br00t4c, to random
@br00t4c@mastodon.social avatar

Dell warns of "incident" that may have leaked customers' personal info

https://arstechnica.com/?p=2023185

JordiGH, to python
@JordiGH@mathstodon.xyz avatar

This is the first time I work for a company that I actively want to personally advertise for, but I really like what #Grist does. It's like a #spreadsheet that's really a #database and lets you use #Python as a computational language. And it's all open source!

Have some links!

https://getgrist.com

https://github.com/gristlabs/grist-core

And have some marketing materials!

The drafts were really good too:

https://docs.google.com/presentation/d/1kzmv4o2ZqRYeWPq_Y9LkS50whzcMrL_gn1zoV6EnJQA/

notsle, to random
@notsle@kzoo.to avatar

I just had to explain to our "technical" "Product Owner"
The difference between a Database Server and Database.

Now maybe im being to picky here. but shouldn't someone in charge of a product that is built around databases understand the basic functionality of Database Servers?

#development #database #dba

aral, to javascript
@aral@mastodon.ar.al avatar

Just published a minor update (version 5.1.1) to JavaScript Database (JSDB) that optimises the custom data type¹ serialisation code by removing a redundant return statement:

https://www.npmjs.com/package/@small-tech/jsdb

This change is backwards compatible and shouldn’t require and updates to your projects, including the ones you have in Kitten (which uses JSDB internally).

¹ https://codeberg.org/small-tech/jsdb#custom-data-types
² https://codeberg.org/kitten/app

#JavaScriptDatabase #JavaScript #database #JSDB #Kitten #SmallWeb #NodeJS #web #dev

orsvarn, to rust
@orsvarn@peoplemaking.games avatar

I’m writing a “database” lib where each entry is a file, to avoid having to load the entire DB for most operations.

I think it might be a good fit for the rewrite of my time tracking app. 🤔

Writing this DB feels illegal. Please let me know why this won’t work. 😆

#RustLang #Database

davidbisset, to random
@davidbisset@phpc.social avatar

🤦🏻‍♂️

"A local authority has announced it will ban apostrophes on street signs to avoid problems with computer systems" (#database issues).

https://www.bbc.com/news/uk-england-york-north-yorkshire-68942321

peter, to random
@peter@area51.social avatar

They should be sanitising their database inputs rather than change the input data!

"A local authority has announced it will ban apostrophes on street signs to avoid problems with computer systems."

North Yorkshire Council to phase out apostrophe use on street signs - BBC News
https://www.bbc.co.uk/news/uk-england-york-north-yorkshire-68942321

#database #bobbyTables

aral, to javascript
@aral@mastodon.ar.al avatar
br00t4c, to random
@br00t4c@mastodon.social avatar
aral, to programming
@aral@mastodon.ar.al avatar

JSDB 5.0.0 published 🎉

• Custom classes must have a constructor that accepts a parameter object as its only argument. Constructors are run during deserialisation.

• Custom classes can now safely extend other classes (e.g., EventEmitter).

• Properties that begin with an underscore (_) are treated as private and ignored.

• Objects with null prototypes are supported. i.e., objects created with Object.create(null, …).

Full details: https://codeberg.org/small-tech/jsdb#migrating-from-earlier-versions-of-jsdf

aral,
@aral@mastodon.ar.al avatar

JSDB 5.0.1 published 🎉

• Fixes : Crash if DataProxy getHandler() called on object with null prototype. (https://codeberg.org/small-tech/jsdb/issues/14)

To install update:

npm install @small/jsdb@5.0.1

Learn more about JSDB:

https://codeberg.org/small-tech/jsdb#javascript-database-jsdb

JSDB

aral,
@aral@mastodon.ar.al avatar

JSDB 5.1.0 published¹ 🎉

• Forgetting to pass a custom class that’s persisted in your database in your JSDB.open() call now throws instead of corrupting your database by falling back to using an untyped object.

• Added JSDF ver. 2 to 3 database migration script (i.e., JSDB version 2-4 to 5)²

To install update:

npm install @small/jsdb@5.1.0

¹ https://codeberg.org/small-tech/jsdb/releases

² https://codeberg.org/small-tech/jsdb#version-2-to-3

#JavaScriptDatabase #JavaScript #database JSDB #JSDB5 #NodeJS #SmallTech #SmallWeb #web #dev

aral, to javascript
@aral@mastodon.ar.al avatar

100% test coverage doesn’t mean your code’s bug free but it did just lead me to find and fix an issue in JavaScript Database (JSDB)¹ with a code path that wasn’t being hit that I would have otherwise missed because it was causing the relevant test to pass.

¹ JSDB is a zero-dependency, transparent, in-memory, streaming write-on-update JavaScript database for the Small Web that persists to a JavaScript transaction log (an append-only log).

https://codeberg.org/small-tech/jsdb

#JavaScript #database #JSDB

aral,
@aral@mastodon.ar.al avatar

To really drive home the above 👆 point that 100% test coverage does not mean ‘bug free’, just found a bug in JSDB¹ 5.0.0 where running JSON.stringify() on a complex custom object (actually: the automatic Proxy of the custom object created by JSDB) results in an error.

Already have a failing test and about to implement fix.

(It’s at this point where the test harness is invaluable.)

¹ https://codeberg.org/small-tech/jsdb

#JavaScriptDatabase #JavaScript #database #JSDB #JSDB5 #NodeJS #SmallWeb #SmallTech

br00t4c, to random
@br00t4c@mastodon.social avatar

From Chiapas to Tamaulipas, new database maps thousands of migrants' dangerous journeys through Mexico in trailer trucks

#data #database

https://www.icij.org/inside-icij/2024/04/from-chiapas-to-tamaulipas-new-database-maps-thousands-of-migrants-dangerous-journeys-through-mexico-in-trailer-trucks/

jezlyn, to fountainpens
@jezlyn@mastodon.social avatar
janriemer, to Redis

Open Source will always win!

https://github.com/valkey-io/valkey

"A new project to resume development on the formerly open-source Redis project. We're calling it , since it's a twist on the key-value datastore."

kris_inwood, to history
@kris_inwood@mas.to avatar

Data infrastructure for Canada

Attractive new tool to map census data since 1951 at https://edumaps.esri.ca/census/
New polygon files for historic census data at
https://hgiscanada.usask.ca/download
And the historical census microdata are coming soon https://thecanadianpeoples.com

@economics @demography @socialscience @sociology @politicalscience @geography @anthropology @econhist @devecon @archaeodons

br00t4c, to random
@br00t4c@mastodon.social avatar

Progressive International unveils database exposing global right-wing network threatening democracies

#database

https://www.nationofchange.org/2024/04/19/progressive-international-unveils-database-exposing-global-right-wing-network-threatening-democracies/

br00t4c, to random
@br00t4c@mastodon.social avatar

Cybercriminals threaten to leak all 5 million records from stolen database of high-risk individuals

#database #time

https://go.theregister.com/feed/www.theregister.com/2024/04/19/cybercriminals_threaten_to_leak_all/

pkw, to random
@pkw@mastodon.sdf.org avatar

Anybody recommend a free or open source database that can do vectors?

I use elasticsearch at work and would like to duplicate or imitate what it can do with vector indexes on my own.

#vectordb #database

frankel, to streaming
@frankel@mastodon.top avatar
  • All
  • Subscribed
  • Moderated
  • Favorites
  • megavids
  • thenastyranch
  • rosin
  • GTA5RPClips
  • osvaldo12
  • love
  • Youngstown
  • slotface
  • khanakhh
  • everett
  • kavyap
  • mdbf
  • DreamBathrooms
  • ngwrru68w68
  • provamag3
  • magazineikmin
  • InstantRegret
  • normalnudes
  • tacticalgear
  • cubers
  • ethstaker
  • modclub
  • cisconetworking
  • Durango
  • anitta
  • Leos
  • tester
  • JUstTest
  • All magazines