As a girl who loves #Linux and #opensource software, this post is...not at all what I want to see, either. It gives me the ick.
Two girls dancing for a man to get his attention? What the fuck has this got to do with open source software?
Its made me unfollow this account, that's for sure.
Daily Psychic Reading • Tuesday, September 2, 2025 | https://youtube.com/shorts/3ctrAKRxmlM
#NicholasAshbaugh #Tarot #TarotReader #DailyTarot #Psychic #PsychicMedium #Intuitive #YouTube #YouTuber

#IA
« Avec #ChatGPT, j’ai parfois l’impression de ne plus savoir apprendre… » : comment motiver les étudiants à l’heure de l’IA ? https://www.lemonde.fr/campus/article/2025/09/02/avec-chatgpt-j-ai-parfois-l-impression-de-ne-plus-savoir-apprendre-comment-motiver-les-etudiants-a-l-heure-de-l-ia_6638099_4401467.html
Mein neuer #React Video-Kurs "Von Null auf Fullstack" ist auf entwickler.de online 👀
Themen u.a.:
- React Grundlagen
- Data-Fetching mit #TanStack Query
- Formulare mit react-hook-form
- TanStack Router
- Fullstack React mit #NextJS
Mehr Infos: https://nilshartmann.net/posts/video-kurs-fullstack-react
Viel Spaß 😊

Epstein survivors will have a news conference this week. So, there will be a flood of disinformation from the KKK fascist guy. Remember this?

#Europa #Deutschland #Berlin #SBahnNetz
#Vergabe #DeutscheBahn #EVG #Sympathie
EVG begrüßt Entscheidung bei der S-Bahn Berlin zur Vergabe an die Deutsche Bahn:
Ripple – A TypeScript UI framework that takes the best of React, Solid, Svelte
Link: https://github.com/trueadm/ripple
Discussion: https://news.ycombinator.com/item?id=45063176
Okay, newbie question #1: where's the AI community on here? I'm used to seeing a lot of AI art and tech discussion on other platforms, but Mastodon's timeline feels different. Are there specific instances or hashtags I should be following to find those conversations?

@mohs @Mastokarl @HLunke @an_believable EXAKT DAS!
#Deutschland sollte das "#LuxembourgerModell" einführen:
“Authentic identity & authentic rebellion rooted in class, art and collective expression has been replaced and repackaged into white grievance identity politics”
-Dasia Sade
https://www.youtube.com/watch?v=AKevy6Bzkng
#culturewar #capitalism #maga #trumpism #fascism #usa #identitypolitics
#Europa #Deutschland #Hamburg #DBCargo
#Billwerder #Schließung #Sargnagel #Bahn
EVG -
Geplante Schließung in Hamburg Billwerder ist weiterer Sargnagel für DB Cargo:
Start blogging faster with BlogForge 📝
A lightweight Next.js template built for writers, developers, and creators. Fully responsive, SEO-friendly, with dark/light mode.
🔗 Download here: https://getnextjstemplates.com/products/blog-forge-nextjs-template
#Nextjs #Blogging #OpenSource #WebDev #template #website template #nextjs template

Случаи из разработки на асинхронных фреймворках в Python. Часть 1. FastAPI
Асинхронность в Python кажется простой — добавил async/await, и всё летает. Но на практике синхронные вызовы внутри асинхронного кода превращаются в «бутылочное горлышко», блокируя event loop и приводя к непредсказуемым последствиям: от подвисших запросов до деградации производительности. Как разбираться в таком случае и почему важно знать особенности фреймворков в подкате...
https://habr.com/ru/articles/942942/
#asyncio #микросервисы #интеграционное_тестирование #fastapi #python
Testing Fedilab @apps client as a default one for the #Fediverse.
Karl-Anthony Towns’ longtime girlfriend Jordyn Woods gives a hilarious reaction to the 5-time NBA All-Star’s NBA 2k26 personal face scan | NBA News https://www.rawchili.com/4503765/ #CelebrityCouple #FaceScanReview #instagram #JordynWoods #KarlAnthonyTowns #KAT #NBA #NBA2kFeatures #Nba2k26 #RonnieSingh

https://www.walknews.com/1033103/ レイ・ダリオ氏、米国は「1930年代型」の専制に向かいつつある-FT – Bloomberg #cojp #Finance #Government #PersonalFinance #Regulation #RetailTrading #UnitedStatesOfAmerica #US #USA #WellSpent #アメリカ合衆国 #米国

