SysMochiD's Avatar

SysMochiD

@sysmochid.bsky.social

Passionate about Computer Science and the endless possibilities of code. Huge BTS fan (Jimin is my muse) who loves getting lost in music, video games, and animated worlds. Always curious, always creating.

55 Followers  |  44 Following  |  45 Posts  |  Joined: 29.11.2024  |  2.0341

Latest posts by sysmochid.bsky.social on Bluesky

I'm sorry but he looks so incredibly cute in this picture ๐Ÿ˜ญ

11.02.2025 20:15 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Preview
a man wearing sunglasses , a scarf and a jacket is standing in front of a fountain . ALT: a man wearing sunglasses , a scarf and a jacket is standing in front of a fountain .

Well, hello there.

11.02.2025 20:13 โ€” ๐Ÿ‘ 5    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Preview
โ€žLike Crazyโ€œ von Jimin bei Appleย Music Titel ยท 2023 ยท Dauer 3:32

Sometimes I forget how incredibly good that song is
#Jimin

music.apple.com/de/album/lik...

03.02.2025 12:42 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Hey Army please watch this video if you haven't watched j-hopes gala des piรจces jaunes 2025

youtube.com/watch?v=tRV_...

#jhope #BTS

28.01.2025 20:58 โ€” ๐Ÿ‘ 9    ๐Ÿ” 2    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 0

Obsessed with the orchestra version of More! ๐Ÿ”ฅ

28.01.2025 22:30 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

IT'S LIVE!!!

28.01.2025 20:05 โ€” ๐Ÿ‘ 26    ๐Ÿ” 7    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 1
Video thumbnail

Current life goal: Live long enough to see Jimin perform Like Crazy live.
#Jimin

28.01.2025 19:53 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

it says a lot about an industry if a free and open source alternative to every product on the market can destroy 1 trillion dollars of โ€œvalueโ€ in one day lol

27.01.2025 22:29 โ€” ๐Ÿ‘ 14657    ๐Ÿ” 2155    ๐Ÿ’ฌ 124    ๐Ÿ“Œ 61

New #moots hunting boost ๐Ÿƒโ€โ™€๏ธโ€โžก๏ธ

About me:
โง 97liner
โง Due to my studies and my job I'm very busy sometimes and can't come online for several days

My interests:
โง BTS (Kpop as a genre too)
โง Every tech related subject
โง Movies and TV shows
โง Games -> mostly cozy games
โง MDZS
โง Fashion

#promosky

28.01.2025 17:59 โ€” ๐Ÿ‘ 5    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

What an icon ๐Ÿ˜Œ

28.01.2025 15:45 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

cSs iSnT a pRogRamMinG lAngUaGe

28.01.2025 10:06 โ€” ๐Ÿ‘ 71    ๐Ÿ” 5    ๐Ÿ’ฌ 4    ๐Ÿ“Œ 0
Post image

"Are you sure?"
#jimin
#bts
#btsfanart

26.01.2025 12:09 โ€” ๐Ÿ‘ 132    ๐Ÿ” 34    ๐Ÿ’ฌ 2    ๐Ÿ“Œ 2
Preview
โ€žD-DAYโ€œ von Agust D bei Appleย Music Album ยท 2023 ยท 10 Titel

Pulling an all-nighter with one of my favorite albums ๐Ÿซก
#LateNightCoding #AgustD

music.apple.com/de/album/d-d...

27.01.2025 20:46 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

honestly, i'm enjoying silicon valley's meltdown over deepseek, probably a lot more than i should

25.01.2025 16:52 โ€” ๐Ÿ‘ 387    ๐Ÿ” 40    ๐Ÿ’ฌ 13    ๐Ÿ“Œ 5
New JavaScript Set Methods
const set1 = new Set(['wes', 'kait']);
const set2 = new Set(['wes', 'scott']);
Difference
Elements in set2 but not in set1
set2.difference(set1)
> ['scott']
Intersection
Elements that exist in both sets
set1.intersection(set2)
> ['wes']
Symmetric Difference
Elements in either set, but not both
set1.symmetricDifference(set2)
> ['kait', 'scott']
Union
All elements from both sets
set1.union(set2)
> ['wes', 'kait', 'scott']
Is Disjoint From
True if sets share no elements
set1.isDisjointFrom(set2)
> false
Is Subset Of
True if all elements are in other set
set1.isSubsetOf(set2)
> false
Is Superset Of
True if it contains all other's elements
set1.isSupersetOf(set2)
> false

