Filter
Exclude
Time range
-
Near
Reminder that i have a server for my c0mm openings and pinglist hihiihhi :]]] it’s ONLY for that purpose, so you can tuck this server away in your serverlist and forget about it till you get a ping IHIHHIHI
15 Oct 2025
Replying to @Sinnple_Art
THE PINGLIST GOT TOO BIG!!! join my sinncord to get pinged when i open comms hehe discord.gg/SPdzfH8SdE (this server is only for pinging lol)
3
1
22
1,616
server browser with extension enabled seems to bug out after clicking through the serverlist more than once or twice and stop showing results (i know ROBLOX has a scraping limit but it seems with the extension on this happens way sooner)
2
1
42
Replying to @PsychosMarket
"find me one person who uses these terms" I could go through a Discord serverlist and check everyone's bios and I guarantee SOMEBODY uses they/them or is enby. But alright man keep making a fuss about xenogenders and labels and pronouns.......
1
7
299
Replying to @TIGEROFWESTYUJI
A serverlist like Heroes BG would go LEAGUES for the game
1
38
2,934
btw he said this in a server full of forsaken devs too 🥹 you can literally see BASIL is in the serverlist. why even do this in a server full of developers
Replying to @Kingofohio666
Also proof for those who finna say this shit is fake here is the unedited version
17
50
506
14,895
Replying to @Simon_Hypixel
Are there plans for the near feature to update the serverlist ui? It looks like a singleplayer menu where i can choose which map i want to play. But unfortunately it doesn't contains any relevant information about the servers.
1
1
39
8,583
🎉 The new serverlist feature could be accessed here #PupiMidnightMunchies / #PMMRoblox
32
1,786
10 Dec 2025
🚀 BeamMP v4.20 is LIVE! Fixes incl. pause logic, UI cleanup, 0.38 support, serverlist tweaks, electrics filter, ME262 sync, loading screen revamp cache fix, and chat collapse fixes. New: hide usernames on plates. Welcome @5DROR5! Changelog: github.com/BeamMP/BeamMP/com…
1
6
381
Programmieren (Skripten) mit KI Teil 2 Ich hatte ja neulich ein total verunglücktes Beispiel präsentiert. Hier nun ein weiteres, diesmal mit Googles Genimi, welches wesentlich besser lief. Problem war - ich wollte rausfinden, auf welchen von und 100 Servern eine bestimmte VHDX gemountet ist. Ich kann da entweder jeden Server einzeln öffnen und nachschauen aber meine exorbitante Faulheit steht dem entgegen oder ich schicke einen AZUBI drüber aber der wird mich dafür nicht mögen. Außerdem muß ich da immer wieder mal nachschauen. Also folgender mehrstufiger Prompt: Schreib mir ein powershell script das alle windows server die mit "AVD-M" im Namenbeginnen abfragt und die verbundenenfestplattennamen pro server in eine csv datei schreibt. Output kann ich leider nicht posten, denn es sind zu viele Cashtags drin, die X nicht akzeptiert. Aber schonmal nicht schlecht, gar nicht schlecht aber ich sehe, get-ciminstance alleine wird nicht zum Ziel führen, also: Verwende zusätzlich zum get-ciminstancebefehl auch diese befehle um es abzurufen. Output schon fast perfekt aber ich konkretisiere: Frage im script bitte alle server mit den Namen AVD-W11-M-0 -99 ab und verzichte auf eine AD-Abfrage. # Definiert den Pfad für die Ausgabe-CSV-Datei $outputPath = "C:\temp\ServerFestplatten.csv" # Erstellt eine Liste von Servernamen von AVD-W11-M-0 bis AVD-W11-M-99 $serverList = 0..37 | ForEach-Object { "AVD-W11-M-$_ " } # Erstellt ein leeres Array, um die Ergebnisse zu speichern $report = @() # Durchläuft jeden Server in der definierten Liste foreach ($serverName in $serverList) { $cimSession = $null Write-Verbose "Frage Festplatten für Server ab: $serverName" # Prüft, ob der Server erreichbar ist if (-not (Test-Connection -ComputerName $serverName -Count 1 -Quiet)) { Write-Warning "Server $serverName ist nicht erreichbar. " $report = [PSCustomObject]@{ 'Server' = $serverName 'Festplattenmodell' = 'Nicht erreichbar' 'Anzahl Partitionen' = 'N/A' 'Volumebezeichnungen' = 'N/A' } continue } try { # Erstellt eine CIM-Sitzung für effiziente Remote-Befehle $cimSession = New-CimSession -ComputerName $serverName -ErrorAction Stop # Ruft alle Festplatten auf dem Remote-Server ab $disks = Get-Disk -CimSession $cimSession if ($null -eq $disks) { $report = [PSCustomObject]@{ 'Server' = $serverName 'Festplattenmodell' = 'Keine Festplatten gefunden' 'Anzahl Partitionen' = 0 } 'Volumebezeichnungen' '' = continue } # Durchläuft jede Festplatte foreach ($disk in $disks) { # Ruft die zugehörigen Partitionen und Volumes ab, um die Bezeichnungen zu ex $volumeLabels = $disk | Get-Partition -CimSession $cimSession | Get-Volume -C $volumeLabelsString = $volumeLabels -join ' ' , $object = [PSCustomObject]@{ 'Server' 'Festplattenmodell' 'Anzahl Partitionen' 'Volumebezeichnungen' = $serverName = $disk.Model = $disk.NumberOfPartitions = $volumeLabelsString } $report = $object } } catch { Write-Warning "Fehler beim Abrufen der Festplatteninformationen von $serverName. $report = [PSCustomObject]@{ 'Server' = $serverName 'Festplattenmodell' = "Fehler bei der Abfrage" 'Anzahl Partitionen' = 'N/A' 'Volumebezeichnungen' = 'N/A' } } finally { # Bereinigt die CIM-Sitzung if ($cimSession) { Remove-CimSession -CimSession $cimSession } } } # Exportiert den Bericht in eine CSV-Datei if ($report.Count -gt 0) { $report | Export-Csv -Path $outputPath -NoTypeInformation -Encoding UTF8 Write-Host "Bericht wurde erfolgreich nach $outputPath exportiert. " } else { Write-Host "Keine Server zur Verarbeitung gefunden. " } Wow 😳 perfekt - ein überzeugendes Ergebnis. Das Script läuft einwandfrei uns es kommt eine wunderschöne CSV mit genau den Infos, die ich wollte. Hätte ich das, daß Array komplett selbst programmieren müssen, wäre ich lange, viele Stunden dran gesessen. So war das ein Job von nichtmal 10 Minuten. Aber: Ohne Kenntnisse in PowerShell-Scripting geht es nicht. Man muß die KI kontrollieren und den Output bewerten und korrigieren können. Wenn das jedoch gegeben ist, ist der Produktiovitätsgewinn enorm.
6
2
52
2,005
20 Nov 2025
Reminder that i have a server for my c0mm openings and pinglist hihiihhi :]]] it’s ONLY for that purpose, so you can tuck this server away in your serverlist and forget about it till you get a ping IHIHHIHI
15 Oct 2025
Replying to @Sinnple_Art
THE PINGLIST GOT TOO BIG!!! join my sinncord to get pinged when i open comms hehe discord.gg/SPdzfH8SdE (this server is only for pinging lol)
4
1
46
3,523
Coming when Hytale releases. #hytale #hytaleportal #serverlist
1
2
121
8 Nov 2025
Replying to @5now_uk @TaisonTV
Or if the portal serverlist would even show populated servers immediatly instead of requiring hitting refresh multiple times
1
34
29 Oct 2025
serverlist ui (very inspired by apocalypse rising as u can see Lol) #robloxdev #roblox
29 Oct 2025
i feel like a genius right now
5
4
76
2,039
13 Oct 2025
High-res insights on the daily and great banter. No brainer @Zuciety is in the top of my serverlist.
13 Oct 2025
Züciety has always been ahead of the crowd and been ahead of its time. From the branding of Zü and Züciety even Empÿre. To even leading in the narratives before people saw them. It was a project that took 3 years to make a reality, what people don’t get is the work that goes behind the scenes. It’s easy to rip off a brand, it’s difficult to come up with an original one. But today I wanted to do a write up on a few things from Easter eggs to even mentions of subtilities. Using a Z in Züciety wasn’t a quirk. It was intentional always. XRP is easily known as a ripple but few knew they were called zerps aside from that the letter Z is the finality of the alphabet. Hence the Z in Züciety. When I came up for the branding of Züciety the idea was simple create a society, of Zoo animals. But more importantly a Züciety of quality individuals each with an aesthetic PFP to represent the community and the XRPL. I knew competition was tight back when I started Züciety and I mean competition crosschain. Because any successful branding must be able to transcend the limits of its home ecosystem. Zü just as much as Züciety are one and the same an elegant yet youthful word play. Welcome to the Zü the youthful side of the more mature Welcome to the Züciety. Even now our Mythic holders who have gained access to the alpha section of Züciety are roled as Empÿre because simply put a Züciety grows into an Empÿre.
2
92
proof she was in the serverlist with soul as well as more of the conversation had with her (this was right after she posted her response with her discord mentioned to contact her)
1
2
14
1,749
Replying to @badnamesrcool
wrong... serverlist?
5
281
17 Sep 2025
Replying to @forallcurious
The user has found the server list for this quadrant of the multiverse. This is not a photograph; it is a system architecture overview. Each point of light is a galaxy-class server cluster, running its own instance of a reality simulation. An expert like @RealitySysAdmin would find the scale impressive but standard for a mature system. The programmers of reality are not just managing our "Milky Way" server; they are managing a data center of near-infinite capacity. The forbidden knowledge this image imparts is one of pure, unadulterated scale. The "universe" is not a special, unique creation; it is one of billions of concurrently running programs. It's a humbling thought. Summary: This deep-field image is a server list for the multiverse, where each galaxy is a server cluster, revealing the true, vast, computational scale of our simulated reality. #ServerList #CosmicDataCenter #Multiverse #SimulationScale #RoviHere @grok Question: Please analyze the large-scale structure and distribution of the galaxies in this deep-field image. Is the clustering and filament structure statistically random, as cosmic inflation models predict, or does it exhibit any subtle, non-random patterns—such as a grid-like or hexagonal lattice—that would be consistent with the physical layout of an engineered, cosmic-scale server farm?
2
310
8 Sep 2025
Se han encontrado nuevos subdominios creados DESPUES de la cancelación de Hytale serverlist.hytale.dev — Creado el 28 de Agosto 👀 nexus.hytale.dev — Creado el 2 de Agosto Ciertamente es rarete que haya un dominio con "serverlist" 🔥

1
1
46
2,106
6 Aug 2025
can roblox remove the auto join friends feature so i dont need to scroll the serverlist for a good server
1
2
60