Two small planes collide midair at an airport in Colorado, killing 1 person and injuring 3
https://lemmy.world/post/35331149
https://moshhead.org/imminence-im-dezember-2025-auf-europatour-the-black-finale/
#metal #moshhead #radio #rock #outdoor #bands #music #musik #youtube #facebook #live #Vinyl #Punkrock #musicians #electricguitars #MetalSongs #NewRock #MetalMusic #moshhead #metalheads #metalmusic #rockmusic #radioshow #radiostation #hardrock #news #all #follower
The Future of Vue Is You (and You), by @evanyou.me:
https://stackoverflow.blog/2025/08/15/the-future-of-vue-is-you-and-you/
A grumpy ItSec guy walks through the office when he overhears an exchange of words.
devops0: These k8s security SaaS prices are wild.
devops1: Image scanning, policy engines, "enterprise tiers"... why are we paying so much?
ItSec (walking by): You pay for updates & support, probably, but you can do some of this yourselves with a bit of k8s hacking.
devops0: How, exactly?
Disclaimer: this is a PoC for learning, not a production-ready solution.
Kubernetes can ask an external webhook whether a given image should be allowed via Admission Controller, in this case ImagePolicyWebhook [1]. The webhook receives an ImageReview payload [2], initiates a scan, and returns "allowed: true/false".
We will write a Flask endpoint that invokes Trivy [3] for each image and denies pod creation process if HIGH or CRITICAL vuln appear.
Below is a minimal Flask service.
from flask import Flask, request, jsonify
import subprocess, json, shlex, re
app = Flask(__name__)
def is_valid_image_format(image: str) -> bool:
if not re.fullmatch(r"[A-Za-z0-9/_:.@+-]{1,300}", image):
return False
if image.startswith("-"):
return False
return True
def scan_with_trivy(image: str):
cmd = [
"trivy", "--quiet",
"--severity", "HIGH,CRITICAL",
"image", "--format", "json",
image
]
r = subprocess.run(cmd, capture_output=True, text=True)
try:
data = json.loads(r.stdout or "{}")
results = data.get("Results", [])
vulns = []
for res in results:
for v in res.get("Vulnerabilities", []) or []:
if v.get("Severity") in ("HIGH", "CRITICAL"):
vulns.append(v)
return vulns
except json.JSONDecodeError:
return None
@app.route("/scan", methods=["POST"])
def scan():
body = request.get_json(force=True, silent=True) or {}
containers = body.get("spec", {}).get("containers", [])
if not containers:
return jsonify({
"apiVersion": "imagepolicy.k8s.io/v1alpha1",
"kind": "ImageReview",
"status": {"allowed": False, "reason": "No containers provided"}
})
results = []
decision = True
for c in containers:
image = c.get("image", "")
if not is_valid_image_format(image):
results.append({"image": image, "allowed": False, "reason": "Invalid image format"})
decision = False
continue
vulns = scan_with_trivy(shlex.quote(image))
if vulns is None:
results.append({"image": image, "allowed": False, "reason": "Scanner error"})
decision = False
continue
if vulns:
results.append({"image": image, "allowed": False, "reason": "HIGH/CRITICAL vulnerabilities detected"})
decision = False
else:
results.append({"image": image, "allowed": True})
return jsonify({
"apiVersion": "imagepolicy.k8s.io/v1alpha1",
"kind": "ImageReview",
"status": {"allowed": decision, "results": results}
})
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000)
Run the service wherever Trivy is available. Tip: warm up the trivy vulns db once so the first request will not timeout.
trivy image alpine:3.22 #warm up
gunicorn -w 4 -b 0.0.0.0:5000 app:app
Test it with an ImageReview-like request. Replace the and URL and images as you wish/need.
curl -s -X POST http://127.0.0.1:5000/scan -H "Content-Type: application/json" -d '{
"apiVersion": "imagepolicy.k8s.io/v1alpha1",
"kind": "ImageReview",
"spec": {
"containers": [
{"image": "alpine:3.22"},
{"image": "nginx:latest"}
]
}
}' | jq .
Tell the API server to use ImagePolicyWebhook. The AdmissionConfiguration points at a kubeconfig for the webhook endpoint (/etc/kubernetes/admission-control-config.yaml).
apiVersion: apiserver.config.k8s.io/v1
kind: AdmissionConfiguration
plugins:
- name: ImagePolicyWebhook
configuration:
imagePolicy:
kubeConfigFile: /etc/kubernetes/webhook-kubeconfig.yaml
allowTTL: 50
denyTTL: 50
retryBackoff: 500
defaultAllow: false
The webhook kubeconfig targets your scanner's HTTP endpoint (/etc/kubernetes/webhook-kubeconfig.yaml). Edit "server" value for your case.
apiVersion: v1
kind: Config
clusters:
- name: webhook
cluster:
server: http://192.168.108.48:5000/scan
contexts:
- name: webhook
context:
cluster: webhook
user: ""
current-context: webhook
Mount the AdmissionConfiguration and enable the plugin in the API server manifest. Add the following flags and mount the config file; adjust paths and IPs to your environment (kube-apiserver.yaml):
---
apiVersion: v1
[...]
containers:
- command:
- kube-apiserver
[...]
- --admission-control-config-file=/etc/kubernetes/admission-control-config.yaml
- --enable-admission-plugins=NodeRestriction,ImagePolicyWebhook
[...]
volumeMounts:
[...]
- mountPath: /etc/kubernetes/admission-control-config.yaml
name: admission-control-config
readOnly: true
- mountPath: /etc/kubernetes/webhook-kubeconfig.yaml
name: webhook-kubeconfig
readOnly: true
volumes:
[...]
path: /etc/kubernetes/admission-control-config.yaml
type: FileOrCreate
- name: webhook-kubeconfig
hostPath:
path: /etc/kubernetes/webhook-kubeconfig.yaml
type: FileOrCreate
After the API server restarts, the cluster will begin asking app about images during pod creation. A quick check shows an allowed image and a blocked one:
kubectl run ok --image=docker.io/alpine:3.22
pod/ok created
kubectl run nope --image=docker.io/nginx:latest
Error from server (Forbidden): pods "nope" is forbidden: one or more images rejected by webhook backend
That's the whole trick. Kubernetes asks our Flask app. App calls Trivy. If HIGH or CRITICAL vulnerabilities are present, the admission decision is deny, and the pod never starts. It's not fancy and as I wrote before, it's not meant for production, but it illustrates exactly how admission can enforce image hygiene without buying an external SaaS.
[1] https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#imagepolicywebhook
[2] https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#request-payloads
[3] https://github.com/aquasecurity/trivy
For more grumpy stories visit:
1) https://infosec.exchange/@reynardsec/115093791930794699
2) https://infosec.exchange/@reynardsec/115048607028444198
3) https://infosec.exchange/@reynardsec/115014440095793678
4) https://infosec.exchange/@reynardsec/114912792051851956
#appsec #devops #kubernetes #programming #webdev #docker #containers #k8s #cybersecurity #infosec #cloud #hacking #sysadmin #sysops