New JavaScript Set Methods const set1 = new Set(['wes', 'kait']); const set2 = new Set(['wes', 'scott']); Difference Elements in set2 but not in set1 set2.difference(set1) > ['scott'] Intersection Elements that exist in both sets set1.intersection(set2) > ['wes'] Symmetric Difference Elements in either set, but not both set1.symmetricDifference(set2) > ['kait', 'scott'] Union All elements from both sets set1.union(set2) > ['wes', 'kait', 'scott'] Is Disjoint From True if sets share no elements set1.isDisjointFrom(set2) > false Is Subset Of True if all elements are in other set set1.isSubsetOf(set2) > false Is Superset Of True if it contains all other's elements set1.isSupersetOf(set2) > false

You should be using JavaScript sets more often

Now in all browsers and Node - these 7 new set methods are key for when trying to compare two arrays or sets of data.

21.01.2025 19:43 โ€” ๐Ÿ‘ 1613    ๐Ÿ” 149    ๐Ÿ’ฌ 51    ๐Ÿ“Œ 11

He looks so fine ๐Ÿ‘€

21.01.2025 19:10 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0
CSS-Tricks - A Website About Making Websites

So happy that this website exists
css-tricks.com

21.01.2025 18:52 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Video thumbnail

One of the best edits to ever exist.
#RM

21.01.2025 18:48 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Unpopulรคre Meinung: Die Grรผnen mรผssen im Wahlkampf dringend prรคsenter und lauter auftreten. Ihr Image wird momentan von allen Seiten massiv beschรคdigt โ€“ grรถรŸtenteils ungerechtfertigt. Ich bin selbst kein groรŸer Fan der Partei, aber sie ist immer noch besser als die Alternativen.

21.01.2025 18:24 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
BTS J-HOPE First Solo World Tour: Hope on the Stage ๐Ÿ”ฅ  Everything You Need to Know! ๐Ÿ’œ๐Ÿ˜ฑ JHOPE TOUR
YouTube video by The Extravagant Review BTS J-HOPE First Solo World Tour: Hope on the Stage ๐Ÿ”ฅ Everything You Need to Know! ๐Ÿ’œ๐Ÿ˜ฑ JHOPE TOUR

BTS J-HOPE First Solo World Tour: Hope on the Stage ๐Ÿ”ฅ Everything You Need to Know! ๐Ÿ’œ๐Ÿ˜ฑ JHOPE TOUR
Please like and share!๐Ÿ‘
youtu.be/9VnHrv_vnoA?...
#BTS
#HOPE_ON_THE_STAGE_TOUR #HOS_TOUR
#์ œ์ดํ™‰ #jhope #jhope_TOUR
#HOPE_ON_THE_STAGE_TOUR_US #HOS_TOUR_US
#HOPE_ON_THE_STAGE_TOUR_CDMX

21.01.2025 16:23 โ€” ๐Ÿ‘ 2    ๐Ÿ” 1    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0
Preview
โ€žLike Crazyโ€œ von Jimin bei Appleย Music Titel ยท 2023 ยท Dauer 3:32

Only a few more months and Jimin will be back #BTS #Jimin ๐Ÿฅน
music.apple.com/de/album/lik...

21.01.2025 17:49 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Let me just say that after seeing what's currently happening to other social media platforms like Meta, Instagram and X, I'm very glad that Bluesky exists as an alternative.

21.01.2025 17:46 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

react > vue

12.01.2025 20:45 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

the meanest react you can leave on github issues is not ๐Ÿ‘Ž, but ๐Ÿ˜•

01.01.2025 17:05 โ€” ๐Ÿ‘ 2562    ๐Ÿ” 91    ๐Ÿ’ฌ 34    ๐Ÿ“Œ 3

Streets are saying that BCD is back
#BTS

01.01.2025 16:36 โ€” ๐Ÿ‘ 2    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Post your bias in black and white (manifesting a MiniMoni collab in 2025 ๐Ÿคž)

30.12.2024 21:59 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

I've read that the driver apparently drove through a pedestrian street that is well known to be frequented by families and their children ๐Ÿ™ Just horrible.

20.12.2024 21:33 โ€” ๐Ÿ‘ 0    ๐Ÿ” 0    ๐Ÿ’ฌ 0    ๐Ÿ“Œ 0

Terrorism probably. The driver is from Saudi-Arabia.

20.12.2024 21:29 โ€” ๐Ÿ‘ 4    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

Gravity is sooo good but I think I prefer SOS ๐Ÿ˜…

10.12.2024 09:54 โ€” ๐Ÿ‘ 1    ๐Ÿ” 0    ๐Ÿ’ฌ 1    ๐Ÿ“Œ 0

@sysmochid is following 19 prominent accounts