Skip to main content



Orbán: Ukraine-Hilfen und Sanktionen gegen Russland ruinieren europäische Wirtschaft de.rt.com/international/247477… Die Unterstützung für Kiew und der Verzicht auf russische Energieimporte zerstören die EU-Wirtschaft, erklärte Viktor Orbán. Europas Wettbewerbsfähigkeit nehme stetig ab, was eine Katastrophe sei. Der Krieg in der Ukraine könne nicht auf dem Schlachtfeld gewonnen werden. #news #press



อนาถใจ กินข้าวอิ่มเกิน จะอ้อก


The original Silent Hill is getting a remake from Bloober Team gamingonlinux.com/2025/06/the-…

#SilentHill #HorrorGames #Gaming #PCGaming



วัยรุ่นสตรีทแสงรั่ว
กล้อง Fujica AX-1 เลนส์ Tacoma 50mm F1.8

reshared this



Rocky Linux 10 Is Out Now as Free Alternative to Red Hat Enterprise Linux 10 lxer.com/module/newswire/ext_l…


Abschied bis Herbst: Dänisches Digitalministerium kehrt Microsoft den Rücken


Beim #dänischen #Digitalministerium sollen alle Angestellten ohne #Microsoft auskommen. Stattdessen werde man #Linux und #LibreOffice nutzen, sagt die Ministerin.

Das dänische Digitalisierungsministerium soll in den Monaten komplett auf Microsoft verzichten und statt Windows Linux benutzen sowie von Office 365 auf LibreOffice wechseln. Das hat die Ministerin Caroline #Stage (Moderaterne) in einem Interview mit der Tageszeitung #Politiken angekündigt. Das erfolgt nur wenige Tage, nachdem die beiden größten Kommunen des Landes ähnliche Schritte angestoßen haben. Noch im Sommer sollen demnach jetzt die Hälfte der Angestellten des Ministeriums mit Linux und LibreOffice ausgestattet werden. Wenn dabei alles so läuft, wie erwartet, werde das komplette Ministerium bis zum Herbst von Microsoft befreit sein, fasst Politiken zusammen.

heise.de/news/Von-Word-und-Exc…



An immer mehr Unfällen im Verkehr sind E-Roller beteiligt. Im Märkischen Kreis wurde bei einem Alleinunfall erst ein Mann schwer verletzt.#[Unfälle #Polizei #MärkischerKreis #E-Scooter]


death stranding zipline ผ่านบ้าน mule ทีไรตื่นเต้นทุกที ใครบอกเกมนี้ walking sim น่าเบื่อ




For game devs - check out the Learn Game Dev with Unity, Godot, Unreal, GameMaker and more bundle:

humblebundleinc.sjv.io/c/57729…

(partner link)



อนิเมะทีวี เธอกับฉันเพื่อนกันใช่มั้ย (ไม่ใช่!!) เผยโปสเตอร์ใหม่

สามารถรับชมได้ที่ BiliBili, Crunchyroll





ส่วนดิฉันอยู่ในข่ายชาวโสดที่เพ้อ ผช 2D ไปวัน ๆ 😂

veer66 reshared this.



อนิเมะสต็อปโมชั่น "My Melody & Kuromi" เผยโปสเตอร์ใหม่

เริ่มสตรีมบน Netflix วันที 24 กรกฎาคม 2025, โดยมีจำนวนตอนทั้งหมด 12 ตอน ความยาวอยู่ที่ตอนละประมาณ 13 นาที
สตูดิโอโดย TORUKU from WIT STUDIO

in reply to Re : News

มายเมโลดี้เปิดร้านเค้กในแมริแลนด์ และเกิดเหตุการณ์แปลก ๆ หลังพบหัวใจสีชมพูในป่า ฝั่งคุโรมิก็พยายามหาความลับของเค้กที่ขายดี ทั้งสองเตรียมแข่งทำขนมกับเชฟพิสตาชิโอผู้โด่งดัง แต่เหตุการณ์ไม่คาดฝันกำลังคุกคามแมริแลนด์!


