• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 09:39
CEST 15:39
KST 22:39
  • 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
[ASL22] Ro16 Preview: Rough Waters9[ASL22] Ro24 Preview: Siren's Call8[ASL22] Ro24 Preview: Summer's End9Serral wins HomeStory Cup 2915Serral wins Maestros of the Game 244
Community News
Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism5Official StarCraft website teases new content ahead of BlizzCon?118Stellar Fest TWO the Moon (Dec 16-20)9Weekly Cups (August 24-30): Patches' balance mod takes over3New 3v3 BGH Ladder (and more) on ShieldBattery!46
StarCraft 2
General
Weekly Cups (Aug 30-Sep 7): herO thrives amid growing schism Nexon wins bid to develop StarCraft IP content, distribute Overwatch mobile game Balance hotfix patch 5.0.16b (July 16) SC4ALL: II Winner Will Earn a Spot at HSC 30! Weekly Cups (August 24-30): Patches' balance mod takes over
Tourneys
Sea Duckling Open (Global, Bronze-Diamond) 2026 GSTL Announcement Sparkling Tuna Cup - Weekly Open Tournament Stellar Fest TWO the Moon (Dec 16-20) IntoTheTV X SOOP SC2 League : Weekly & Monthly
Strategy
[G] Having the right mentality to improve
Custom Maps
Nexus Wars 2021 GUIDE [M] (2) Industrial Park
External Content
Mutation # 542 The Ascended Mutation # 541 Binary Choice The PondCast: SC2 News & Results Mutation # 540 Dodge This
Brood War
General
Official StarCraft website teases new content ahead of BlizzCon? [ASL22] Ro16 Preview: Rough Waters ASL22 General Discussion Pros React To: Calm's Big Brain Play Vs Mini New 3v3 BGH Ladder (and more) on ShieldBattery!
Tourneys
[ASL22] Ro16 Group B [Megathread] Daily Proleagues 2v2v2v2 Tournament [ASL22] Ro16 Group A
Strategy
Replay Review Process - What do you do? Simple Questions, Simple Answers Odyssey Mineral Stack Saturation Game Theory for Starcraft
Other Games
General Games
Nintendo Switch Thread EVE Corporation Diablo IV [Maplestory Hardcore] Let's Play~!! General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
[TL LoL EUW IHs] Teemo shall perish TSM pausing esports and CLG Dead
Heroes of the Storm
Heroes of the Storm 2.0
Hearthstone
Deck construction bug
TL Mafia
TL Mafia Power Rank TL Mafia Community Thread NeO.D_StephenKing vs This Guy From 1 Million Dance
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread European Politico-economics QA Mega-thread Trading/Investing Thread Things Aren’t Peaceful in Palestine
Fan Clubs
MarineLorD Fan Club The Creator Fan Club The ShoWTimE Fan Club
Media & Entertainment
Movie Discussion! Anime Discussion Thread
Sports
Football (Soccer) Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Northern Ireland Global Starcraft
Blogs
F* the Children and Get Off …
TrAiDoS
Dreaming of BW patches (mod…
c3rberUs
Regacy Esports: The Bh…
regacyesports
LOCKPICKING NOOB
LUCKY_NOOB
Customize Sidebar...

Website Feedback

Closed Threads



Active: 6852 users

The Big Programming Thread - Page 827

Forum Index > General Forum
Post a Reply
Prev 1 825 826 827 828 829 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.
Manit0u
Profile Blog Joined August 2004
Poland17842 Posts
January 11 2017 11:09 GMT
#16521
On January 11 2017 18:55 Acrofales wrote:
Show nested quote +
On January 11 2017 18:46 Manit0u wrote:
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...

Looks like you created a deadlock situation. Change the restrictions on your DB, or accept that there will be undeletable entries. Your only other option is a hack where you add a C called "tobedeleted" or something, and change A to belong to that first, then cascade your delete.


Yeah, figured as much. I'm now trying to change the structure to accommodate my needs.
Time is precious. Waste it wisely.
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
Last Edited: 2017-01-11 11:57:57
January 11 2017 11:57 GMT
#16522
On January 11 2017 18:46 Manit0u wrote:
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B
***has one or more A***


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...

FTFY.

So, each C belongs to a single B. It's not an m to n relationship, at least I hope so (for your sake) and each B can have one or more Cs. Each A has exactly one B.

What if we merge A and B into AB:

If the C has exactly one A and that A is the one that the B belongs, you can have a 1 to n relationship:

AB:
has relationship to C

C:
has relationship to AB

How does this sound?
"windows bash is a steaming heap of shit" tofucake
Manit0u
Profile Blog Joined August 2004
Poland17842 Posts
January 11 2017 12:49 GMT
#16523
On January 11 2017 20:57 Djagulingu wrote:
Show nested quote +
On January 11 2017 18:46 Manit0u wrote:
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B
***has one or more A***


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...

FTFY.

So, each C belongs to a single B. It's not an m to n relationship, at least I hope so (for your sake) and each B can have one or more Cs. Each A has exactly one B.

What if we merge A and B into AB:

If the C has exactly one A and that A is the one that the B belongs, you can have a 1 to n relationship:

AB:
has relationship to C

C:
has relationship to AB

How does this sound?


If life were so simple I also have D and E, which belong to C
Time is precious. Waste it wisely.
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
January 11 2017 14:33 GMT
#16524
On January 11 2017 21:49 Manit0u wrote:
Show nested quote +
On January 11 2017 20:57 Djagulingu wrote:
On January 11 2017 18:46 Manit0u wrote:
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B
***has one or more A***


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...

FTFY.

So, each C belongs to a single B. It's not an m to n relationship, at least I hope so (for your sake) and each B can have one or more Cs. Each A has exactly one B.

What if we merge A and B into AB:

If the C has exactly one A and that A is the one that the B belongs, you can have a 1 to n relationship:

AB:
has relationship to C

C:
has relationship to AB

How does this sound?


If life were so simple I also have D and E, which belong to C


AB:
has relationship to C

C:
has relationship to AB
has one or more D
has one or more E

D:
belongs to C

E:
belongs to C

Unless there is another dependency between AB, C, D or E (or C has more than one As), you can just cascade your deletes into:

delete AB:
-> delete the associated C

delete C:
-> delete the associated D
-> delete the associated E

delete D:
nothing

delete E:
nothing
"windows bash is a steaming heap of shit" tofucake
Deleted User 101379
Profile Blog Joined August 2010
4849 Posts
January 12 2017 07:54 GMT
#16525
Would I bei legally safe if I murdered the person that created CSS like that?

@media (...) { .someclass > .col-md-3 { width: 50% } }
(Standard bootstrap)
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
January 12 2017 10:57 GMT
#16526
On January 12 2017 16:54 Morfildur wrote:
Would I bei legally safe if I murdered the person that created CSS like that?

@media (...) { .someclass > .col-md-3 { width: 50% } }
(Standard bootstrap)

How much experience does this guy have?
"windows bash is a steaming heap of shit" tofucake
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
January 12 2017 12:39 GMT
#16527
--- Nuked ---
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
January 12 2017 13:14 GMT
#16528
why bluetooth sucks so much

I have 4 devices (2 android, 1 windows phone, 1 arduino) that has bluetooth. Not any two of them are able to connect each other :/ testing an android app that uses bluetooth
Age of Mythology forever!
Acrofales
Profile Joined August 2010
Spain18433 Posts
January 12 2017 13:42 GMT
#16529
Weird. My bluetooth devices are a bit finicky, but once I figure out the settings I can always connect, and the connection is quite stable once set up.
Manit0u
Profile Blog Joined August 2004
Poland17842 Posts
January 12 2017 16:40 GMT
#16530
On January 11 2017 23:33 Djagulingu wrote:
Show nested quote +
On January 11 2017 21:49 Manit0u wrote:
On January 11 2017 20:57 Djagulingu wrote:
On January 11 2017 18:46 Manit0u wrote:
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B
***has one or more A***


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...

FTFY.

So, each C belongs to a single B. It's not an m to n relationship, at least I hope so (for your sake) and each B can have one or more Cs. Each A has exactly one B.

What if we merge A and B into AB:

If the C has exactly one A and that A is the one that the B belongs, you can have a 1 to n relationship:

AB:
has relationship to C

C:
has relationship to AB

How does this sound?


If life were so simple I also have D and E, which belong to C


AB:
has relationship to C

C:
has relationship to AB
has one or more D
has one or more E

D:
belongs to C

E:
belongs to C

Unless there is another dependency between AB, C, D or E (or C has more than one As), you can just cascade your deletes into:

delete AB:
-> delete the associated C

delete C:
-> delete the associated D
-> delete the associated E

delete D:
nothing

delete E:
nothing


Solved the problem by doing "on delete: set null" without changing anything in the db
Time is precious. Waste it wisely.
Djagulingu
Profile Blog Joined December 2010
Germany3605 Posts
January 13 2017 07:06 GMT
#16531
On January 13 2017 01:40 Manit0u wrote:
Show nested quote +
On January 11 2017 23:33 Djagulingu wrote:
On January 11 2017 21:49 Manit0u wrote:
On January 11 2017 20:57 Djagulingu wrote:
On January 11 2017 18:46 Manit0u wrote:
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B
***has one or more A***


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...

FTFY.

So, each C belongs to a single B. It's not an m to n relationship, at least I hope so (for your sake) and each B can have one or more Cs. Each A has exactly one B.

What if we merge A and B into AB:

If the C has exactly one A and that A is the one that the B belongs, you can have a 1 to n relationship:

AB:
has relationship to C

C:
has relationship to AB

How does this sound?


If life were so simple I also have D and E, which belong to C


AB:
has relationship to C

C:
has relationship to AB
has one or more D
has one or more E

D:
belongs to C

E:
belongs to C

Unless there is another dependency between AB, C, D or E (or C has more than one As), you can just cascade your deletes into:

delete AB:
-> delete the associated C

delete C:
-> delete the associated D
-> delete the associated E

delete D:
nothing

delete E:
nothing


Solved the problem by doing "on delete: set null" without changing anything in the db

Of course, soft deleting is always a solution
"windows bash is a steaming heap of shit" tofucake
mantequilla
Profile Blog Joined June 2012
Turkey781 Posts
Last Edited: 2017-01-13 08:59:02
January 13 2017 08:56 GMT
#16532
I wanna share my 2 cents of experience about deletion just to maybe add value to the thread

I never saw things getting really deleted in business oriented apps, dunno what kind of app you are working on though, it maybe a requirement.

in those apps db records all had a disabled flag instead of deletion, which makes querying cumbersome because you have to add disabled=false everywhere

reason is all data somehow sometime becomes useful and removing is not worth the space or performance you would gain.

plus oop+orm makes it little easier, which entry point to your object graph will be deleted and how it should cascade to the connected entities. it can also handle logical interactions between entities, while not relying on database features, ie cascading or triggers.

oop+orm is not fancy though I imagine it is not liked outside of enterprise environment.
Age of Mythology forever!
Manit0u
Profile Blog Joined August 2004
Poland17842 Posts
Last Edited: 2017-01-13 12:44:11
January 13 2017 12:40 GMT
#16533
On January 13 2017 16:06 Djagulingu wrote:
Show nested quote +
On January 13 2017 01:40 Manit0u wrote:
On January 11 2017 23:33 Djagulingu wrote:
On January 11 2017 21:49 Manit0u wrote:
On January 11 2017 20:57 Djagulingu wrote:
On January 11 2017 18:46 Manit0u wrote:
I have a bit of a problem with the DB:


A:
has one B
belongs to C

B:
belongs to A
has many C

C:
belongs to B
***has one or more A***


How do I set my cascades properly so that when I delete A all of B and C are also removed? Right now I'm getting an error that C can't be deleted because it's still referenced by A...

FTFY.

So, each C belongs to a single B. It's not an m to n relationship, at least I hope so (for your sake) and each B can have one or more Cs. Each A has exactly one B.

What if we merge A and B into AB:

If the C has exactly one A and that A is the one that the B belongs, you can have a 1 to n relationship:

AB:
has relationship to C

C:
has relationship to AB

How does this sound?


If life were so simple I also have D and E, which belong to C


AB:
has relationship to C

C:
has relationship to AB
has one or more D
has one or more E

D:
belongs to C

E:
belongs to C

Unless there is another dependency between AB, C, D or E (or C has more than one As), you can just cascade your deletes into:

delete AB:
-> delete the associated C

delete C:
-> delete the associated D
-> delete the associated E

delete D:
nothing

delete E:
nothing


Solved the problem by doing "on delete: set null" without changing anything in the db

Of course, soft deleting is always a solution


No, no. It still hard-deletes everything. It just sets c_id to null in A while deleting C, thus avoiding the foreign key reference error and everything works just fine (deleting A now deletes B and all C).

On January 13 2017 17:56 mantequilla wrote:
I wanna share my 2 cents of experience about deletion just to maybe add value to the thread

I never saw things getting really deleted in business oriented apps, dunno what kind of app you are working on though, it maybe a requirement.

in those apps db records all had a disabled flag instead of deletion, which makes querying cumbersome because you have to add disabled=false everywhere

reason is all data somehow sometime becomes useful and removing is not worth the space or performance you would gain.

plus oop+orm makes it little easier, which entry point to your object graph will be deleted and how it should cascade to the connected entities. it can also handle logical interactions between entities, while not relying on database features, ie cascading or triggers.

oop+orm is not fancy though I imagine it is not liked outside of enterprise environment.


I'm using OOP+ORM (Rails). No soft-deletable on my models yet since it's not a requirement at the moment (might become a requirement later on and then I'll add it). I also didn't set any cascades in the DB because that would disable the ORM callbacks and I don't want that.
Time is precious. Waste it wisely.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-01-13 19:30:54
January 13 2017 19:27 GMT
#16534
need help debugging a java problem
my understanding is failing me somewhere

At class level I have:


public static int card1Spent;
private static Label card1Label = new Label(card1Spent + "/X (1)", skin);
private static TextButton card1Button = new TextButton("add point", skin);


(some of this stuff is from libgdx but it shouldn't matter


inside my constructor I have


card1Spent=1
card1Button.addListener(new ChangeListener() {
@Override
public void changed(ChangeEvent event, Actor actor) {
card1Spent++;
card1Label.setText(card1Label.getText().toString());

}
});


changelistener is a libgdx thing. it works like you think it would

so when I run my program I have a button that says "add point" and a label that shows "0/X (1)"
I don't know why it shows 0/X instead of 1/X

And when I click the button, it stays at 0. It never looks at the updated value, it only looks at the original declaration.

If I make the changelistener:


card1Button.addListener(new ChangeListener() {
@Override
public void changed(ChangeEvent event, Actor actor) {
card1Spent++;
card1Label.setText(Integer.toString(card1Spent));

}
});


then it originally shows my button and 0/X (1) for the label
but then if I press the button it shows "2" for the label, then "3" if i press it again etc etc

so wtf?



It's like when I do "card1Label.setText(card1Label.getText().toString());", it doesn't even see the original variable as ever having been a variable. Is this a bug?
Acrofales
Profile Joined August 2010
Spain18433 Posts
January 13 2017 19:30 GMT
#16535

public static int card1Spent;


YEUCH. We taught you better than that!
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-01-13 19:38:10
January 13 2017 19:32 GMT
#16536
Well what's the reason I am not supposed to do this again? Because I do want there to be only one of them and I do want to be able to access it from other classes (geesh I don't want to write a thousand getters).

I guess I can make everything non static, but then none of my GUI can be static either. changes my whole design a lot
Blitzkrieg0
Profile Blog Joined August 2010
United States13132 Posts
Last Edited: 2017-01-13 19:39:29
January 13 2017 19:38 GMT
#16537
On January 14 2017 04:32 travis wrote:
Well what's the reason I am not supposed to do this again? Because I do want there to be only one of them and I do want to be able to access it from other classes (geesh I don't want to write a thousand getters).

I guess I can make everything non static, but then none of my GUI can be static either. changes my whole design a lot


Your IDE will write getters and setters for you for a reason.
I'll always be your shadow and veil your eyes from states of ain soph aur.
RoomOfMush
Profile Joined March 2015
1296 Posts
January 13 2017 20:11 GMT
#16538
On January 14 2017 04:32 travis wrote:
Well what's the reason I am not supposed to do this again? Because I do want there to be only one of them and I do want to be able to access it from other classes (geesh I don't want to write a thousand getters).