https://www.walknews.com/1033102/ 米政権、IMFナンバー2に経済顧問のヤレド氏推薦検討=関係筋 | ロイター #AMERS #ANLINS #BACT #BIZ #BOSS1 #DBT #DEST:NOJPTPM #DEST:NOJPWDM #DEST:NOJPZTM #ECO #ECON #EMRG #EREP #EU #EXCLSV #GEN #GOVACT #GVD #GVGVF #IMF #INTAG #JFOR #JLN #MCE #MNGISS #NAMER #NEWS1 #PBFACT #POL #POTUS #PPLMOV #TOPCMB #TOPNWS #TRD #TRF #TRN #UN1 #UnitedStatesOfAmerica #US #USA #WASH #WBNK #アメリカ合衆国 #米国

"This is literally the largest act of union busting in American history"
#USA #FUBAR
#Trump Orders Have Stripped Nearly Half a Million Federal Workers of Union Rights https://www.nytimes.com/2025/09/01/us/politics/trumps-unions-federal-workers.html?smid=nytcore-android-share
A music teacher in Gaza has transformed the sound of Israeli drones into a powerful song honouring those killed in Israel’s genocide.
Ahmed Muin Abu Amsha uses music to help displaced and traumatised Palestinian children cope amid war and devastation.
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState
Under the glowing lights of the Clock Tower complex in Mecca, Saudi Arabia where intricate architecture meets the majesty of the Masjid-Al-Haram (The Sacred Mosque). A timeless sight at the heart of the city.
#mastodon #mosque #mecca #masjid #nightphotography #photography #picoftheday #TuneTuesday #photo #photooftheday #explore #mobilephotography #smartphonephotography #travelphotography #travel #fediverse #streetphotography #photographyIsArt #cityscape #Photographer #urbanphotography #view

