Search
1000 results for “trofi”
-
Today's bug is an `mbedtls` bug: https://github.com/Mbed-TLS/mbedtls/issues/9814
There `mbedtls` used uninitialized data in `HMAC` code. The bug is exposed by `gcc-15` optimization to initialize less when handling unions in code like:
union {
int dummy;
struct { int fs[4]; } s;
} v = { 0 };
return v.s.fs[3];`gcc-14` used to always return `0` here. `gcc-15` returns garbage.
I wrote a few extra words at https://trofi.github.io/posts/328-c-union-init-and-gcc-15.html to look at the breakage mechanics.
-
Needed a simple way to tunnel SSH connection over HTTPS recently.
It should be trivial, but internets somehow mostly care about sharing SSH and HTTPS on the same port. Or do $ANY over SSH.
I wanted to completely hide the fact that I use SSH protocol. AFAIU it's easy to detect by looking at the headers.
Tunneling is supposed to be trivial but has a few caveats. Here is my attempt:
-
Negli abissi trofici del mondo, il vermiforme aspetto di un calzino alieno, altrimenti detto il churro vivente
https://www.jacoporanieri.com/blog/?p=43842#animali #creature #vermi #abissi #mare #oceano #ricerca #specie #tassonomia #generi #phylum #strano #ecologia #sopravvivenza #evoluzione #riproduzione #natura #teorie #ipotesi #organi #anatomia #predatori #carnivori
-
Negli abissi trofici del mondo, il vermiforme aspetto di un calzino alieno, altrimenti detto il churro vivente
https://www.jacoporanieri.com/blog/?p=43842#animali #creature #vermi #abissi #mare #oceano #ricerca #specie #tassonomia #generi #phylum #strano #ecologia #sopravvivenza #evoluzione #riproduzione #natura #teorie #ipotesi #organi #anatomia #predatori #carnivori
-
FDA approval of trofinetide may spur further drug development for Rett
https://www.spectrumnews.org/news/fda-approval-of-trofinetide-may-spur-further-drug-development-for-rett/
#Rettsyndrome #mousemodels #treatments #autism #MECP2 #News -
穿越 Firewall 的作法
先看到「SSH over HTTPS (trofi.github.io)」這篇,原文「SSH over HTTPS」講怎麼利用 HTTPS 加上 CONNECT 指令穿過去。
作者有先介紹背景,他需要在醫院待個幾天,而醫院有免費的 WiFi 可以上網,但限制很多,基本上 TCP 的部分只有 80/tcp 與 443/tcp 會通,另外他有行動網路可以用 (但應該不是吃到
#Computer #Murmuring #Network #Security #Software #VPN #anyconnect #cisco #connect #dtls #firewall #https #network #openconnect #proxy #ssh #ssl #tcp #tls #udp #vpn
-
A taste of the Mediterranean lands in Idaho Falls — and it’s worth the hype https://www.diningandcooking.com/2614349/a-taste-of-the-mediterranean-lands-in-idaho-falls-and-its-worth-the-hype-2/ #AmericanFalls #CucumberYogurtDip #GreekGyro #IdahoFalls #LambWeston #Mediterranean #MediterraneanRestaurant #MediterraneanRestaurants #PitaBread #RedOnion #RettNelson #trofí
-
The 29 Best Restaurants Defining Thessaloniki’s Food Scene in 2026 https://www.diningandcooking.com/2598050/the-29-best-restaurants-defining-thessalonikis-food-scene-in-2026/ #AMVROSIA #BestRestaurants #CEVICHERIA #cuisine #DEKATRAPEZIA #dining #Duck #GreekWine #HAROUPI #ILIOPETRA #MAITRE&MARGARITA #MOLDEE #MOURGA #OLYMPUSNAOUSSA #ONORA #POSTER #Restaurants #Salonika #thessaloniki #TRIZONI #trofí #WhereToEat #Wine
-
Porén, semella que non vén a fin dos combustibles fósiles como unha ameaza. E minimizan a cuestión dos microplásticos e a contaminación da cadea trófica mariña como "fake news" 😫
-
L’abisso dei ragni che si servono di microbi per trasformare il gas metano in sostentamento https://www.jacoporanieri.com/blog/?p=42778
#animali #creature #biologia #ecologia #sopravvivenza #trofismo #studi #scienza #tassonomia #ricerca #cibo #alimentazione #batteri #sorgenti #idrotermali #idrocarburi #metano #microbi #epibionti #autotrofia
-
Diverse Grasslands Capturing the Pristine Landscapes and Unique Protagonists in the Rule of Thirds
See More Seeds: https://aidyslexic.raupulus.dev/collections/show/1744
#StableDiffusion #ai #ArtificialIntelligence #professional #wildlife-photography #diverse #grassland #natural #protagonists #rule-of-thirds #Alexy-Trofimov #pristine-environments
-
Today's `nix` bug is https://github.com/NixOS/nix/issues/15839.
There `nix` fails to build a derivation that creates files with and without `.tmp` extension:
```
__contentAddressed = true;
postBuild = ''
touch $out.tmp
touch $out
'';
``` -
Today's bug is a `systemd` build failure on `gcc-17`.
In https://github.com/systemd/systemd/pull/41956 `gcc` started enforcing the type of `__stack_chk_guard` global variable to be an `uintptr_t`. `systemd` happened to define it as `intptr_t` for `EFI` boot loader.
Proposed the fix as https://github.com/systemd/systemd/pull/41956
-
Today's bug is a `perf` hangup bug: https://lkml.org/lkml/2025/5/5/1089
There a simple `perf record -a` / `perf report` hangs up if you happen to have a `/dev/dri/renderD128` file `mmap()`ed in any of the processes. Browsers and compositors usually do have them `mmap()`ed.
-
Today's bug is an `autoconf-2.72` bug: https://savannah.gnu.org/support/index.php?110990
There `autoconf` generates invalid shell code for the following:
AS_IF([test "x$enable_termcap" = "xyes"],
AC_CHECK_LIB(terminfo, tgetent, , [
AC_CHECK_LIB(termcap, tgetent, , [
...and complains as:
./configure: line 3476: syntax error near unexpected token `;;'
./configure: line 3476: ` ;;'At least that happens on `editline-1.17.1`. I'm not sure if it's a valid `configure.ac` syntax.
-
Today's bug was a simple `vifm` bug: if you build it in the environment without `vim` or `perl` available you get non-working `:help` command.
`nixpkgs` was such an environment.
Proposed `nixpkgs` fix as https://github.com/NixOS/nixpkgs/pull/215272 and asked if `vifm` could fail the build instead of generating unusable help in https://github.com/vifm/vifm/issues/873
-
Today's bug was a simple `vifm` bug: if you build it in the environment without `vim` or `perl` available you get non-working `:help` command.
`nixpkgs` was such an environment.
Proposed `nixpkgs` fix as https://github.com/NixOS/nixpkgs/pull/215272 and asked if `vifm` could fail the build instead of generating unusable help in https://github.com/vifm/vifm/issues/873
-
Today's bug was a simple `vifm` bug: if you build it in the environment without `vim` or `perl` available you get non-working `:help` command.
`nixpkgs` was such an environment.
Proposed `nixpkgs` fix as https://github.com/NixOS/nixpkgs/pull/215272 and asked if `vifm` could fail the build instead of generating unusable help in https://github.com/vifm/vifm/issues/873
-
Today's bug was a simple `vifm` bug: if you build it in the environment without `vim` or `perl` available you get non-working `:help` command.
`nixpkgs` was such an environment.
Proposed `nixpkgs` fix as https://github.com/NixOS/nixpkgs/pull/215272 and asked if `vifm` could fail the build instead of generating unusable help in https://github.com/vifm/vifm/issues/873
-
ENTREI PARA O TRÁFICO AOS DEZESSEIS ANOS: https://amorscan.blogspot.com/2026/05/entrei-para-o-trafico-aos-dezesseis-anos.html?spref=tw #tráfico #vapor #contenção #bonde #facção #faccionado #CV #PCC #favela #quemsabeénóis #traficante #soubandido #bondedomaluco #TCP #famíliadonorte #vidaloka #bondedo157 #lilicantou #adolescencia
-
Infomigrants
Libye : à Zaouïa, une opération contre des groupes criminels accusés de trafic d’êtres humains et de migration clandestinehttps://mcinformactions.net/libye-a-zaouia-une-operation-contre-des-groupes-criminels-accuses-de-trafic-d
#Libye #migrants #immigration #tortures #viols #trafiquants -
Plano contra o crime organizado prevê investimento de 11 bilhões | BandNews TV
Saiba mais em: 📱 Redes sociais: 📸 Instagram: 🐦Twitter: ➡️ TikTok: 🔵 Facebook: #bandnewstv #crimeorganizado #lula #violência #roubo #furto #assalto #segurançapública #crime #golpe #facção #tráfico
-
Trafikverket skriver om de stora banarbeten som de gör under Kristi himmelsfärd i Stockholmsområdet, och de helt inställda tågen söder om Stockholms central.
Vad ska man då göra enligt Trafikverket?
"Välj cykeln, bilen eller ta tunnelbanan"
Nej, Trafikverket, välj inte bilen. Uppmana aldrig folk att ta bilen. De tar bilen tillräckligt mycket ändå, de behöver inte uppmanas. Men det visar väl att de egentligen är Bilverket.
-
Argentina traslada a excontralmirante ligado al huachicol fiscal
El caso de Fernando Farías Laguna volvió a colocar bajo atención pública investigaciones relacionadas con el llamado huachicol fiscal y el tráfico ilícito de combustibles entre distintos países.
Por Gabriela Díaz | Reportera
El Servicio Penitenciario Federal de Argentina (SPF) realizó el traslado de Fernando Farías Laguna, identificado como excontralmirante de la Marina de México. Autoridades argentinas señalaron al exmando naval como presunto integrante de la organización criminal conocida como “Los Primos”.
De acuerdo con información oficial, las autoridades investigaron a Fernando Farías Laguna por su posible participación en operaciones vinculadas con el denominado “huachicol fiscal”. Las indagatorias apuntaron a una presunta red dedicada al contrabando de combustibles mediante esquemas de evasión y simulación comercial. El expediente incluyó posibles conexiones transnacionales relacionadas con tráfico ilícito de hidrocarburos.
Investigación internacional abierta
Las autoridades argentinas informaron que el operativo formó parte de acciones enfocadas en el combate al crimen organizado y al contrabando transnacional. El procedimiento también se vinculó con estrategias de cooperación internacional entre instituciones de seguridad y justicia. El traslado del excontralmirante ocurrió en el marco de procesos judiciales aún abiertos.
El SPF indicó que las acciones emprendidas buscaron fortalecer controles sobre actividades ilícitas relacionadas con combustibles y redes financieras ilegales. Autoridades argentinas mantuvieron coordinación con organismos internacionales para avanzar en las investigaciones. El caso adquirió relevancia debido a la presunta participación de un exintegrante de las fuerzas armadas mexicanas.
Hasta el cierre de esta información, autoridades argentinas no revelaron detalles sobre las condiciones específicas del traslado penitenciario de Fernando Farías Laguna. Tampoco difundieron información relacionada con las siguientes etapas del procedimiento judicial que enfrentará el exmando naval. El expediente permaneció bajo análisis de autoridades judiciales argentinas. –sn–
Fernando Farías Laguna, huachicol | MCCI¡Conéctate con Sociedad Noticias! Suscríbete a nuestro canal de YouTube y activa las notificaciones, o bien, síguenos en las redes sociales: Facebook, Twitter e Instagram.
También, te invitamos a que te sumes a nuestro canal de información en tiempo real a través de Telegram.
#NoticiasMX #PeriodismoParaTi #PeriodismoParaTiSociedadNoticias #asiloPolítico #BuenosAires #Cdmx #contrabandoDeCombustibles #cooperaciónInternacional #CrimenOrganizado #excontralmiranteMexicano #extradiciónMéxicoArgentina #FernandoFaríasLaguna #huachicolFiscal #Información #InformaciónMéxico #Interpol #investigaciónInternacional #LosPrimos #MarinaDeMéxico #México #Morena #noticia #noticias #NoticiasMéxico #NoticiasSociedad #SeciedadNoticiasCom #ServicioPenitenciarioFederalDeArgentina #SN #Sociedad #SociedadNoticias #SociedadNoticiasCom #sociedadNoticias #SociedadNoticiasCom #SPFArgentina #tráficoIlícitoDeCombustibles #tráficoIlegalDeHidrocarburos -
✅ La #manifestation à #Bruxelles touche à sa fin. Le parcours est rouvert à la circulation et la situation trafic se normalise.
-
✅ La #manifestation à #Bruxelles touche à sa fin. Le parcours est rouvert à la circulation et la situation trafic se normalise.
-
✅ La #manifestation à #Bruxelles touche à sa fin. Le parcours est rouvert à la circulation et la situation trafic se normalise.