I guess I can make everything non static, but then none of my GUI can be static either. changes my whole design a lot

You will be hurting very bad if you continue with the static fields some day. Perhaps its better to experience this yourself because then you will understand for the rest of your life. Either that or you just trust in the judgement and experience of virtually every somewhat skilled programmer out there.

But to answer your question: Your label shows a "0" for card1Spent because thats the value of card1Spent at the moment you initialize your label. Just because you change the value of your variable later doesnt mean your label will automatically update. You have two solutions: Initialize your variable card1Spent to the correct value before initializing your label or update the label after initializing your variable.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
January 13 2017 20:13 GMT
#16539
If something can be modified, better think twice about making it static. And then think again. Repeat until you don't want to make it static anymore.
If you have a good reason to disagree with the above, please tell me. Thank you.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
January 13 2017 20:26 GMT
#16540
alright im taking all the advice, my design has been changed


in an unrelated thought, it seems really stupid that java can't cast int to string, I have to use Integer.toString() or some other method, and yet I can simply say that (the string = the int + ""). I'd love to have that one explained to me.
Prev 1 825 826 827 828 829 1032 Next
Please log in or register to reply.
Live Events Refresh
Kung Fu Cup
11:00
2026 Week 22
IntoTheiNu 1520
WardiTV633
RotterdaM462
IndyStarCraft 193
TKL 158
Rex139
SteadfastSC97
EnkiAlexander 16
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
RotterdaM 462
IndyStarCraft 193
TKL 158
Rex 139
ProTech125
SteadfastSC 97
Trap 9
StarCraft: Brood War
Bisu 5837
Jaedong 4085
Soulkey 2860
Shuttle 1161
Horang2 999
Mini 752
Light 466
Hyuk 463
Snow 426
EffOrt 361
[ Show more ]
BeSt 330
Stork 208
firebathero 173
Last 161
Pusan 87
Barracks 74
hero 58
Hm[arnc] 50
Sharp 49
sSak 41
Mind 41
Yoon 36
PianO 35
ToSsGirL 30
Bale 23
soO 22
910 18
Terrorterran 17
Sacsri 12
SilentControl 10
scan(afreeca) 10
ajuk12(nOOB) 9
Icarus 9
Rock 9
Dota 2
qojqva2444
Dendi1855
syndereN657
LuMiX1
Counter-Strike
olofmeister1328
Super Smash Bros
hungrybox1126
Other Games
singsing2058
B2W.Neo654
Lowko408
crisheroes311
DeMusliM265
XaKoH 185
Liquid`VortiX141
Sick122
ArmadaUGS69
QueenE42
[ Show 12 non-featured ]
StarCraft 2
• intothetv
• AfreecaTV YouTube
• Kozan
• IndyKCrew
• Migwel
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• C_a_k_e 1921
• WagamamaTV709
League of Legends
• Jankos2241
• TFBlade850
Upcoming Events
Replay Cast
10h 21m
The PondCast
20h 21m
KCM Race Survival
20h 21m
OSC
1d 8h
Escore
1d 20h
IntoTheTV X SOOP
1d 21h
CranKy Ducklings
2 days
Sparkling Tuna Cup
3 days
Shopify Rebellion Sundays
4 days
Spirit vs Mixu
Clem vs TBD
RSL Revival
4 days
Serral vs Rogue
[ Show More ]
BlizzCon
4 days
Replay Cast
4 days
Afreeca Starleague
4 days
WardiTV Weekly
4 days
Afreeca Starleague
5 days
GSL
5 days
PiGosaur Cup
6 days
The PondCast
6 days
Kung Fu Cup
6 days
Liquipedia Results

Completed

Proleague 2026-09-08
PiG Sty Festival 8.0
Big Dog Cup 2026 Div 1

Ongoing

KCM Race Survival 2026 Season 3
K-JUNGMAN
ASL Season 22
Super Anchor Qualifying S3
CSL 2026 AUTUMN (S22)
Acropolis #5
Acropolis #5 - TRS
RSL Revival: Season 6
Calamity Invitational
FISSURE Playground #3
BLAST Open Fall 2026
Esports World Cup 2026
BLAST Bounty Summer 2026
BLAST Bounty Summer Qual
Stake Ranked Episode 3
XSE Pro League 2026

Upcoming

Escore Tournament S3: King of Kings
Acropolis #5 - GSA
Blizzard Classic Cup 2026
Acropolis #5 - GSB
Acropolis #5 - GSC
SC4ALL II: Brood War
HSC XXX
Stellar Fest 2: Lunar Cup
SC4ALL II: StarCraft II
Kung Fu Cup 2026 Grand Finals
RSL Offline Finals
Blizzard Classic Cup 2026
Stake Ranked Episode 6
BLAST Rivals Fall 2026
IEM Beijing 2026
Stake Ranked Episode 5
PGL Masters Bucharest 2026
1win Private Club #2
Thunderpick World Champ. '26
ESL Pro League Season 24
Stake Ranked Episode 4
1win Private Club #1
Logitech G Play Connect 2026
SL StarSeries Fall 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.