#default — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #default, aggregated by home.social.
-
#Anthropic is making #automode the #default setting for #ClaudeCode in most plans starting #August14th. They claim auto mode mitigates risks like prompt injection and data exfiltration, outperforming human reviewers. However, concerns remain about potential vulnerabilities, such as malicious third-party packages. https://simonwillison.net/2026/Aug/8/auto-mode/?eicker.news #tech #news #ainews
-
#Anthropic is making #automode the #default setting for #ClaudeCode in most plans starting #August14th. They claim auto mode mitigates risks like prompt injection and data exfiltration, outperforming human reviewers. However, concerns remain about potential vulnerabilities, such as malicious third-party packages. https://simonwillison.net/2026/Aug/8/auto-mode/?eicker.news #tech #news #ainews
-
@aral io
1- EVERYONE supports #Capitalism - at least on a #financial level as it's an #INTEGRATED #default:
#Taxes & %'$ are taken.
#Banks use #money for #war / #bad projects.2- Your posts are measurably worse / nasty now - pushing average person or #fans away.
The false #Ultimatums and false-decisions presented are separating people.
(i.e. None of your audience are big Capitalists or #Evil people. Your recent words / #hate feels like you assume it).
3- Not hate - love / increment #trust
-
@aral io
1- EVERYONE supports #Capitalism - at least on a #financial level as it's an #INTEGRATED #default:
#Taxes & %'$ are taken.
#Banks use #money for #war / #bad projects.2- Your posts are measurably worse / nasty now - pushing average person or #fans away.
The false #Ultimatums and false-decisions presented are separating people.
(i.e. None of your audience are big Capitalists or #Evil people. Your recent words / #hate feels like you assume it).
3- Not hate - love / increment #trust
-
Ruff v0.16.0 – Significant new updates – 413 default rules up from 59
https://astral.sh/blog/ruff-v0.16.0
Comments: https://news.ycombinator.com/item?id=49056112
#HackerNews #Ruff #v0.16.0 #Updates #Significant #Changes #Default #Rules #Tech #News
-
Ruff v0.16.0 – Significant new updates – 413 default rules up from 59
https://astral.sh/blog/ruff-v0.16.0
Comments: https://news.ycombinator.com/item?id=49056112
#HackerNews #Ruff #v0.16.0 #Updates #Significant #Changes #Default #Rules #Tech #News
-
CW: war (implied)
OH: Git MIL-OPS
OH: Dann ist YAML aber Scheiße, du sagst deploy: no und der feuert auf Norwegen -
Zugriffsmodifikatoren gehören zu den Grundlagen, die in Java sehr früh wichtig werden. Am Anfang wirken sie oft wie reine Syntax: `public`, `private`, `protected` oder einfach gar nichts. In der Praxis entscheiden sie aber darüber, welche Teile deines Codes von außen benutzt werde...
https://magicmarcy.de/zugriffsmodifikatoren-in-java-verstehen-und-sauber-anwenden
#Zugriffsmodifikatoren #Java #public #private #protected #package-private #default-Zugriff #Sichtbarkeiten #Coding #Programming
-
Instagram enables AI sharing and reuse of your images by default https://www.3dcandy.social/2026/07/instagram-enables-ai-sharing-and-reuse-of-your-images-by-default/ #3dcandy #3dcsocial #default #foto #instagram #meta #privacy #security
-
Instagram enables AI sharing and reuse of your images by default https://www.3dcandy.social/2026/07/instagram-enables-ai-sharing-and-reuse-of-your-images-by-default/ #3dcandy #3dcsocial #default #foto #instagram #meta #privacy #security
-
Interesting observation. When I let the app generate a description, it always defaults to sunset and not sunrise. It makes me wonder how many other #algorithms choose one thing over another as the #default without much concern about how #accurate it is and how many people quickly choose the default because it’s easier to let the algorithm tell the story than it is to tell it themselves. My prior post was a sunrise and the app defaulted to sunset as it has done every single time I’ve used it to generate a description.
-
Interesting observation. When I let the app generate a description, it always defaults to sunset and not sunrise. It makes me wonder how many other #algorithms choose one thing over another as the #default without much concern about how #accurate it is and how many people quickly choose the default because it’s easier to let the algorithm tell the story than it is to tell it themselves. My prior post was a sunrise and the app defaulted to sunset as it has done every single time I’ve used it to generate a description.
-
Although I must say I agree that #ODF ( #OpenDocumentFormat ) , defender by #LibreOffice should be the #DEFAULT #OPÉN #DOCUMENT #FORMAT... , AND #NOT #OOXML which is the closed and #proprietary format by #Microsoft
But hey, this is just a question of time , I presume.. and hope
-
Although I must say I agree that #ODF ( #OpenDocumentFormat ) , defender by #LibreOffice should be the #DEFAULT #OPÉN #DOCUMENT #FORMAT... , AND #NOT #OOXML which is the closed and #proprietary format by #Microsoft
But hey, this is just a question of time , I presume.. and hope
-
As of today, the default search engine on the European Parliament’s internal browsers is Qwant, and no longer Google.
:emoji_squint:#EU #euparliament #europeanparliament #browser #searchengine #Qwant #google #today #news #todaynews #technews #mastodonnews #mastodontech #sovereign #mastodonsocial #mastodon #TECH #technology #default #post
-
As of today, the default search engine on the European Parliament’s internal browsers is Qwant, and no longer Google.
:emoji_squint:#EU #euparliament #europeanparliament #browser #searchengine #Qwant #google #today #news #todaynews #technews #mastodonnews #mastodontech #sovereign #mastodonsocial #mastodon #TECH #technology #default #post
-
#default : failure to fulfill an obligation
- French: défault
- German: der Verzug; Standard
- Italian: default
- Portuguese: padrão
- Spanish: por defecto
------------
Try our new word guessing game @ https://24hippos.com
-
#default : failure to fulfill an obligation
- French: défault
- German: der Verzug; Standard
- Italian: default
- Portuguese: padrão
- Spanish: por defecto
------------
Try our new word guessing game @ https://24hippos.com
-
Following up on my previous post https://mastodon.social/@yegorov/116594842832339445 (where I showed how to set default values in Ruby methods), it turns out you can write not just a single expression on the right side, but an entire block of code inside a begin-end construct.
#Ruby #Method #Default #Arguments #KeywordArguments #BeginEnd
-
If you work with Ruby, you should know that arguments in methods can be set to a default value, for example:
```
def perform(arg: "d")
# .
end
```But did you know that you can use instance variables as default values, like this:
```
class MyCls
def initialize(arg); @ARG = arg; end
def perform(arg = @ARG); end
end
```Or other arguments of this method:
```
module MyMod
def self.perform(a = nil, arg: a); end
end
```#Ruby #Method #Default #Arguments #KeywordArguments #InstanceVariable
-
🔴 LIVE NOW ON VORTEX
📻 Vortex Indie 🎸 (Indie pop, indie rock, classic rock)
──────────────
🎵 Default - Wasting My Time▶️ Écouter / Listen : VorteX [Radio]
https://lesonduvortex.net💬 Join us on Discord:
https://discord.gg/d82hJZBeDE -
America’s Broken Politics Are Dragging It Down a Fiscal Black Hole.
Delaying action on the nearly $ 40 trillion U.S. #debt risks making solutions unworkable, raising the chance of #default or #inflation as #deficits keep growing.
https://www.bloomberg.com/opinion/articles/2026-04-29/america-s-broken-politics-are-dragging-it-down-a-fiscal-black-hole?cmpid=eveus&utm_campaign=eveus&utm_medium=email&utm_source=newsletter&utm_term=260429&utm_content=3991 #deficit
-
Zugriffsmodifikatoren gehören zu den Grundlagen, die in Java sehr früh wichtig werden. Am Anfang wirken sie oft wie reine Syntax: `public`, `private`, `protected` oder einfach gar nichts. In der Praxis entscheiden sie aber darüber, welche Teile deines Codes von außen benutzt werde...
https://magicmarcy.de/zugriffsmodifikatoren-in-java-verstehen-und-sauber-anwenden
#Zugriffsmodifikatoren #Java #public #private #protected #package-private #default-Zugriff #Sichtbarkeiten #Coding #Programming
-
No Wine Left Behind’s Blind Wine Tasting at Arlo NoMad
No Wine Left Behind invites guests to an interactive blind wine tasting experience at Arlo NoMad Diner on Wednesday, May 20, from 6:30 to 8:30 p.m. Blending wine education with a game-show format, the event offers a fun and approachable way to…
#dining #cooking #diet #food #Wine #default-tier #Food&Drink #Manhattan #newyork #newyorkmetroarea #nyc
https://www.diningandcooking.com/2615294/no-wine-left-behinds-blind-wine-tasting-at-arlo-nomad/ -
No Wine Left Behind’s Blind Wine Tasting at Arlo NoMad
No Wine Left Behind invites guests to an interactive blind wine tasting experience at Arlo NoMad Diner on Wednesday, May 20, from 6:30 to 8:30 p.m. Blending wine education with a game-show format, the event offers a fun and approachable way to…
#dining #cooking #diet #food #Wine #default-tier #Food&Drink #Manhattan #newyork #newyorkmetroarea #nyc
https://www.diningandcooking.com/2615294/no-wine-left-behinds-blind-wine-tasting-at-arlo-nomad/ -
I have both #Safari and #Vivaldi on my mobiles, but my #default #browser is Safari.
I don't need a #screenreader all the time, so I don't run #VoiceOver.
Safari will #readaloud to me if I choose to listen, so opening a link from wherever is how I use Safari.
When I know where I'm going, I mostly use Vivaldi. And if I think I'll want to remember a #website or #access it on my #computer, I'll paste the link into Vivaldi because they're synced.
-
I have both #Safari and #Vivaldi on my mobiles, but my #default #browser is Safari.
I don't need a #screenreader all the time, so I don't run #VoiceOver.
Safari will #readaloud to me if I choose to listen, so opening a link from wherever is how I use Safari.
When I know where I'm going, I mostly use Vivaldi. And if I think I'll want to remember a #website or #access it on my #computer, I'll paste the link into Vivaldi because they're synced.
-
How to Use Defaults in Destructuring
const { a = 0 } = obj. Fallback when missing.
-
Cooking Class with Chef Alex at R.AIRE
R.AIRE (https://www.hamptonmaid.com/raire) has announced they will host a Cooking Class with Chef Alex on Sunday, March 22 from 3:30 to 6:30 p.m. Chef Alex will lead a hands-on classic making class Spanish tap…
#dining #cooking #diet #food #Cooking #default-tier #Food&Drink #hamptonbays #Hamptons #longisland #longisland:eastend #longisland:hamptons #newyorkmetroarea #suffolk
https://www.diningandcooking.com/2561622/cooking-class-with-chef-alex-at-r-aire/ -
"Added 1M context window for Opus 4.6 by default for Max, Team, and Enterprise"
https://raw.githubusercontent.com/anthropics/claude-code/refs/heads/main/CHANGELOG.md
#HackerNews #Added #1M #context #window #for #Opus #4.6 #by #default #for #Max #Team #and #Enterprise
Opus4.6 #ContextWindow #Max #Team #Enterprise
-
Argentina será próspera cuando el capitalismo, la explotación laboral y la concentración de riqueza, sean sólo un mal recuerdo.
https://www.canal26.com/economia/2026/03/11/el-61-de-los-trabajadores-asalariados-se-saltea-comidas-o-se-alimentan-peor-por-problemas-economicos/
#CárcelComúnParaLLA #FueraMilei #CaputoPreso #GuerraDeClases #UnidadDeLosTrabajadores #Argentinazo #CapitalismoDecadente #Default -
There Is Reason For Hope. Here's The Proof - Barry's Economics
https://www.youtube.com/watch?v=66wen6C4UNw
#NeuroScience #Apathy #Change #SystemicOppression #Default #Community #Resistance #SocialContract #HumanRights #Empathy #Hope
-
El #saqueo de los #capitalistas que organiza #CaputoMorgan desde el #gobierno de #LLA es un #carry insolvente sostenido por la garantía de #rescate de #Trump frente al inevitable #default, ¿qué puede pasar con el #RiesgoPaís en la medida que crezca la convicción de que Trump va a perder las próximas #elecciones?
#capitalismo #guerradeclases #marx #unidaddelostrabajadores #argentinazo #cárcelcomúnparalla #política #economía -
Где в postgresql хранится default-значение созданной колонки?
Странный вопрос, в column_default таблицы information_schema.columns . Казалось бы вопрос закрыт, но что произойдёт когда мы удалим дефолт с колонки? Как известно, начиная с 11 версии postgresql, при добавлении новой not null колонки со значением по умолчанию, физически не меняет данные в таблицы. Просто в момент чтения старых данных возвращает указанное значение. Но что произойдёт если удалить дефолт? Я тоже удивился тому, что not null колонка может возвращаться null и провёл небольшой эксперимент
-
Capitalistas y gobiernos provinciales toman deuda en dólares que liquidan para hacerse de pesos que ponen a hacer #carry para saquear las arcas del Estado que compra esos dólares desde el #BCRA para dárselos al #Tesoro que se los da a los capitalistas pagando #usura y absorbiendo la emisión monetaria con más deuda en pesos para que hagan carry.
Los #capitalistas se llevan los #dólares. El #pueblo recibe la #deuda.
https://www.iprofesional.com/finanzas/448471-dolar-en-baja-la-senal-de-reservas-que-puede-cambiar-el-rumbo-en-las-proximas-semanas
#saqueo #dólar #capitalismo #default #CárcelComúnParaLLA -
«Tu balance del #BCRA no mejoró, y respecto a tus #reservas: las líquidas son mucho más altas porque conseguiste el desembolso del #FMI, y conseguiste el aumento de los depósitos en dólares -blanqueo mediante; las brutas son más altas; pero las reservas netas descontando los pasivos son más negativas, bastante más negativas, porque tomaste #deuda de corto plazo para pagar vencimientos.» - https://www.youtube.com/watch?v=AeEdbtdwEBc
#carry #caputo #default #jpmorgan #saqueo #dólar #usura #fmi #tesoro #argentina -
«El 26 de enero pasado, la ex defensora Nacional de Niñas, Niños y Adolescentes, Marisa Graham, afirmó a Chequeado que “En Argentina hay aproximadamente 12.200.000 niños. Sólo el 0,55% está vinculado a alguna denuncia penal. Eso significa que el 99,45% de los chicos no comete ningún delito”.» - Pedro Pianta - juez penal retirado
https://politicaobrera.com/15701-quien-las-hace-y-quien-las-paga
#humo #distracción #saqueo #carry #default #fascismo #capitalismo #guerradeclases #caputopreso #jpmorgan #argentina #sociedad #política #economia