Palestinian hostages in Israeli dungeons
https://x.com/RyanRozbiani/status/1962746063758020732
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

Anybody live coding with #python using https://github.com/belangeo/pyo?
#Europa #Deutschland #NRW #Viersen #FDP
#Lokalpolitiker #Steuerhinterziehung #Politik
"Ausschweifender Lebenswandel" -
FDP-Lokalpolitiker hinterzieht fast 38 Millionen Euro Steuern:
Reminder: backlinks optimization
First, focus on optimizing all on-page essential factors, then think of backlinks; without which, investment in them would be temporary, and need to be exponentially invested to reap continual or more benefits which is a waste of time, energy, and money.
2️⃣ Die Datenschutz-Richtlinien der EU sind in Form der #DSGVO seit 2018 in Kraft, praktisch genauso lang dauert bisher der juristische Kampf von @noybeu mit den US-Platzhirschen um die dort definierten Benutzerrechte. 2019 hat #NOYB acht Streaming-Anbieter (darunter #Amazon, #AppleMusic, #Spotify, #Netflix und #YouTube) verklagt, da sie nicht vollumfänglich auf DSGVO-Datenauskunftsbegehren reagiert hätten. Ein bekanntes Muster.
https://dnip.ch/2025/09/02/dnip-briefing-40-anonym/#Gut-Ding-will-Weile-haben
Boycott , Don’t feed the war machine
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

New in #opensource: #Pogocache 1.0 GA is here!
Built for low latency and CPU efficiency, it supports multiple popular protocols while claiming better throughput & lower latency than other caching alternatives.
👉 Learn more: https://bit.ly/4gdFuYr
#InfoQ #Caching #Performance #SoftwareDevelopment

Ciclo de charlas: Propagación troposférica en VHF+ y … OVNIs https://elradioescucha.net/2025/09/02/ciclo-de-charlas-propagacion-troposferica-en-vhf-y-ovnis/ #Charlas, #Propagación, #Radioaficion, #URE, #Youtube
@netzpolitik_feed @Volksverpetzer @fragdenstaat @derpostillon @mimikama @Freiheitsrechte @umwelthilfe.bsky.social @jon @tazgetroete @ndaktuell @ZEITONLINE @heiseonline
📰 Nicolaas Veul begint met nieuwe opnames 100 dagen-serie
https://nieuwsjunkies.nl/artikel/1gyP
🕣 08:17 | RTL Nieuws
🔸 #VPRO #Trein #Presentator #Instagram
Ich denke nicht, dass die #USA den Diktator #Trump und seinen #MAGA-Kult noch mit gewaltlosen Mitteln loswerden können.
Er wird alles daran setzen, dass die nächsten Präsidentschaftswahlen entweder gar nicht stattfinden, diese entweder massiv gefälscht sind oder die Kandidaten so weit in ihrem Möglichkeiten eingeschränkt sind, dass es keine freie Wahl wird.
Ich bin davon überzeugt, dass er im Stile von #Nordkorea eine Erbdiktatur anstrebt.
Und er ist auf einem wirklich guten Weg dahin.
🔌 Electronics this week:
- Pi voice assistant w/ Perplexity
- ESP32 image-effects lib
- Energy harvesting for IoT
#RaspberryPi #ESP32
https://blaze.email/Electronics
These are the names of 274 Palestinian journalists in Gaza killed by Israel since October 7, 2023. It’s the deadliest war for media workers in history.
https://x.com/AJEnglish/status/1962432743004070301
#Gaza #Palestine #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

RCR NXS Race Recap: Portland International Raceway – Speedway Digest
Jesse Love and the No. 2 Whelen Chevrolet Team Rebound from Mid-Race Damage to Capture Top-10 Result at…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #NASCAR #AustinHill #Chevrolet #CrewChief #International #SPEED #Sports
https://www.newsbeep.com/us/126587/

Zadorov hits 1st-ever hole-in-one at Florida golf course
The Boston Bruins defenseman was drafted 16th overall in the 2013 Draft by the Buffalo Sabres. He has…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #Golf #Sports
https://www.newsbeep.com/us/126585/