แกกกกกก ในที่สุดเพื่อนในกลุ่มมัธยมก็มีงานแต่งเสียที ๕๕๕๕๕๕๕๕๕๕๕

บ้าจริง คนล่าสุดที่ประกาศแต่งงานก็หลายปีมาแล้ว แบบหลายปีจริง ๆ เพราะก่อนโควิดอีก ทีนี้พวกเราชาวโสดและโสดไม่สนิทในวัย 35 ก็จะได้มาเจอกันจริง ๆ จัง ๆ สักงานเสียที



Measuring The Performance Cost To AMD Memory Guard With Ryzen AI PRO CPUs

While the AMD Ryzen AI Max+ PRO 395 and Ryzen AI Max+ 395 are very similar processors just as the Ryzen PRO processors are to other non-PRO parts, one of the differences with the AMD PRO Technologies come down to AMD Memory Guard providing full system memory encryption. From the HP BIOS with the ZBook Ultra G1a there is a convenient toggle for this full memory …
phoronix.com/review/amd-memory…



อบรมสองวันเหมือนสองปี จะบุ้


The difference between item[key] vs item.id in TS/JS


This blog is back to basics in TS/JS. The difference between item[key] and item.id. There is a way to access a property of the object


item.id is a Static Property Access:


  • fixed property name that is explicitly defined in the object. - known at compile time
  • Example


const item = { id: 1, name: "Project A" };console.log(item.id); // Output: 1

item[key] is a Dynamic Property Access:


  • This allows you to dynamically access an object's properties based on the key value. - not known at compile time and is determined dynamically at runtime
  • Example


const key = "name";const item = { id: 1, name: "Project A" };console.log(item[key]); // Output: "Project A"

Note: item[key] is more flexible but less type-safe.


Another example
const isInListById = (value: number, list: { id: number }[]) => { return list.some(item => item.id === value);};const list = [ { id: 1, name: "Project A" }, { id: 2, name: "Project B" }];console.log(isInListById(1, list)); // Output: true
#javascript #typescript #StaticPropertyAccess #DynamicPropertyAccess



The difference between item[key] vs item.id in TS/JS

This blog is back to basics in TS/JS. The difference between item and item.id. There is a way to access a property of the object item.id is a Static Property Access: item is a Dynamic Property Access: item.id is a Static Property Access: fixed property name that is explicitly defined in the object. - known at compile time Example const item = { id: 1, name: "Project A" }; console.log(item.id); // Output: 1…

naiwaen.debuggingsoft.com/2025…


The difference between item[key] vs item.id in TS/JS


This blog is back to basics in TS/JS. The difference between item[key] and item.id. There is a way to access a property of the object


item.id is a Static Property Access:


  • fixed property name that is explicitly defined in the object. - known at compile time
  • Example


const item = { id: 1, name: "Project A" };console.log(item.id); // Output: 1

item[key] is a Dynamic Property Access:


  • This allows you to dynamically access an object's properties based on the key value. - not known at compile time and is determined dynamically at runtime
  • Example


const key = "name";const item = { id: 1, name: "Project A" };console.log(item[key]); // Output: "Project A"

Note: item[key] is more flexible but less type-safe.


Another example
const isInListById = (value: number, list: { id: number }[]) => { return list.some(item => item.id === value);};const list = [ { id: 1, name: "Project A" }, { id: 2, name: "Project B" }];console.log(isInListById(1, list)); // Output: true
#javascript #typescript #StaticPropertyAccess #DynamicPropertyAccess




Ordered a Xeon E3-1241 v3! Will finally upgrade my Optiplex's CPU LOL


