• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 19:19
CET 00:19
KST 08:19
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
ByuL: The Forgotten Master of ZvT30Behind the Blue - Team Liquid History Book19Clem wins HomeStory Cup 289HomeStory Cup 28 - Info & Preview13Rongyi Cup S3 - Preview & Info8
Community News
BGE Stara Zagora 2026 cancelled10Blizzard Classic Cup - Tastosis announced as captains12Weekly Cups (March 2-8): ByuN overcomes PvT block4GSL CK - New online series18BSL Season 224
StarCraft 2
General
BGE Stara Zagora 2026 cancelled BGE Stara Zagora 2026 announced ByuL: The Forgotten Master of ZvT Terran AddOns placement Blizzard Classic Cup - Tastosis announced as captains
Tourneys
StarCraft Evolution League (SC Evo Biweekly) [GSL CK] Team Maru vs. Team herO WardiTV Team League Season 10 Master Swan Open (Global Bronze-Master 2) RSL Season 4 announced for March-April
Strategy
Custom Maps
Publishing has been re-enabled! [Feb 24th 2026] Map Editor closed ?
External Content
The PondCast: SC2 News & Results Mutation # 516 Specter of Death Mutation # 515 Together Forever Mutation # 514 Ulnar New Year
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ ASL21 General Discussion BW General Discussion Gypsy to Korea Are you ready for ASL 21? Hype VIDEO
Tourneys
[Megathread] Daily Proleagues [BSL22] Open Qualifiers & Ladder Tours IPSL Spring 2026 is here! ASL Season 21 Qualifiers March 7-8
Strategy
Simple Questions, Simple Answers Soma's 9 hatch build from ASL Game 2 Fighting Spirit mining rates Zealot bombing is no longer popular?
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread PC Games Sales Thread No Man's Sky (PS4 and PC)
Dota 2
Official 'what is Dota anymore' discussion The Story of Wings Gaming
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Five o'clock TL Mafia Mafia Game Mode Feedback/Ideas Vanilla Mini Mafia TL Mafia Community Thread
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread Mexico's Drug War NASA and the Private Sector
Fan Clubs
The IdrA Fan Club
Media & Entertainment
Movie Discussion! [Req][Books] Good Fantasy/SciFi books [Manga] One Piece
Sports
Formula 1 Discussion 2024 - 2026 Football Thread General nutrition recommendations Cricket [SPORT] TL MMA Pick'em Pool 2013
World Cup 2022
Tech Support
Laptop capable of using Photoshop Lightroom?
TL Community
The Automated Ban List
Blogs
Iranian anarchists: organize…
XenOsky
FS++
Kraekkling
Shocked by a laser…
Spydermine0240
Gaming-Related Deaths
TrAiDoS
Unintentional protectionism…
Uldridge
ASL S21 English Commentary…
namkraft
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1695 users

The Big Programming Thread - Page 794

Forum Index > General Forum
Post a Reply
Prev 1 792 793 794 795 796 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
November 06 2016 23:58 GMT
#15861
I find python to be best for competitive programming because its default collections are super easy to use. Case in point, you can implement a priority queue as just a wrapper around a built-in min-heap. Yeah you get a bit of a performance penalty due to interpreting but I find that tradeoff ok because I'm personally much more likely to come up with an e.g. O(nlogn) solution instead of an O(n^2) one in Python, which is more important
slmw
Profile Blog Joined October 2010
Finland233 Posts
November 07 2016 05:42 GMT
#15862
I don't think the choice of a programming language should matter at all when designing a solution on an abstract level. It sounds quite absurd to me that you'd have an easier time to come up with more efficient algorithms or data structures with Python if you're familiar with both C++ and Python. Obviously, if you're more familiar with one language it's probably easier to implement algorithms in that language. The performance difference is definitely significant if you're actually trying to compete.
Chocolate
Profile Blog Joined December 2010
United States2350 Posts
Last Edited: 2016-11-07 07:03:18
November 07 2016 07:03 GMT
#15863
When you're competing you are also graded on time at which you come up with a solution and overall have a max time limit, I think actually writing an efficient solution in python is a lot faster than in c++ (where I'd be more tempted to use a "dumber" algorithm to not mess with the STL), but that could just be me.
Manit0u
Profile Blog Joined August 2004
Poland17692 Posts
November 07 2016 09:34 GMT
#15864
I need a bit of help with sysadmin stuff...