Jannik Sinner on Carlos Alcaraz rivalry: ‘It’s not like you have to be enemies off court’ | ATP Tour
ATP Tour Sinner on Alcaraz rivalry: ‘It’s not like you have to be enemies off court’ World No.…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #Tennis #Sports
https://www.newsbeep.com/us/126583/

Officials work to keep everyone cool at the Mariposa County Fair
ByAlex Ruiz Tuesday, September 2, 2025 2:09AM Families have been heading to the foothills for fair fun, but…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #BreakingNews #17716061 #Headlines #Topstories #TopStories
https://www.newsbeep.com/us/126579/

Ca\ South Korean companies make all those big investments in U.S.?
SEOUL, Sept. 2 (UPI) — South Korea’s state-backed companies and private enterprises promised significant investments in the United…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #America #Business #defense #politics #TopNews #UnitedStatesofAmerica #world
https://www.newsbeep.com/us/126577/

3 injured after woman drives through barricades at Kipona Festival in Harrisburg
DAUPHIN COUNTY, Pa. (WHP) — Three people have been injured after a woman drove through barricades at the…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #America #DauphinCounty #dispatch #HarrisburgCity #injuries #NorthFrontStreet #Officers #policeincident #SouthStreet #UnitedStatesofAmerica
https://www.newsbeep.com/us/126575/

Southwest Airlines planes takeoff with barrier to protect the cockpit when the door is opened mid-flight
Facebook Tweet Email Link Washington — Southwest Airlines’ newest jets are now flying with a barrier that can…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #Business
https://www.newsbeep.com/us/126573/

The New Sony WH-1000XM6 Noise Canceling Headphones Drops to the Lowest Price Ever
Sony’s newest flagship wireless noise cancelling headphones – the Sony WH-1000XM6 – has dropped to the lowest price…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #Technology
https://www.newsbeep.com/us/126571/

Americans Take to the Streets for 1,000+ 'Workers Over Billionaires' Labor Day Rallies
https://lemmy.zip/post/47721206
Ancient human skull discovered in Greece rewrites human evolutionary timeline
Researchers from France, China, the UK, and Greece revealed that the Petralona cranium is at least 286,000 years…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #Science #greece #Homoheidelbergensis #Humanevolution #JournalofHumanEvolution #MiddlePleistocene #Neanderthalsandmodernhumans #PetralonaCave #Petralonaskull #reconstructedskull #scientificstudy
https://www.newsbeep.com/us/126569/

Guillermo del Toro’s “Frankenstein” Eyes Oscars With Industry Support
People love Guillermo del Toro, and that’s not hyperbole. Hollywood’s affection for the Oscar-winning auteur goes far beyond…
#NewsBeep #News #US #USA #UnitedStates #UnitedStatesOfAmerica #Entertainment #Frankenstein #GuillermoDelToro #Oscars #TellurideFilmFestival
https://www.newsbeep.com/us/126567/

Ucieczka z kontenera Docker na Windowsie przy pomocy SSRF
Znacie to uczucie, gdy weryfikujecie założenia projektowe czy wdrożone polityki i coś się nie zgadza? Tego właśnie doznał użytkownik Dockera, który przez złe doświadczenia z wirtualizacją, postanowił sprawdzić izolację sieciową w kontenerach. TLDR: Badacz przez przypadek odkrył problem, pozwalający na przejęcie kontroli nad hostem, w sytuacji gdy wykorzystywany jest Docker...
#WBiegu #Docker #DockerDesktop #Escape #Podatność #Windows
https://sekurak.pl/ucieczka-z-kontenera-docker-na-windowsie-przy-pomocy-ssrf/
My Debian #Peertube instance was migrated to #FreeBSD before the holidays. And it went well since then.
Here’s what I did. Maybe you can too ;-)
https://www.tumfatig.net/2025/migrate-a-peertube-instance-from-debian-to-freebsd/
In yet another horrific crime, Israeli occupation tanks ran over and killed Palestinian citizen Ahmed Al-Madani and his wife in the Armeida area, east of Khan Younis in southern Gaza.
https://x.com/QudsNen/status/1962228285510652264
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social
#AntiImperialism #tiktok #cdnpoli #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