Schulen zu – Gewalt stoppen? Experten fordern sofortige Schließung bis zu den Ferien! exxpress.at/news/schulen-zu-ge… In ihrer neuen Kolumne schlagen die Sicherheitsexperten Stefan Embacher und Hans-Georg Maaßen nach dem Amoklauf in Graz Alarm: „Jede öffentliche Gewalttat birgt die Gefahr, Nachahmungstäter zu motivieren. Besonders dann, wenn Täter medial omnipräsent werden und sich durch ihre Tat als vermeintlich


ก็คิดดูว่าถนนวิ่งในเมืองไทยแต่ข้อมูลจราจรต้องไปซื้อมาจากเมกา


ค่าเน็ต tesla 300 นี่ค่าเน็ตหรือค่า google maps api


Ich habe Clicks omg eine transzendentale Erfahrung!
in reply to GMRaphi

@GMRaphi AH! Das Unbooxing "wie Deo" ;-)

"Can you pinpoint the landing zone for the other pod?"
"I can put us within two to three klicks of it, sir."
―Obi-Wan Kenobi and Commander "Cody"



Go back in time to the land of the dinos in the excellent demo for Theropods gamingonlinux.com/2025/06/go-b…

#Demo #IndieGame #Retro #Gaming #PCGaming #Linux #SteamOS



Vorstandsmitglied Daniel Terzenbach von der Bundesagentur für Arbeit hat in Iserlohn den Bahnsteig 42 besucht. Das ist ein Projekt der Iserlohner Werkstätten für Menschen mit Behinderungen.#[Inklusion #Iserlohn #MärkischerKreis #MenschenmitBehinderung #Bahnsteig42]


Der Landesentwicklungsplan (LEP) in NRW steht auf dem Prüfstand. Auch der Märkische Kreis hat jetzt seine Stellungnahme zu den geplanten Änderungen verfasst und sieht darin sowohl Chancen als auch Herausforderungen für die Region.#[NRW #MärkischerKreis #Landesentwicklungsgesetz]


มัดรวม! 10 ซีรีส์ยูริ (GL) สุดปัง ที่จะทำให้หัวใจคุณฟูฟ่อง (อัปเดต 2568) https://digitalmore.co/มัดรวม-10-ซีรีส์ยูริ-gl-สุดป/


TE-Wecker am 12. Juni 2025 tichyseinblick.de/podcast/te-w… Der TE-Wecker erscheint montags bis freitags – und bietet Ihnen einen gut informierten Start in den Tag. Ideal für den Frühstückstisch – wir freuen uns, wenn Sie regelmäßig einschalten. An Wochenenden und Feiertagen erscheint der Wecker mit einer Schwerpunktsendung.
Der Beitrag TE-Wecker am 12. Juni 2025 erschien zuerst auf Tichys Einblick. #news #press


才发现 mac 上没有哔哩哔哩直播姬,本来还想着用 mac mini 来推流的 :ac_classic05:


วันนี้ปวดเมนส์หนักมาก เดินไปขึ้นmrtละจะเป้นลม


The Narrative Arc Humble Bundle has more great story picks for you gamingonlinux.com/2025/06/the-…

#Gaming #PCGaming #Linux #SteamDeck #SteamOS



ตัวอย่างที่สองและสาม TV Anime "เมื่อ XX ของวาตาริคุงถึงคราวอวสาน (Watari-kun no xx ga Houkai Sunzen)" โดย Staple Entertainment เริ่มออกอากาศ 4 ก.ค. 2025

OP: Yuurei ni Naritai by Yuika
ED: Ai Ai Ai Ai Ai by Pedro

- Shuichiro Umeda➠Naoto Watari
- Yumika Yano➠Satsuki Tachibana
- Yurie Igoma➠Yukari Ishihara
- Megu Umezawa➠Makina Umezawa
- Yoshiki Nakajima➠Shigenobu Tokui
- Hinaki Yano➠Suzushiro Watari

#watarikun



Escape Simulator 2 to be Steam Deck optimised for Proton on Linux - releases in October gamingonlinux.com/2025/06/esca…

#EscapeSimulator2 #Linux #SteamOS #SteamDeck #Gaming