System: Ubuntu 14.04
Problem: I have a load balancer working on port 11223 but it won't accept connections from outside of the system (curl localthost:11223/url works fine, trying it from another computer in the network does not).

I've tried 2 things:

$sudo iptables -I INPUT -p tcp -s 0.0.0.0/0 --dport 11223 -j ACCEPT
$sudo ufw allow 11223


Some outputs:

netstat:
tcp 0 0 127.0.0.1:11223 0.0.0.0:* LISTEN

nmap:
Host is up (0.000045s latency).
PORT STATE SERVICE
11223/tcp closed unknown

iptables:
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:11223


How can I open this port to public?
Time is precious. Waste it wisely.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2016-11-07 10:19:53
November 07 2016 10:16 GMT
#15865
--- Nuked ---
Manit0u
Profile Blog Joined August 2004
Poland17692 Posts
November 07 2016 10:40 GMT
#15866
Yeah, just found out that in the load balancer config it was bound to 127.0.0.1 instead of public IP. Changing the config and restarting it solved the problem.
Time is precious. Waste it wisely.
phar
Profile Joined August 2011
United States1080 Posts
Last Edited: 2016-11-07 17:35:33
November 07 2016 17:33 GMT
#15867
Most (big name) programming competitions don't allow use of Python. It's generally C, C++, maybe Java. There are some exceptions.

But yea if it's allowed, and you don't think you can get to better algorithms in a faster language, Python will do you better. You'll get smoked by any team that has a math person doing the algorithms and someone with a strong grasp of C++ by virtue of Python being slow AF.
Who after all is today speaking about the destruction of the Armenians?
RainWhisper
Profile Joined May 2009
United Arab Emirates333 Posts
November 08 2016 07:08 GMT
#15868
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.


Hi can i get one McGracken please?
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2016-11-08 07:34:55
November 08 2016 07:34 GMT
#15869
--- Nuked ---
RainWhisper
Profile Joined May 2009
United Arab Emirates333 Posts
November 08 2016 07:51 GMT
#15870
On November 08 2016 16:34 Nesserev wrote:
Show nested quote +
On November 08 2016 16:08 MarwanBaki wrote:
+ Show Spoiler +
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



Is your example representative of your problem, because, if so, you could just use copy paste.



If you mean manually copy paste. I have about 4,000 Root Folders - with about 20 folders in each. That would easily take 3-5 hours - with the possibility of a few mistakes.
Hi can i get one McGracken please?
Acrofales
Profile Joined August 2010
Spain18232 Posts
Last Edited: 2016-11-08 08:08:26
November 08 2016 08:00 GMT
#15871
On November 08 2016 16:51 MarwanBaki wrote:
Show nested quote +
On November 08 2016 16:34 Nesserev wrote:
On November 08 2016 16:08 MarwanBaki wrote:
+ Show Spoiler +
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



Is your example representative of your problem, because, if so, you could just use copy paste.



If you mean manually copy paste. I have about 4,000 Root Folders - with about 20 folders in each. That would easily take 3-5 hours - with the possibility of a few mistakes.

