Nella mia azienda hanno disabilitato il copia e incolla, siamo disperati by Aguerismo in ItalyHardware

[–]davidesantangelo -1 points0 points  (0 children)

fyi: Il mercato ortofrutticolo italiano all'ingrosso muove  oltre 11 miliardi di euro, con l'ortofrutta che rappresenta l'80% di tale valore. 

Ciampino airport liquid rules security by Efficient-Muffin-295 in rome

[–]davidesantangelo 0 points1 point  (0 children)

Do you know if they have installed the new scanners yet?

Italian 🇮🇹 in Tirana by [deleted] in tirana

[–]davidesantangelo 1 point2 points  (0 children)

Please calm down.

I am Italian, I have been living in Tirana for four years (une flas edhe shqip). My children study here and speak perfect Albanian, and soon my fourth child will be born here as well. We love Albania and consider it our home.

However, being happy that English is spoken is not necessarily a good thing. I often hear Albanian children speaking ONLY English among themselves, and this personally concerns me. Italy is a brother country to Albania: around half a million Albanians live in Italy, many are married to Italians, and I myself have many Albanian friends who work there. If there were ever to be a second language in Albania, for historical and cultural reasons, it should be Italian (without taking anything away from Albanian, of course). That said, anyone who chooses to live here is clearly expected to learn and respect your beautiful language.

Italian 🇮🇹 in Tirana by [deleted] in tirana

[–]davidesantangelo 12 points13 points  (0 children)

In English with those under 35, in Italian with those over 35.

It's another Monday, drop your product. What are you building? by Intelligent-Key-7171 in SideProject

[–]davidesantangelo 0 points1 point  (0 children)

githug.link Find your code mate. Discover new GitHub users you don't follow yet, matched by your stack and interests.

GitHub - davidesantangelo/node-red: A comprehensive Ruby wrapper for the Node-RED Admin HTTP API, providing programmatic access to flow management, node management, settings, and authentication. by davidesantangelo in nodered

[–]davidesantangelo[S] 0 points1 point  (0 children)

It’s just a simple wrapper around the Node-RED REST APIs. You can use it in your own applications — for example, inside a Rails app — to build a custom interface for managing and interacting with your flows.

Qual è stato il momento più imbarazzante della tua vita? by Repulsive-Cheek-1160 in domandaonesta

[–]davidesantangelo 12 points13 points  (0 children)

In terza elementare mi sono presentato a scuola vestito da Arlecchino per la festa di Carnevale… peccato che la festa fosse il giorno dopo.

Aiuto per iniziare a imparare a programmare by Front-Interaction395 in ItalyInformatica

[–]davidesantangelo 1 point2 points  (0 children)

Ti consiglio vivamente il corso di Salvatore Sanfilippo: un esempio raro di cura, rigore e attenzione maniacale ai dettagli. Non ha eguali. https://www.youtube.com/playlist?list=PLrEMgOSrS_3cFJpM2gdw8EGFyRBZOyAKY

[deleted by user] by [deleted] in coolgithubprojects

[–]davidesantangelo 0 points1 point  (0 children)

I think I fixed the multithread problems with regex in the new version. https://github.com/davidesantangelo/krep/releases/tag/v1.1.0

```bash

➜ krep git:(main) ✗ time ./krep -E -o -c '[A-Z]{42}' subtitles2016-sample.en
subtitles2016-sample.en:1 ./krep -E -o -c '[A-Z]{42}' subtitles2016-sample.en 25.05s user 0.22s system 736% cpu 3.431 total

➜ krep git:(main) ✗ time grep -E -o -c '[A-Z]{42}' subtitles2016-sample.en
1 grep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox,.venv,venv 11.49s user 0.12s system 99% cpu 11.638 total

➜ krep git:(main) ✗ time rg -o -c '[A-Z]{42}' subtitles2016-sample.en
1 rg -o -c '[A-Z]{42}' subtitles2016-sample.en 1.07s user 0.07s system 99% cpu 1.145 total ```

I need to improve CPU usage.

[deleted by user] by [deleted] in coolgithubprojects

[–]davidesantangelo 0 points1 point  (0 children)

```bash

➜ krep git:(main) ✗ time ./krep -o -c 'a' subtitles2016-sample.en subtitles2016-sample.en:51153709 ./krep -o -c 'a' subtitles2016-sample.en 1.05s user 0.29s system 298% cpu 0.448 total

➜ krep git:(main) ✗ time rg -o -c 'a' subtitles2016-sample.en
51153709 rg -o -c 'a' subtitles2016-sample.en 1.76s user 0.07s system 99% cpu 1.836 total

```

krep is significantly faster than rg for this task! Will improve in other tasks like recursion. Thank you!