• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 06:35
CEST 12:35
KST 19:35
  • 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
[ASL19] Finals Recap: Standing Tall9HomeStory Cup 27 - Info & Preview18Classic wins Code S Season 2 (2025)16Code S RO4 & Finals Preview: herO, Rogue, Classic, GuMiho0TL Team Map Contest #5: Presented by Monster Energy6
Community News
Weekly Cups (June 30 - July 6): Classic Doubles0[BSL20] Non-Korean Championship 4x BSL + 4x China7Flash Announces Hiatus From ASL63Weekly Cups (June 23-29): Reynor in world title form?13FEL Cracov 2025 (July 27) - $8000 live event22
StarCraft 2
General
Weekly Cups (June 30 - July 6): Classic Doubles Program: SC2 / XSplit / OBS Scene Switcher The SCII GOAT: A statistical Evaluation Statistics for vetoed/disliked maps Weekly Cups (June 23-29): Reynor in world title form?
Tourneys
RSL: Revival, a new crowdfunded tournament series FEL Cracov 2025 (July 27) - $8000 live event Sparkling Tuna Cup - Weekly Open Tournament WardiTV Mondays Korean Starcraft League Week 77
Strategy
How did i lose this ZvP, whats the proper response Simple Questions Simple Answers
Custom Maps
[UMS] Zillion Zerglings
External Content
Mutation # 481 Fear and Lava Mutation # 480 Moths to the Flame Mutation # 479 Worn Out Welcome Mutation # 478 Instant Karma
Brood War
General
ASL20 Preliminary Maps SC uni coach streams logging into betting site Player “Jedi” cheat on CSL Flash Announces Hiatus From ASL BW General Discussion
Tourneys
[BSL20] Grand Finals - Sunday 20:00 CET [BSL20] Non-Korean Championship 4x BSL + 4x China CSL Xiamen International Invitational The Casual Games of the Week Thread
Strategy
Simple Questions, Simple Answers I am doing this better than progamers do.
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Nintendo Switch Thread What do you want from future RTS games? Beyond All Reason
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Stop Killing Games - European Citizens Initiative Summer Games Done Quick 2024! Summer Games Done Quick 2025! Russo-Ukrainian War Thread
Fan Clubs
SKT1 Classic Fan Club! Maru Fan Club
Media & Entertainment
Anime Discussion Thread [Manga] One Piece [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion 2024 - 2025 Football Thread NBA General Discussion TeamLiquid Health and Fitness Initiative For 2023 NHL Playoffs 2024
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Blogs
Culture Clash in Video Games…
TrAiDoS
from making sc maps to makin…
Husyelt
Blog #2
tankgirl
StarCraft improvement
iopq
Trip to the Zoo
micronesia
Customize Sidebar...

Website Feedback

Closed Threads



Active: 696 users

The Big Programming Thread - Page 865

Forum Index > General Forum
Post a Reply
Prev 1 863 864 865 866 867 1031 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.
Biolunar
Profile Joined February 2012
Germany224 Posts
March 29 2017 14:46 GMT
#17281
On March 29 2017 23:02 TMG26 wrote:
Show nested quote +
On March 29 2017 07:28 Blitzkrieg0 wrote:
On March 29 2017 06:58 Biolunar wrote:
Casting the return value of malloc is a bad idea. void* will be implicitly converted into any other pointer type, so don’t cast it.


I've always seen casting malloc as part of the coding standard. While pointless it is a sanity check.


It's also recommended in older C standards.

Definitely not. In old C you can use functions without providing a declaration, in which case a return value of ‘int’ is assumed. So let’s say you forget to include stdlib.h but you use malloc. The complier then assumes there is a function ‘int malloc()’ somewhere. Now you cast that returned int into your pointer type and use it. Great. You just traded a compile time error in for a runtime error. Don’t cast malloc.
What is best? To crush the Zerg, see them driven before you, and hear the lamentations of the Protoss.
BluzMan
Profile Blog Joined April 2006
Russian Federation4235 Posts
March 29 2017 19:53 GMT
#17282
On March 29 2017 23:46 Biolunar wrote:
Show nested quote +
On March 29 2017 23:02 TMG26 wrote:
On March 29 2017 07:28 Blitzkrieg0 wrote:
On March 29 2017 06:58 Biolunar wrote:
Casting the return value of malloc is a bad idea. void* will be implicitly converted into any other pointer type, so don’t cast it.


I've always seen casting malloc as part of the coding standard. While pointless it is a sanity check.


It's also recommended in older C standards.

Definitely not. In old C you can use functions without providing a declaration, in which case a return value of ‘int’ is assumed. So let’s say you forget to include stdlib.h but you use malloc. The complier then assumes there is a function ‘int malloc()’ somewhere. Now you cast that returned int into your pointer type and use it. Great. You just traded a compile time error in for a runtime error. Don’t cast malloc.


Ermm, I'm curious how the linker would assemble the executable without a function definition?
You want 20 good men, but you need a bad pussy.
Cyx.
Profile Joined November 2010
Canada806 Posts
Last Edited: 2017-03-29 20:35:24
March 29 2017 20:34 GMT
#17283
On March 30 2017 04:53 BluzMan wrote:
Show nested quote +
On March 29 2017 23:46 Biolunar wrote:
On March 29 2017 23:02 TMG26 wrote:
On March 29 2017 07:28 Blitzkrieg0 wrote:
On March 29 2017 06:58 Biolunar wrote:
Casting the return value of malloc is a bad idea. void* will be implicitly converted into any other pointer type, so don’t cast it.


I've always seen casting malloc as part of the coding standard. While pointless it is a sanity check.


It's also recommended in older C standards.

Definitely not. In old C you can use functions without providing a declaration, in which case a return value of ‘int’ is assumed. So let’s say you forget to include stdlib.h but you use malloc. The complier then assumes there is a function ‘int malloc()’ somewhere. Now you cast that returned int into your pointer type and use it. Great. You just traded a compile time error in for a runtime error. Don’t cast malloc.


Ermm, I'm curious how the linker would assemble the executable without a function definition?

It has a definition for standard library functions since it links against the stdlib by default. Most compilers will complain about 'implicit declaration of malloc' or something like that but they'll generally allow it unless you have warnings way up. Although I don't see how this trades a compile-time error for a runtime error... either way, you just get a warning about the implicit definition, with maybe an additional warning about casting a pointer to integer.

e: also, I've never seen casting malloc recommended in C, it's required if you use malloc in C++ (which you just shouldn't do) but every C programmer I know says 'don't cast malloc'.
TMG26
Profile Joined July 2012
Portugal2017 Posts
March 30 2017 08:30 GMT
#17284
On March 30 2017 05:34 Cyx. wrote:
Show nested quote +
On March 30 2017 04:53 BluzMan wrote:
On March 29 2017 23:46 Biolunar wrote:
On March 29 2017 23:02 TMG26 wrote:
On March 29 2017 07:28 Blitzkrieg0 wrote:
On March 29 2017 06:58 Biolunar wrote:
Casting the return value of malloc is a bad idea. void* will be implicitly converted into any other pointer type, so don’t cast it.


I've always seen casting malloc as part of the coding standard. While pointless it is a sanity check.


It's also recommended in older C standards.

Definitely not. In old C you can use functions without providing a declaration, in which case a return value of ‘int’ is assumed. So let’s say you forget to include stdlib.h but you use malloc. The complier then assumes there is a function ‘int malloc()’ somewhere. Now you cast that returned int into your pointer type and use it. Great. You just traded a compile time error in for a runtime error. Don’t cast malloc.


Ermm, I'm curious how the linker would assemble the executable without a function definition?

It has a definition for standard library functions since it links against the stdlib by default. Most compilers will complain about 'implicit declaration of malloc' or something like that but they'll generally allow it unless you have warnings way up. Although I don't see how this trades a compile-time error for a runtime error... either way, you just get a warning about the implicit definition, with maybe an additional warning about casting a pointer to integer.

e: also, I've never seen casting malloc recommended in C, it's required if you use malloc in C++ (which you just shouldn't do) but every C programmer I know says 'don't cast malloc'.


I assumed it was recommend in old standards, because in the book "The C Programming Language" (K&R) they cast malloc.
Supporter of the situational Blink Dagger on Storm.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2017-03-30 10:35:14
March 30 2017 10:34 GMT
#17285
PGSQL question:

Tables


A >---< B >---< C

>---< is a many-to-many relation with an intermediate table containing
ids of referenced table rows


What I need


SELECT DISTINCT C.id WHERE [A_B.b_ids] @> [C_B.b_ids]


Basically, I need all C's whose related Bs are all in A's related Bs (for a single A) - a matching subset if you will. Any idea how I should construct this query?
Time is precious. Waste it wisely.
berated-
Profile Blog Joined February 2007
United States1134 Posts
Last Edited: 2017-03-30 10:56:43
March 30 2017 10:54 GMT
#17286
On March 30 2017 19:34 Manit0u wrote:
PGSQL question:

Tables


A >---< B >---< C

>---< is a many-to-many relation with an intermediate table containing
ids of referenced table rows


What I need


SELECT DISTINCT C.id WHERE [A_B.b_ids] @> [C_B.b_ids]


Basically, I need all C's whose related Bs are all in A's related Bs (for a single A) - a matching subset if you will. Any idea how I should construct this query?


Is that not just distinct c from c join b join a, through the intermediate tables? Is it too large to do so?

Or just intermediate join intermediate join c.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
Last Edited: 2017-03-30 12:05:19
March 30 2017 11:46 GMT
#17287
On March 30 2017 19:54 berated- wrote:
Show nested quote +
On March 30 2017 19:34 Manit0u wrote:
PGSQL question:

Tables


A >---< B >---< C

>---< is a many-to-many relation with an intermediate table containing
ids of referenced table rows


What I need


SELECT DISTINCT C.id WHERE [A_B.b_ids] @> [C_B.b_ids]


Basically, I need all C's whose related Bs are all in A's related Bs (for a single A) - a matching subset if you will. Any idea how I should construct this query?


Is that not just distinct c from c join b join a, through the intermediate tables? Is it too large to do so?

Or just intermediate join intermediate join c.


I think I've found a solution:


SELECT res.id
FROM (
SELECT C.id, array_agg(C_B.b_id) AS b_ids
FROM "C" INNER JOIN "C_B" ON "C_B"."c_id" = "C"."id"
GROUP BY "C"."id"
) AS res
WHERE (res.b_ids <@ ARRAY[21,84,57,58,8,40,34,59,38,71,35,67,48,62,92,99,12,14,88,5,53])


Edit:

On another note...
[image loading]
Time is precious. Waste it wisely.
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
Last Edited: 2017-03-30 12:44:29
March 30 2017 12:34 GMT
#17288
--- Nuked ---
Acrofales
Profile Joined August 2010
Spain17971 Posts
March 30 2017 13:01 GMT
#17289
Lol. Googling that leads to reddit, which is just proof that programmers love programming... as long as it's not actual work.

https://www.reddit.com/r/programming/comments/buosj/add_a_number_to_another_number_in_javascript_img/
meadbert
Profile Blog Joined October 2010
United States681 Posts
March 30 2017 14:31 GMT
#17290
On March 30 2017 05:34 Cyx. wrote:

It has a definition for standard library functions since it links against the stdlib by default. Most compilers will complain about 'implicit declaration of malloc' or something like that but they'll generally allow it unless you have warnings way up. Although I don't see how this trades a compile-time error for a runtime error... either way, you just get a warning about the implicit definition, with maybe an additional warning about casting a pointer to integer.

e: also, I've never seen casting malloc recommended in C, it's required if you use malloc in C++ (which you just shouldn't do) but every C programmer I know says 'don't cast malloc'.


Regarding casting malloc. I use gcc 5.3.1 with -Wall and it will still warn if I do not cast malloc.

Also I have seen this bug a few times that can arise from not casting malloc.

int *heap = malloc(size*sizeof(int)) - 1; // <--- THIS IS A BUG!!!

You might wonder why on earth someone has added -1 and it has to do with a performance optimization when using binary heaps.
If you use a 0 based array then your children are 2*i + 1 and 2*i + 2 while your parent is (i - 1)/2;
Note that for speed you would want to be doing left shifts and right shifts rather than multiplying and dividing. I believe in some architectures shifting is free although I do not have the details. It may be those are not used anymore, but in any case I have seen this particular bug show up more than once and it is very common to see this trick used in general.

The problem is that finding a child or parent will always require and addition or subtraction operation which is NOT free.

If you use 1 based arrays then your children are 2*i and 2*i+1 and your parent is i/2.
If you use shifts again then only a third of the time do you need the addition so your heap is sped up by a lot on certain architectures.

For this reason I see people move their heap pointer one "spot" to the left and then index by 1 so heap[1] is the root of the heap.

The problem is in the buggy line above they meant to shift left by 1 integer, but instead they shifted left by 1 byte because malloc returned a void* so instead they will end up reading and writing past the end of the array when reading and writing the last integer in the array.

Correct ways to use that hack would be:
int *heap = malloc(size*sizeof(int));
heap--;

or

int *heap = ((int*)malloc(size*sizeof(int))) - 1;

or

int *heap = malloc(size*sizeof(int)) - sizeof(int);

The point is you need to be careful when adding or subtracting from a value returned by malloc.
Hanh
Profile Joined June 2016
146 Posts
March 30 2017 15:06 GMT
#17291
gcc displays a warning in that case.
Biolunar
Profile Joined February 2012
Germany224 Posts
March 30 2017 17:15 GMT
#17292
On March 30 2017 23:31 meadbert wrote:
Regarding casting malloc. I use gcc 5.3.1 with -Wall and it will still warn if I do not cast malloc.

This is hard for me to believe. void* -> T* is an implicit lossless conversion that should compile without warning. Did you compile it as C++? Does not warn me with -Wall -Wextra on gcc nor on clang with -Weverything.

On March 30 2017 23:31 meadbert wrote:
int *heap = malloc(size*sizeof(int)) - 1; // <--- THIS IS A BUG!!!

Yes that’s a bug, because it does not compile malloc returns void* and void* does not allow pointer arithmetic. As you stated correctly you need to cast it before you can do some arithmetic on the return value (or save the value and decrement it afterwards).
What is best? To crush the Zerg, see them driven before you, and hear the lamentations of the Protoss.
Acrofales
Profile Joined August 2010
Spain17971 Posts
March 30 2017 17:48 GMT
#17293
Just want to vent a little bit.

I have what I know to be quite a shitty dataset, but it's the only dataset I can find that might remotely be used to model what I want to model.

So I program my feature extraction part (took about a week to extract the features that my hypothesis says should explain what I want), and release some out-of-the-box regression models on a simple train/test split. Utterly terrible results. I have now spent the last 2 days trying to tune the algorithms, and anything I do, it would literally be better to just always expect the mean value (of my data set) rather than use the regression models that I have fit. So now I have a bit of an awkward situation: I know the data set is garbage, but I thought it would allow me to at least do enough of a validation to send my idea to a small conference. How the hell do I write a paper with no results... basically saying "I have this idea, but the only available data set is garbage. I need to collect more data to be able to test the hypothesis. Please accept this paper anyway, because the idea is good. Right?"

Rant out. If anybody has good ideas, I'm not an ML expert. I'm a proficient data miner. I tried ridge regression, lasso (or rather, I just used elastic net and varied the coefficient) and random forest regression. My data set is tiny (95 samples) and very noisy.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
March 30 2017 18:25 GMT
#17294
So you can't really provide evidence for or against your hypothesis? First impressions still count way too much whenever humans are involved. It might not be a good thing for you or your hypothesis to publish it in such a poor condition.
If you have a good reason to disagree with the above, please tell me. Thank you.
meadbert
Profile Blog Joined October 2010
United States681 Posts
Last Edited: 2017-03-30 19:20:11
March 30 2017 19:10 GMT
#17295
On March 31 2017 02:15 Biolunar wrote:
Show nested quote +
On March 30 2017 23:31 meadbert wrote:
Regarding casting malloc. I use gcc 5.3.1 with -Wall and it will still warn if I do not cast malloc.

This is hard for me to believe. void* -> T* is an implicit lossless conversion that should compile without warning. Did you compile it as C++? Does not warn me with -Wall -Wextra on gcc nor on clang with -Weverything.

Show nested quote +
On March 30 2017 23:31 meadbert wrote:
int *heap = malloc(size*sizeof(int)) - 1; // <--- THIS IS A BUG!!!

Yes that’s a bug, because it does not compile malloc returns void* and void* does not allow pointer arithmetic. As you stated correctly you need to cast it before you can do some arithmetic on the return value (or save the value and decrement it afterwards).

I just tested this code:

#include <stdlib.h>
#include <stdio.h>

int main(void)
{
void *c = malloc(10*sizeof(*c)) - 1;
int *i = c + 3;
int *j = c;
int d = i - j;

printf("%d\n", d);
return 0;
}

I used -Wall and -Wextra.

I got no warnings. So it appears that the cast from void* to int* does not generate a warning, but also the pointer subtraction on void* worked just fine with not so much as a warning.

EDIT: I just did some research and pointer addition on void* is illegal in both C and C++, but GCC apparently allows for it which explains the results that I saw.
Biolunar
Profile Joined February 2012
Germany224 Posts
March 30 2017 19:33 GMT
#17296
On March 31 2017 04:10 meadbert wrote:
I just tested this code:

#include <stdlib.h>
#include <stdio.h>

int main(void)
{
void *c = malloc(10*sizeof(*c)) - 1;
int *i = c + 3;
int *j = c;
int d = i - j;

printf("%d\n", d);
return 0;
}

I used -Wall and -Wextra.

I got no warnings. So it appears that the cast from void* to int* does not generate a warning, but also the pointer subtraction on void* worked just fine with not so much as a warning.

EDIT: I just did some research and pointer addition on void* is illegal in both C and C++, but GCC apparently allows for it which explains the results that I saw.

Hmm you are right, gcc does not complain by default.
man gcc
-Wpointer-arith
Warn about anything that depends on the "size of" a function type or of "void". GNU C assigns these types a size
of 1, for convenience in calculations with "void *" pointers and pointers to functions. In C++, warn also when an
arithmetic operation involves "NULL". This warning is also enabled by -Wpedantic.

I always use -pedantic-errors, so that all warnings demanded by strict ISO C are issued as an error.
What is best? To crush the Zerg, see them driven before you, and hear the lamentations of the Protoss.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
March 30 2017 20:15 GMT
#17297
I have a feeling this thread is gonna really blow up over the summer when I take Intro to Algorithms.
Manit0u
Profile Blog Joined August 2004
Poland17243 Posts
March 30 2017 21:05 GMT
#17298
On March 31 2017 05:15 travis wrote:
I have a feeling this thread is gonna really blow up over the summer when I take Intro to Algorithms.


Summer is not for school...
Time is precious. Waste it wisely.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
March 30 2017 21:18 GMT
#17299
Well it is unless you want to hire me for an internship.
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
March 30 2017 22:44 GMT
#17300
Could someone help me parse
int (*getFunc())(int, int) { … }
, which is a function that returns a pointer to a function?

I understand that it returns an int, but I don't get what is happening in the first set of brackets.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Prev 1 863 864 865 866 867 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 25m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Creator 99
Rex 5
StarCraft: Brood War
Hyuk 759
Pusan 491
Soma 457
Stork 309
Jaedong 205
ZerO 170
Sharp 160
Larva 134
sorry 129
Soulkey 98
[ Show more ]
sSak 98
Shine 65
yabsab 51
Snow 39
Aegong 39
Free 27
zelot 26
JulyZerg 25
Mind 24
IntoTheRainbow 10
ivOry 3
Dota 2
XcaliburYe586
XaKoH 466
syndereN92
League of Legends
singsing182
Counter-Strike
shoxiejesuss675
x6flipin382
allub147
Super Smash Bros
Mew2King215
Other Games
Pyrionflax305
crisheroes265
SortOf152
rGuardiaN45
ZerO(Twitch)16
Organizations
Other Games
gamesdonequick29158
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota2227
League of Legends
• HappyZerGling100
Other Games
• WagamamaTV166
Upcoming Events
Wardi Open
25m
Replay Cast
13h 25m
Sparkling Tuna Cup
23h 25m
WardiTV European League
1d 5h
MaNa vs sebesdes
Mixu vs Fjant
ByuN vs HeRoMaRinE
ShoWTimE vs goblin
Gerald vs Babymarine
Krystianer vs YoungYakov
PiGosaur Monday
1d 13h
The PondCast
1d 23h
WardiTV European League
2 days
Jumy vs NightPhoenix
Percival vs Nicoract
ArT vs HiGhDrA
MaxPax vs Harstem
Scarlett vs Shameless
SKillous vs uThermal
uThermal 2v2 Circuit
2 days
Replay Cast
2 days
RSL Revival
2 days
ByuN vs SHIN
Clem vs Reynor
[ Show More ]
Replay Cast
3 days
RSL Revival
3 days
Classic vs Cure
FEL
4 days
RSL Revival
4 days
FEL
5 days
FEL
5 days
Sparkling Tuna Cup
5 days
RSL Revival
5 days
FEL
6 days
Liquipedia Results

Completed

BSL Season 20
HSC XXVII
Heroes 10 EU

Ongoing

JPL Season 2
BSL 2v2 Season 3
Acropolis #3
KCM Race Survival 2025 Season 2
CSL 17: 2025 SUMMER
Copa Latinoamericana 4
Jiahua Invitational
Championship of Russia 2025
RSL Revival: Season 1
Murky Cup #2
BLAST.tv Austin Major 2025
ESL Impact League Season 7
IEM Dallas 2025
PGL Astana 2025
Asian Champions League '25
BLAST Rivals Spring 2025
MESA Nomadic Masters
CCT Season 2 Global Finals
IEM Melbourne 2025

Upcoming

2025 ACS Season 2: Qualifier
CSLPRO Last Chance 2025
CSL Xiamen Invitational
2025 ACS Season 2
CSLPRO Chat StarLAN 3
K-Championship
uThermal 2v2 Main Event
SEL Season 2 Championship
FEL Cracov 2025
Esports World Cup 2025
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1
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 © 2025 TLnet. All Rights Reserved.