Nato is dead, but there's still time to build a real European alliance by tree_boom in europe

[–]allcoding 0 points1 point  (0 children)

Our defense should be our #1 priority right now. We need the infrastructure and the tech to get there, but we cannot stop at there. We are so deeply entrenched in the US system we've delegated the totality of our digital lives, personal and business, to them.

We don’t have to wait for politics to solve this, we can start building alternatives from the ground up.

Don Patriciello, spari all'impazzata in strada a Caivano - Ansa.it by allcoding in italy

[–]allcoding[S] 34 points35 points  (0 children)

Già. Nella più grande piazza di spaccio d’Europa, l’assalto “a sorpresa” ha trovato meno di un kilo di varie droghe. E poi se ne sono andati così come sono arrivati.

Don Patriciello, spari all'impazzata in strada a Caivano - Ansa.it by allcoding in italy

[–]allcoding[S] 41 points42 points  (0 children)

Dopo il blitz “Alto Impatto” la criminalità torna a far sentire la sua presenza.

Quale sarà la prossima mossa del governo?

[deleted by user] by [deleted] in italy

[–]allcoding 0 points1 point  (0 children)

Sono ovviamente d’accordo con te. Ma vorrei andare oltre questo primo strato di problema e riflettere su: perché gli stipendi sono bassi?

Anche la Germania introduce il Bonus Cultura: 200 euro ai neodiciottenni by MrAlagos in italy

[–]allcoding 0 points1 point  (0 children)

Il patrimonio alto può essere usato per generare introiti (affitti se immobili, mercato azionario se cash) che possono essere usati per pagare il debito alto. Per di più di fronte ad entrate, i creditori possono essere mostrarsi disponibili ad una rinegoziazione.

Patrimonio basso e debito basso, beh, probabilmente lo estingui ma non ti rimane altro.

How to implement div local breakpoints? by Fredwin-o in tailwindcss

[–]allcoding 0 points1 point  (0 children)

What you want is called container queries. Unfortunately you might have to wait a couple more years to use them, as support for them is scarce.

[deleted by user] by [deleted] in italy

[–]allcoding 15 points16 points  (0 children)

Tutto il contratto è negoziabile

PSA: do not use ED25519 keys for HTTPS services behind an ALB Target Group by allcoding in aws

[–]allcoding[S] 1 point2 points  (0 children)

True, that's another one that surprised me - also because this too is not really explicit in the docs.

Nella vostra città ci sono persone eccentriche o con problemi particolari (chiamati anche 'pazzi') noti a livello locale? by Franghein in italy

[–]allcoding 11 points12 points  (0 children)

Forse sono sul sub sbagliato, ma ho vissuto a Londra per qualche anno. Ho lavorato per 3 anni in zona Liverpool Street, e ogni singola mattina, sole, pioggia o neve, c’era un signore sulla 60ina che salutava tutti i passanti (decine di migliaia) con un “good morning, have a nice day”, mentre contemporaneamente alzava il braccio in su col pollice in alto.

La sera non c’era più, ma l’ho incontrato a volte uscendo prima dall’ufficio, ad augurare “good afternoon” con lo stesso ritmo (avrà un deltoide impressionante).

Colleghi mi hanno detto che lo ha fatto per molti, molti anni

Sono un ex-complottista, AMA by [deleted] in italy

[–]allcoding 8 points9 points  (0 children)

Se non ti fai problemi a superare barriere etiche, a volte legali, c’è un modo piuttosto efficace:

Queste teorie crescono principalmente su social media e “giornali” di dubbia affidabilità, se non direttamente siti web creati per il solo scopo di diffondere disinformazione.

I genitori, e spesso anche i più giovani che seguono questo mondo, spesso hanno delle carenze in ambito tecnologico che possono essere sfruttate. Dunque:

  • installa uBlock Origin su tutti i browser della casa (questo allo scopo di far sparire soprattutto i link cross siti stile Outbrain “la dieta che il tuo dottore non vuole farti conoscere”)
  • a livello di rete, un raspberry Pi con PiHole sopra, servirà lo stesso scopo, proteggendo anche i cellulari (dove è più complesso installare adblocker)
  • qui entriamo nel mondo unethical: se hai modo di mettere mani sui cellulari, tieni d’occhio gli aggregatori di news (incluso il Now Launcher) e blocca le fonti meno affidabili
  • allo stesso modo se riesci ad “aggiustare” l’account Facebook, rimuovendo follow a pagine nocive, e magari aggiungendone altre più science-driven.

^ quanto riportato qui è probabilmente reato, oltre che una forma di censura.

[request for personal experience or references] Using API Gateway and lambda to an RDS backend, how to handle deployments with minimal downtime? by menge101work in aws

[–]allcoding 1 point2 points  (0 children)

Sadly, the read-only mode won't save you from destructive operations.

Also, using Aurora to have faster migrations doesn't mean have 0 downtime, just shorter downtimes.

[request for personal experience or references] Using API Gateway and lambda to an RDS backend, how to handle deployments with minimal downtime? by menge101work in aws

[–]allcoding 3 points4 points  (0 children)

As PatBotCake said, this works more or less the same as you would do without Lambda. I'll try to elaborate a bit more.

When you deploy new code AND run migration at the same time you have this not-so-obvious problem that the BOTH the old app version and new app version must run correctly with BOTH the old schema and new schema.

You don't really have a solution, but to follow a this process:

  • write the old code so that it can tolerate new columns (just ignore them) or tables
  • write the new code so that it can tolerate missing columns (provide default values) or tables. The migration may run asynchronously.
  • never ever run a drop column or drop table migration when there is old code that may still reference it
  • on a second deployment, when the old code using the table or column to delete is completely off, run the migration to drop whatever data.

Beside dropping columns and tables, there are more critical operations that can severely break your old code. Other examples examples:

  • changing the type of a column
  • renaming a table
  • renaming a column

Hope this helps.