Still confused. What's wrong with cntrl-a cntrl-x, make new folder, cntrl-v. Wait for 4000 folders to be moved. In NTFS or ext2/3/4 this should be a few seconds at most. Other file systems may require longer.
TBO
Profile Joined September 2009
Germany1350 Posts
Last Edited: 2016-11-08 08:21:31
November 08 2016 08:20 GMT
#15872
he can't paste all 4000 at once because he needs to put them not in 1 new folder but in 4000 new ones. I didn't find any premade solution for his problem, should be easy enough to program though. On the other hand before doing that you should check if you can not just change some setting in teh program to have it accept your old folder layout (or maybe it is in an environment variable? Writing a short mail to their support also might help.
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
November 08 2016 08:44 GMT
#15873
c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

where're the 4000 new ones? it looks like everything inside Documents just moved into Personal folder.
Age of Mythology forever!
Silvanel
Profile Blog Joined March 2003
Poland4742 Posts
Last Edited: 2016-11-08 09:08:10
November 08 2016 09:06 GMT
#15874
On November 08 2016 16:08 MarwanBaki wrote:
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.




robocopy
or just write script for this.
Pathetic Greta hater.
TBO
Profile Joined September 2009
Germany1350 Posts
Last Edited: 2016-11-08 09:42:06
November 08 2016 09:37 GMT
#15875
On November 08 2016 17:44 mantequilla wrote:
c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

where're the 4000 new ones? it looks like everything inside Documents just moved into Personal folder.


ah right my bad, didn't think correctly.

[deleted unrelated question , because found out I am stupid]
BisuDagger
Profile Blog Joined October 2009
Bisutopia19307 Posts
November 08 2016 15:13 GMT
#15876
On November 08 2016 16:08 MarwanBaki wrote:
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



A bat file can work. I use something similar when making builds for my simulations. This is a sample of me first deleting items from a directory and then moving new ones in there from another directory.


rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild_Data"
rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild.exe"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild_Data" "C:\Program Files (x86)\FolderA\Build\"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild.exe" "C:\Program Files (x86)\FolderA\Build\"
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
RainWhisper
Profile Joined May 2009
United Arab Emirates333 Posts
November 08 2016 19:56 GMT
#15877
On November 09 2016 00:13 BisuDagger wrote:
Show nested quote +
On November 08 2016 16:08 MarwanBaki wrote:
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



A bat file can work. I use something similar when making builds for my simulations. This is a sample of me first deleting items from a directory and then moving new ones in there from another directory.


rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild_Data"
rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild.exe"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild_Data" "C:\Program Files (x86)\FolderA\Build\"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild.exe" "C:\Program Files (x86)\FolderA\Build\"


Oh boy - I guess its time i learn how to make bat files

Thanks alot.

AS far as the other comments - im not sure if i was clear enough so im going to give you the exact example just for kicks.


c:\data\employees\1\bloodreport\bloodreport.pdf
c:\data\employees\1\fitness\fitness.pdf
c:\data\employees\1\mri\mri.pdf

c:\data\employees\2\bloodreport\bloodreport.pdf
c:\data\employees\2\fitness\fitness.pdf
c:\data\employees\2\mri\mri.pdf

Where 2 is the id of the employee.

The new system wants the data in

c:\data\employees\1\Medical Tests\bloodreport\bloodreport.pdf
c:\data\employees\1\Medical Tests\fitness\fitness.pdf
c:\data\employees\1\Medical Tests\mri\mri.pdf

c:\data\employees\2\Medical Tests\bloodreport\bloodreport.pdf
c:\data\employees\2\Medical Tests\fitness\fitness.pdf
c:\data\employees\2\Medical Tests\mri\mri.pdf

And i have around 4,000 employees.

So i can't go into each folder and create a new folder then ctrl a ctrl x ctrl v

Hi can i get one McGracken please?
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
November 08 2016 21:26 GMT
#15878
problem with bat files is if you get it wrong in the first run and directories get messed up, it will be a lot more pain to sort them out. and backing up 4k folders full of files is not easy too.

copy a few of it to somewhere else, test your script there 5-10 times, until you are sure it works correctly, then back up your 4k folders to somewhere then shoot
Age of Mythology forever!
Manit0u
Profile Blog Joined August 2004
Poland17692 Posts
Last Edited: 2016-11-09 08:07:21
November 09 2016 07:09 GMT
#15879
On November 09 2016 04:56 MarwanBaki wrote:
Show nested quote +
On November 09 2016 00:13 BisuDagger wrote:
On November 08 2016 16:08 MarwanBaki wrote:
Hey All,

This is not so much a programming question but sort of relates to it.

I used to have a software saved folders in

c:\John Doe\Documents\folder 1
c:\John Doe\Documents\folder 2
c:\John Doe\Documents\folder 3

my new software now wants these items to be in

c:\John Doe\Documents\Personal\folder 1
c:\John Doe\Documents\Personal\folder 2
c:\John Doe\Documents\Personal\folder 3

This is the case for about a thousand folders. I tried searching online for tools but most of them are for bulk renaming not bulk moving.

I was wondering if anyone knows of any specific software to do so or if anyone has any script they have used before to do such a thing.

Thanks
Sorry if its the wrong threat, seemed most relevant to programming to me i guess.



A bat file can work. I use something similar when making builds for my simulations. This is a sample of me first deleting items from a directory and then moving new ones in there from another directory.


rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild_Data"
rd /s /q "C:\Program Files (x86)\FolderA\Build\testBuild.exe"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild_Data" "C:\Program Files (x86)\FolderA\Build\"
MOVE "C:\Users\username\Documents\FolderB\Build\testBuild.exe" "C:\Program Files (x86)\FolderA\Build\"


Oh boy - I guess its time i learn how to make bat files

Thanks alot.

AS far as the other comments - im not sure if i was clear enough so im going to give you the exact example just for kicks.


c:\data\employees\1\bloodreport\bloodreport.pdf
c:\data\employees\1\fitness\fitness.pdf
c:\data\employees\1\mri\mri.pdf

c:\data\employees\2\bloodreport\bloodreport.pdf
c:\data\employees\2\fitness\fitness.pdf
c:\data\employees\2\mri\mri.pdf

Where 2 is the id of the employee.

The new system wants the data in

c:\data\employees\1\Medical Tests\bloodreport\bloodreport.pdf
c:\data\employees\1\Medical Tests\fitness\fitness.pdf
c:\data\employees\1\Medical Tests\mri\mri.pdf

c:\data\employees\2\Medical Tests\bloodreport\bloodreport.pdf
c:\data\employees\2\Medical Tests\fitness\fitness.pdf
c:\data\employees\2\Medical Tests\mri\mri.pdf

And i have around 4,000 employees.

So i can't go into each folder and create a new folder then ctrl a ctrl x ctrl v



Wait... Is there no settings in the system to set up the pick-up directory paths?

Anyway, since it's just a simple matter of changing /2/bloodreport/ to /2/Medical Tests/bloodreport/ I'd just write some php/python/ruby/whatever script and do it with it.

Or you could do it on Linux without much hassle.
Time is precious. Waste it wisely.
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
November 09 2016 13:15 GMT
#15880
Dear Django,

Can you be less opinionated pls? Kthx.

Sincerely.

P.S: I still like you.
"windows bash is a steaming heap of shit" tofucake
Prev 1 792 793 794 795 796 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 41m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
PiGStarcraft274
ProTech127
JuggernautJason106
StarCraft: Brood War
NaDa 22
Jaeyun 5
Dota 2
monkeys_forever300
capcasts90
Counter-Strike
minikerr8
Heroes of the Storm
Liquid`Hasu326
Other Games
summit1g11748
Grubby3978
FrodaN3956
shahzam612
byalli451
KnowMe358
C9.Mang0175
ViBE75
PPMD28
Organizations
Other Games
gamesdonequick2235
ComeBackTV 188
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• musti20045 42
• davetesta33
• Kozan
• Migwel
• sooper7s
• AfreecaTV YouTube
• intothetv
• IndyKCrew
• LaughNgamezSOOP
StarCraft: Brood War
• RayReign 61
• Azhi_Dahaki10
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota21236
League of Legends
• Doublelift5105
Other Games
• imaqtpie1146
• Scarra1081
Upcoming Events
Replay Cast
41m
CranKy Ducklings
10h 41m
RSL Revival
10h 41m
MaxPax vs Rogue
Clem vs Bunny
WardiTV Team League
12h 41m
uThermal 2v2 Circuit
17h 41m
BSL
20h 41m
Sparkling Tuna Cup
1d 10h
RSL Revival
1d 10h
ByuN vs SHIN
Maru vs Krystianer
WardiTV Team League
1d 12h
Patches Events
1d 17h
[ Show More ]
BSL
1d 20h
Replay Cast
2 days
Replay Cast
2 days
Wardi Open
2 days
Monday Night Weeklies
2 days
WardiTV Team League
3 days
GSL
4 days
The PondCast
5 days
WardiTV Team League
5 days
Replay Cast
6 days
WardiTV Team League
6 days
Liquipedia Results

Completed

Proleague 2026-03-12
WardiTV Winter 2026
Underdog Cup #3

Ongoing

KCM Race Survival 2026 Season 1
Jeongseon Sooper Cup
BSL Season 22
Proleague 2026-03-13
RSL Revival: Season 4
Nations Cup 2026
ESL Pro League S23 Finals
ESL Pro League S23 Stage 1&2
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter Qual

Upcoming

CSL Elite League 2026
ASL Season 21
Acropolis #4 - TS6
2026 Changsha Offline CUP
Acropolis #4
IPSL Spring 2026
CSLAN 4
HSC XXIX
uThermal 2v2 2026 Main Event
NationLESS Cup
CS Asia Championships 2026
Asian Champions League 2026
IEM Atlanta 2026
PGL Astana 2026
BLAST Rivals Spring 2026
CCT Season 3 Global Finals
IEM Rio 2026
PGL Bucharest 2026
Stake Ranked Episode 1
BLAST Open Spring 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.