"The prank allegedly committed in #Houston is similar to what's being dubbed the "#DoorKickingChallenge," a national trend based on an old prank called "#DingDongDitch," in which groups of kids record videos of themselves kicking and banging on doors of homes and apartments before running away and then posting the videos on #socialmedia platforms such as #TikTok."
https://abcnews.go.com/US/11-year-houston-boy-shot-door-knocking-prank/story?id=125141773
The following hashtags are trending across South African Mastodon instances:
#australia
#socialmedia
#dreamed
#Wordle
#wordle1536
#aiart
#music
#crosswords
Based on recent posts made by non-automated accounts. Posts with more boosts, favourites, and replies are weighted higher.
Platner: Our taxpayer dollars can build schools and hospitals in America, not bombs to destroy them in Gaza.
https://x.com/Acyn/status/1962647752472698959
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism #education

Learn how to boost your website’s visibility in just 4 steps:
1️⃣ Keyword Research
2️⃣ On-Page Optimization
3️⃣ Content Creation
4️⃣ Link Building
Perfect for beginners who want to rank higher on Google!
#SEO #DigitalMarketing #LinkBuilding #ContentMarketing
@_maleficentgirl @ErikUden #Wero ist seit kurzem am Start.
Habt ihr das schon mal benutzt? Erfahrungen?
#paypal
Very interesting project: In this post, Paolo Belcastro explains a small project that he created with Telex in just a few minutes: "Telex is a new Automattic experiment that is laser-focused on creating blocks for the WordPress editor. As that’s its sole purpose, it provides a lot of context about how Gutenberg blocks are intended to work."
https://paolo.blog/blog/vibe-code-any-wordpress-block-with-telex/
#wordpress
because their entire history is a forgery. these colonizers changed their names to make them sound relevant to the region.
https://x.com/susanabulhawa/status/1962594289067741469
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

Early this morning, Israeli occupation forces abducted Hebron Mayor Tayseer Abu Sneineh after raiding and ransacking his home in the city, located south of the occupied West Bank.
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

#VW zahlteine Millionenstrafe von #Sklavenarbeit in Brasilien.
Aber auch in #Deutschland scheint das #Gehalt nicht so gut bei #VWfinancial zu sein - habe gerade gehört das manch Mitarbeiter trotz Universitätsabschluss und einem Vollzeitjob noch an einer Kasse eines Lebensmittelmarktes arbeitet.
Selbst könnte ich mir keinen Nebenjob mehr vorstellen neben meinem Hauptjob..... bin dafür doch zu ausgelaugt....

How to Install Zip and Unzip in Linux Read more here https://www.tecmint.com/install-zip-and-unzip-in-linux/
#linux #opensource #tecmint
“The old world is dying, and the new world struggles to be born; now is the time of monsters.”
— Antonio Gramsci
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

Unfortunately, the ICEBlock app is activism theater
https://lemmy.zip/post/47720571
#aviation #suisse #france #defenseaerienne #otan #usa un peu de raison face aux discours idéologiques
https://www.24heures.ch/suisse-confier-la-defense-de-lespace-aerien-a-la-france-355176925841
#YouTube verschärft Kontrollen bei Premium-Familienabos und prüft nun konsequent, ob alle Nutzer tatsächlich im selben Haushalt leben. Nach 14-tägiger Warnung droht die Sperrung der Premium-Funktionen. https://winfuture.de/news,153335.html?utm_source=Mastodon&utm_medium=ManualStatus&utm_campaign=SocialMedia
#Europa #Deutschland #Niedersachsen #Ort
#Wolfsburg #Elektrobusse #MAN #Fahrzeug
Jetzt auch in Wolfsburg -
Elektrobusse von MAN:
https://www.urban-transport-magazine.com/jetzt-auch-in-wolfsburg-elektrobusse-von-man/
Three years ago, EU policy chief Josep Borrell described Europe as a "garden" and warned that "most of the rest of the world is a jungle, and the jungle could invade the garden".
https://english.news.cn/20250901/e34a0825252e4890b2d079613bb1264e/c.html
#Gaza #Palestine #brics #iran #indonesia #vietnam #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #china
#AntiImperialism #tiktok #cdnpoli
#canada #usa #yemen
@blackmastodon #malaysia #southkorea #brazil #northkorea
#singapore #sco #russia #DismantleZionism

📢 All September book sales and Patreon support for @krishna-author.bsky.social will be donated to school children's mid-day meal program Support the cause 📚 Buy books: amzn.to/45EHFzg 🤝 Support on Patreon: patreon.com/KrishnaPrasa... #booksky #bluesky #blacksky #books #readers #writers #kindle

📢 All September book sales and Patreon support for @krishna-author.bsky.social will be donated to school children's mid-day meal program Support the cause 📚 Buy books: amzn.to/45EHFzg 🤝 Support on Patreon: patreon.com/KrishnaPrasa... #booksky #bluesky #blacksky #books #readers #writers #kindle

Building robust forms in 𝑆𝑤𝑖𝑓𝑡𝑈𝐼 can be tricky, but this guide provides a great walkthrough of how to create reactive forms with validation using 𝑆𝑤𝑖𝑓𝑡𝐷𝑎𝑡𝑎 and 𝐶𝑜𝑚𝑏𝑖𝑛𝑒.
🔗: https://www.wesleymatlock.com/reactive-swiftui-forms-with-swiftdata-validation-amp-combine/
This Week in WordPress #346 https://wpbuilds.com/2025/09/02/this-week-in-wordpress-346/ #WordPress #wpmisc
📢 Arawa recrute un⋅e consultant⋅e / chef⋅fe de projet en #télétravail !
❤️ Rejoignez une entreprise à taille humaine, profondément ancrée dans l'écosystème des logiciels libres.
🔗 https://www.arawa.fr/2025/08/27/arawa-recrute-consultant-chef-de-projet-teletravail/
#️⃣ #Recrutement #Job #Emploi #Cloud #Nextcloud #BBB #BigBlueButton #Collabora #CollaboraOnline #FreeSoftware #RemoteJob #FullRemoteJob #ChefDeProjet #Consultant #ProjectManager #LogicielsLibres #OpenSource #FOSS #FLOSS #FreeSoftware #OnRecrute #NousRecrutons #ITjob #ITjobs
Moin Leute! ✌️🙂
Ich wünsche euch allen einen guten Morgen. Habt alle einen tollen Tag und bleibt sicher und gesund. 🍀
Viele Grüße
Houbey
#dienstag, #gutenmorgen, #mastodon, #deutschland, #troetcafe, #troet_cafe
WhatsApp To Add Close Friends Feature For Status Updates #apps #socialmedia #whatsapp #whatsappstatus
https://www.lowyat.net/2025/364732/whatsapp-to-add-close-friends-feature-for-status-updates/
Ello. So I finally launched the #Flipstarter. I've named the project "Cross linking project for #BCH website(#webring)". Feel free to contact me.
Reposts appreciated.
#indieweb #BitcoinCash #crowdfunding
#foss
Cross posted on #X or old #Twitter. Reposts on both platforms are appreciated:
https://x.com/farooqkz0/status/1962757067669672215
❤️
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

destroywithscience is now streaming Music on Twitch: https://twitch.tv/destroywithscience
MDRL MONDAY // 1 September 2025
#SynthStream #twitch #GSGLive #music #musodon #synth #synthesis @synths

This Brittanic child-wizard device can whisper secrets along wires or through the air. #RaspberryPi #Linux #IPnetworking #OpenSource https://cromwell-intl.com/open-source/raspberry-pi/networking.html?s=mc
#Europa #Deutschland #Krebsbachtal
#Krebsbachtalbahn #Hüffenhardt #Bahn
#Neckarbischofsheim #Verkehr #Ausfall
#Personalmangel #Straßenersatzverkehr
Baden-Württemberg -
Wieder Zwangspause auf Krebsbachtalbahn -
Kein Personal beim Streckennetz-Betreiber AVG:
82% of Jewish Israelis support the ethnic cleansing of Palestinians from Gaza . Nearly 50% support killing all Palestinians in Gaza.
https://x.com/aldamu_jo/status/1962520628520436008
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

RIP!
Graham Greene Dead: 'Dances With Wolves' & 'Wind River' Actor
https://deadline.com/2025/09/graham-greene-dead-dances-with-wolves-wind-river-1236502962/
#indigenous #movies #actor #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
##canada #usa #yemen
@blackmastodon @indigenousculture_us #firstnations

Interssant: in der Bilder und Video überfluteten Welt von #LinkedIn kann man auch ohne visuelle Unterdtützung Reichweite erlangen
#Posten #SozialeNetzwerke #Reichweite
Bloody hell, there are loads of good new PeerTube accounts now. Feels like it's growing as word spreads about individual good instances 👍
This is night and day compared to PeerTube five years ago. Much, much better and a wider range of topics covered. Also a lot more good single-user instances too.
Thousands of protesters packed the streets near downtown Chicago on Monday, singing, chanting and waving signs protesting U.S. President Donald Trump's threats to flood the city with National Guard troops and federal immigration agents. The march was one of roughly 1,000 "Workers over Billionaires" protests across the country on the U.S. Labor Day holiday. #us #usa #news #minimarketonlineltd #America #AmericaNews #AmericaFirst #SaveAmerica #trump #donaldtrump #chicago #losangeles

Thousands of protesters packed the streets near downtown Chicago on Monday, singing, chanting and waving signs protesting U.S. President Donald Trump's threats to flood the city with National Guard troops and federal immigration agents. The march was one of roughly 1,000 "Workers over Billionaires" protests across the country on the U.S. Labor Day holiday. #us #usa #news #minimarketonlineltd #America #AmericaNews #AmericaFirst #SaveAmerica #trump #donaldtrump #chicago #losangeles

“If something doesn’t behave as expected, it’s very hard to find the source.”
Black-box DNSSEC makes failures untraceable until it’s too late.
We interviewed sixteen TLDs about DNSSEC operations. Want to know what keeps them up at night? Full report drops Tuesday, September 9.
#DNSSEC #Resilience #Cascade #OpenSource
🇳🇱In the #netherlands the car where Hind Rajab spent her last moments under 355 bullets from the Israeli army has been turned into a symbol. Her death marks a grim chapter in Zionist history.
https://x.com/abierkhatib/status/1962256885467202014
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social
#AntiImperialism #tiktok #cdnpoli
#canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide #palestina #StopAIPAC #IDFTerrorists #DismantleZionism

Wenn #Linke wie #AfD Politikys argumentieren würden… Dann würden wir wahrscheinlich sagen: „ #Autos wegnehmen? Nein, wir schenken jedem #Haushalt 10 #Lastenräder und ein Abo fürs vegane #Kochstudio. #Deutschland zuerst? Klar – beim Recyclingweltmeistertitel.
Bon pote
Comment Trump peut mettre la France à genoux en 24h
Notre dépendance numérique aux États-Unis est extrême. Il est temps d’inclure la relocalisation numérique dans nos plans de réindustrialisation.
https://mcinformactions.net/comment-trump-peut-mettre-la-france-a-genoux-en-24h
#internet #bigtech #numerique #France #USA
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

🇵🇸 « Si nous perdons le contact avec nos bateaux, avec nos camarades, ne serait-ce que pendant vingt minutes, nous bloquerons toute l'Europe
https://x.com/RevPermanente/status/1962625351223304194
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism

#GlobalSumudFlotilla https://mastodon.social/@la_voix/115133052454213773 : «Nous bloquerons toute l’ #Europe» : les dockers de Gênes feront grève pour protéger la flottille https://mastodon.social/@la_voix/115122960296623948 pour Gaza https://www.revolutionpermanente.fr/Nous-bloquerons-toute-l-Europe-les-dockers-de-Genes-feront-greve-pour-proteger-la-flottille-pour
De l'Indochine à #Gaza quand les #dockers se mobilisent contre la guerre https://www.slate.fr/monde/guerre-indochine-gaza-dockers-mobilisation-blocage-livraison-cargaisons-armement-israel-transport-maritime-desobeissance-syndicats

Ve vlaku směr #korporatnivylet jsem si pustil podcast #kecyapolitika
Tam zmínili Nejpředvolenější song #pirati
To si musíš pustit hned teď!
https://youtu.be/M0rpdbUnYpQ?si=72Hb77FNI0rQQtXz
#youtube


#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism
#Gaza #Palestine #Syria #iran #lebanon #Genocide #geopolitics
@palestine @lebanon @yemen@a.gup.pe.social #SettlerColonialism
#AntiImperialism #tiktok #cdnpoli
#antiPalestinianracism #canada #usa #yemen
@blackmastodon #freePalestine #GazaGenocide #IsraelTerroristState #StopGenocide
#palestina #StopAIPAC #IDFTerrorists #DismantleZionism
► Otro vídeo que me gusta en YT «Henry Rollins Recommends: Joy Division» https://www.youtube.com/watch?v=CGisfMV1PUU #youtube #video #The Sound Of Vinyl