• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 16:00
CET 22:00
KST 06:00
  • 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
TL.net Map Contest #21: Winners2Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11
Community News
Starcraft, SC2, HoTS, WC3, returning to Blizzcon!20$5,000+ WardiTV 2025 Championship5[BSL21] RO32 Group Stage3Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win9
StarCraft 2
General
TL.net Map Contest #21: Winners Starcraft, SC2, HoTS, WC3, returning to Blizzcon! RotterdaM "Serral is the GOAT, and it's not close" Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win 5.0.15 Patch Balance Hotfix (2025-10-8)
Tourneys
$5,000+ WardiTV 2025 Championship Constellation Cup - Main Event - Stellar Fest Merivale 8 Open - LAN - Stellar Fest Sea Duckling Open (Global, Bronze-Diamond) $3,500 WardiTV Korean Royale S4
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ SnOw's ASL S20 Finals Review [BSL21] RO32 Group Stage Practice Partners (Official) [ASL20] Ask the mapmakers — Drop your questions
Tourneys
[Megathread] Daily Proleagues [BSL21] RO32 Group B - Sunday 21:00 CET [BSL21] RO32 Group A - Saturday 21:00 CET BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION
Strategy
Current Meta How to stay on top of macro? PvZ map balance Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Stormgate/Frost Giant Megathread Nintendo Switch Thread Dawn of War IV ZeroSpace Megathread General RTS Discussion Thread
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
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine YouTube Thread Dating: How's your luck?
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Movie Discussion! [Manga] One Piece Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Why we need SC3
Hildegard
Career Paths and Skills for …
TrAiDoS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1234 users

The Big Programming Thread - Page 911

Forum Index > General Forum
Post a Reply
Prev 1 909 910 911 912 913 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
Poland17420 Posts
Last Edited: 2017-10-21 11:00:15
October 21 2017 10:59 GMT
#18201
On October 21 2017 01:43 travis wrote:
zigg, like your idea, that makes sense
hanh, i took a glance. I'll look at it a bit closer at some of the algorithms for that and see if I can apply them.

Show nested quote +
On October 20 2017 21:15 Manit0u wrote:
Just remove all 1's that are adjacent to 2's and then remove the 2's?

Edit:
Simpler yet:
1. Find all 2's
2. Make an adjacency list for 2's (ignoring duplicates) which is dead simple for 2d array
3. Profit!


I don't understand your first suggestion.

For the 2nd suggestion, you are saying to
1.) put each 2_location[x][y] into a list
2.) then for each element of the list create a sublist of each adjacent_1_location[x][y]
3.) and then for the next iteration I can just repeat for the elements in the sublist?
4.) repeat 2 and 3 until I am done?

Is this correct? If so, I really like this. And you'd probably mean for me to avoid adding the same adjacent_1_location[x][y] into 2 different sublists, but actually, because of the nature of what I am trying to do with this problem it is actually solving a future problem for me to just put them in there anyways. Long term I was going to need to do math based on the relationship of every square of ring 2 that touches any given square of ring 1. So this is PERFECT for that.


Here's how to do it step by step:

1. Note the location of all 2's (x, y).
2. Note the location of all elements adjacent to those 2's (we don't care if it's 0, 1, 2).
3. Set all those locations to 0.

Example:

1 1 1 1
1 1 2 1
1 2 2 1
1 1 1 1

grid_size = 4
loc_2 = [ [1, 2], [2, 1], [2, 2] ]

def find_adjacent_to(coords)
adj = []

adj << [ coords[0], coords[1] - 1] if coords[1] > 0 # left
adj << [ coords[0], coords[1] + 1] if coords[1] < grid_size # right
adj << [ coords[0 - 1], coords[1]] if coords[0] > 0 # top
adj << [ coords[0] + 1, coords[1]] if coords[0] < grid_size # bottom

adj
end

# all cells of interest are loc_2 + find_adjacent for each loc_2


This is pretty naive example but it gives you every single cell you need to work with by traversing the grid just once (to find the 2's).
All you're working with later is a specific set of coordinates being just a subset of the grid, which makes your work that much easier.

On October 21 2017 04:55 spinesheath wrote:
I'm reading your solution as
^$|^b*(ab)*b*(a?)$
Is that right? Not sure what those dots below the stars mean here.
Anyways, my counterexample would be:
abbbabbbab

Reason: you only allow a single occurrence of the a - many b's - a pattern. The NFA allows an arbitrary number of those by going 100010001000...

My solution:
^(b*(ab)*)*(a?)$

Also you shouldn't need to explicitly have the epsilon case when everything in your regex is optional.


This is not in line with what he stated earlier in the question. Travis marked "ababb" as acceptable and this will fail on such expression (you can't start with "a").

Here's a proper regexp for that:

^(?:(?!aa)[ab])+$
Time is precious. Waste it wisely.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-10-21 13:29:53
October 21 2017 13:29 GMT
#18202
I am not familiar with the "?:" "?:". Is this language specific ?
But I think spinesheath's solution actually does work

for ababb he sees

(b*(ab*))

which he uses to construct abab

but outside of (b*(ab)*) we have another * (you may have missed this)

so we run through again (b*(ab)*) again to get our final b

and then have ababb
Hanh
Profile Joined June 2016
146 Posts
October 21 2017 13:50 GMT
#18203
How about

(b|ab)*a?


Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
October 21 2017 14:43 GMT
#18204
yeah, I think that is the most concise version.
Manit0u
Profile Blog Joined August 2004
Poland17420 Posts
October 21 2017 15:25 GMT
#18205
On October 21 2017 22:29 travis wrote:
I am not familiar with the "?:" "?:". Is this language specific ?
But I think spinesheath's solution actually does work

for ababb he sees

(b*(ab*))

which he uses to construct abab

but outside of (b*(ab)*) we have another * (you may have missed this)

so we run through again (b*(ab)*) again to get our final b

and then have ababb


"?:" is a non-capturing group in the regex (when you want to know if it matches but don't care about the result). "?!" is negative look ahead (in the regex I posted it allows any combination of letters "a" and "b" as long as there are no 2+ letters "a" adjacent to each other).
Time is precious. Waste it wisely.
Hanh
Profile Joined June 2016
146 Posts
October 22 2017 02:25 GMT
#18206
No offence but
^(?:(?!aa)[ab])+$
...

1. it is not obvious why it should be equivalent to the NFA,
2. in fact it is not equivalent, the empty string is acceptable in the NFA but not in the regex,
3. it uses uncommon regex features, the ?! part
4. it does things that are not required: nothing about capturing group was mentioned in the question
5. the ?! has performance issue because of the lookahead backtrack
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2017-10-22 07:17:46
October 22 2017 07:14 GMT
#18207
On October 21 2017 19:59 Manit0u wrote:
Show nested quote +
On October 21 2017 04:55 spinesheath wrote:
I'm reading your solution as
^$|^b*(ab)*b*(a?)$
Is that right? Not sure what those dots below the stars mean here.
Anyways, my counterexample would be:
abbbabbbab

Reason: you only allow a single occurrence of the a - many b's - a pattern. The NFA allows an arbitrary number of those by going 100010001000...

My solution:
^(b*(ab)*)*(a?)$

Also you shouldn't need to explicitly have the epsilon case when everything in your regex is optional.


This is not in line with what he stated earlier in the question. Travis marked "ababb" as acceptable and this will fail on such expression (you can't start with "a").

Here's a proper regexp for that:

^(?:(?!aa)[ab])+$

I fail to see why my regex wouldn't match ababb. Especially since an online regex tester confirms it does.
I'm fairly confident that stuff like negative lookahead is not really a topic in university at that level (or any level at all). As far as I know it is not part of the formal definition of regex.

Also I need to play more regex golf. (b|ab)*a? is so clean and honestly, it should have been obvious.
If you have a good reason to disagree with the above, please tell me. Thank you.
Manit0u
Profile Blog Joined August 2004
Poland17420 Posts
October 23 2017 06:06 GMT
#18208
On October 22 2017 11:25 Hanh wrote:
No offence but
^(?:(?!aa)[ab])+$
...

1. it is not obvious why it should be equivalent to the NFA,
2. in fact it is not equivalent, the empty string is acceptable in the NFA but not in the regex,
3. it uses uncommon regex features, the ?! part
4. it does things that are not required: nothing about capturing group was mentioned in the question
5. the ?! has performance issue because of the lookahead backtrack


Haha, yeah. I'm way over my head with regexes lately. Still trying to figure out the best way to validate allowed path and filenames on Windows with it without much success, there's so many conditions that I keep running into catastrophic backtrace with strings that are > 12 characters long and have failing condition at the end.

On October 22 2017 16:14 spinesheath wrote:
Show nested quote +
On October 21 2017 19:59 Manit0u wrote:
On October 21 2017 04:55 spinesheath wrote:
I'm reading your solution as
^$|^b*(ab)*b*(a?)$
Is that right? Not sure what those dots below the stars mean here.
Anyways, my counterexample would be:
abbbabbbab

Reason: you only allow a single occurrence of the a - many b's - a pattern. The NFA allows an arbitrary number of those by going 100010001000...

My solution:
^(b*(ab)*)*(a?)$

Also you shouldn't need to explicitly have the epsilon case when everything in your regex is optional.


This is not in line with what he stated earlier in the question. Travis marked "ababb" as acceptable and this will fail on such expression (you can't start with "a").

Here's a proper regexp for that:

^(?:(?!aa)[ab])+$

I fail to see why my regex wouldn't match ababb. Especially since an online regex tester confirms it does.
I'm fairly confident that stuff like negative lookahead is not really a topic in university at that level (or any level at all). As far as I know it is not part of the formal definition of regex.

Also I need to play more regex golf. (b|ab)*a? is so clean and honestly, it should have been obvious.


The problem with this regex is that it allows multiples of "a" in succession (and I thought the goal was not to allow them).
Time is precious. Waste it wisely.
bo1b
Profile Blog Joined August 2012
Australia12814 Posts
October 23 2017 08:36 GMT
#18209
Is it possible with cmake to have multiple independant executables with different names? I have a folder of very small files where I like to try things out (think less then 1k loc) and I'd really like to not have to organise this disaster.
Hanh
Profile Joined June 2016
146 Posts
Last Edited: 2017-10-23 08:40:55
October 23 2017 08:40 GMT
#18210
On October 23 2017 15:06 Manit0u wrote:
The problem with this regex is that it allows multiples of "a" in succession (and I thought the goal was not to allow them).


Hmm ... no it doesn't... Besides, the goal is not to avoid multiple "a" in succession but to translate the NFA.


Acrofales
Profile Joined August 2010
Spain18108 Posts
October 23 2017 17:17 GMT
#18211
On October 23 2017 17:40 Hanh wrote:
Show nested quote +
On October 23 2017 15:06 Manit0u wrote:
The problem with this regex is that it allows multiples of "a" in succession (and I thought the goal was not to allow them).


Hmm ... no it doesn't... Besides, the goal is not to avoid multiple "a" in succession but to translate the NFA.



Well, the NFA doesn't allow multiple "a"s in succession...

Anyway, spinesheath got by far the most elegant solution (and it was really obvious). I was wondering where the hell you guys found the problem, but I just figured out that travis had an image link that I had clicked on, but didn't open properly on my phone.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
October 23 2017 17:38 GMT
#18212
On October 24 2017 02:17 Acrofales wrote:
Show nested quote +
On October 23 2017 17:40 Hanh wrote:
On October 23 2017 15:06 Manit0u wrote:
The problem with this regex is that it allows multiples of "a" in succession (and I thought the goal was not to allow them).


Hmm ... no it doesn't... Besides, the goal is not to avoid multiple "a" in succession but to translate the NFA.



Well, the NFA doesn't allow multiple "a"s in succession...

Anyway, spinesheath got by far the most elegant solution (and it was really obvious). I was wondering where the hell you guys found the problem, but I just figured out that travis had an image link that I had clicked on, but didn't open properly on my phone.

Whoa hold it. That's Hanh's solution.
If you have a good reason to disagree with the above, please tell me. Thank you.
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2017-10-23 18:02:35
October 23 2017 18:02 GMT
#18213
On October 23 2017 17:36 bo1b wrote:
Is it possible with cmake to have multiple independant executables with different names? I have a folder of very small files where I like to try things out (think less then 1k loc) and I'd really like to not have to organise this disaster.



add_executable(exec_a a1.c a2.c)
add_executable(exec_b b1.c b2.c)


?
There is no one like you in the universe.
LG)Sabbath
Profile Blog Joined July 2005
Argentina3024 Posts
October 23 2017 23:52 GMT
#18214
On October 16 2017 18:14 Manit0u wrote:
https://api-platform.com/

Fucken amazing!

https://github.com/docker/dockercraft

This is too much...

After reading the intro, still not sure what that framework is like. The intro is basically a docker-compose + doctrine tutorial.
https://www.twitch.tv/argsabbath/
bo1b
Profile Blog Joined August 2012
Australia12814 Posts
October 24 2017 07:20 GMT
#18215
On October 24 2017 03:02 Blisse wrote:
Show nested quote +
On October 23 2017 17:36 bo1b wrote:
Is it possible with cmake to have multiple independant executables with different names? I have a folder of very small files where I like to try things out (think less then 1k loc) and I'd really like to not have to organise this disaster.



add_executable(exec_a a1.c a2.c)
add_executable(exec_b b1.c b2.c)


?

I tried doing something similar and had an error come up. Tried doing it again and it works. :\ I feel a little silly now lol.
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
October 24 2017 14:50 GMT
#18216
Does anyone have experience with PyQt exit codes? I am running PyQt5 and python 3.6.2 and my app crashes with some exit codes like: "Process finished with exit code 3" not usual python traceback info. This makes it really hard to debug since i cant find any explantion for those codes.

I think this is PyQt thing and the only solution i found on net is overwriting exeption handler.
Any ideas?
Pathetic Greta hater.
Acrofales
Profile Joined August 2010
Spain18108 Posts
October 24 2017 19:16 GMT
#18217
Don't use PyQT, but seems this is relevant: https://stackoverflow.com/questions/33736819/pyqt-no-error-msg-traceback-on-exit

Have you tried just putting your entire script between try catch and printing the exception and callback? Reading this seems like PyQT treats this as a last resource if the exception isn't being handled, and exits with an information-less error code.
Manit0u
Profile Blog Joined August 2004
Poland17420 Posts
October 25 2017 04:59 GMT
#18218
On October 24 2017 08:52 LG)Sabbath wrote:
Show nested quote +
On October 16 2017 18:14 Manit0u wrote:
https://api-platform.com/

Fucken amazing!

https://github.com/docker/dockercraft

This is too much...

After reading the intro, still not sure what that framework is like. The intro is basically a docker-compose + doctrine tutorial.


It's pretty much Symfony in API-only mode
Time is precious. Waste it wisely.
Silvanel
Profile Blog Joined March 2003
Poland4733 Posts
Last Edited: 2017-10-25 07:31:49
October 25 2017 07:30 GMT
#18219
On October 25 2017 04:16 Acrofales wrote:
Don't use PyQT, but seems this is relevant: https://stackoverflow.com/questions/33736819/pyqt-no-error-msg-traceback-on-exit

Have you tried just putting your entire script between try catch and printing the exception and callback? Reading this seems like PyQT treats this as a last resource if the exception isn't being handled, and exits with an information-less error code.


Yeah i found this also. I think i will try to run line by line and if that doesnt help try override sys.execpthook. Still there is number provided in that exit process message (its 0 for example if application finish without errors), so i wondered if anyone knows what 3 stands for in my example, thats probably some group of errors. Knowning that could probably help me a lot.
Pathetic Greta hater.
Manit0u
Profile Blog Joined August 2004
Poland17420 Posts
October 25 2017 07:56 GMT
#18220
Completely unrelated:


module Api::V1::Media::JobProcessingService
def self.find_all_processes_for_job(job)
subquery = Api::V1::Media::Process.select(:id).where(
process_step_id: Api::V1::Media::ProcessStep.select(:id).where(
job_id: job.id
)
)

query = lambda { |model|
model
.joins(process: :process_step)
.select("#{model.table_name}.*, api_v1_media_process_steps.position")
.where(process_id: subquery)
.order('api_v1_media_process_steps.position ASC')
}

{
automated_processes: query.call(Api::V1::Media::AutomatedProcess),
manual_processes: query.call(Api::V1::Media::ManualProcess)
}
end
end


Resulting query (code returns objects):

SELECT api_v1_media_automated_processes.*, api_v1_media_process_steps.position
FROM "api_v1_media_automated_processes"
INNER JOIN "api_v1_media_processes" ON "api_v1_media_processes"."id" = "api_v1_media_automated_processes"."process_id"
INNER JOIN "api_v1_media_process_steps" ON "api_v1_media_process_steps"."id" = "api_v1_media_processes"."process_step_id"
WHERE "api_v1_media_automated_processes"."process_id" IN (
SELECT "api_v1_media_processes"."id"
FROM "api_v1_media_processes"
WHERE "api_v1_media_processes"."process_step_id" IN (
SELECT "api_v1_media_process_steps"."id"
FROM "api_v1_media_process_steps"
WHERE "api_v1_media_process_steps"."job_id" = $1
)
)
ORDER BY api_v1_media_process_steps.position ASC


Working with modern languages and frameworks can be really rewarding at times.
Time is precious. Waste it wisely.
Prev 1 909 910 911 912 913 1032 Next
Please log in or register to reply.
Live Events Refresh
LAN Event
18:00
Day 3: Ursa 2v2, FFA
SteadfastSC393
IndyStarCraft 177
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 499
SteadfastSC 393
White-Ra 211
IndyStarCraft 177
UpATreeSC 142
ProTech125
Railgan 67
ROOTCatZ 43
StarCraft: Brood War
Shuttle 460
Bonyth 69
ivOry 14
Dota 2
Dendi985
Counter-Strike
pashabiceps1182
Foxcn163
Super Smash Bros
Liquid`Ken9
Heroes of the Storm
Liquid`Hasu516
Other Games
Beastyqt728
fl0m665
Mlord452
FrodaN427
shahzam403
KnowMe185
Pyrionflax168
C9.Mang0125
ArmadaUGS115
ToD77
Mew2King74
Trikslyr53
OptimusSC21
Organizations
Counter-Strike
PGL192
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• Adnapsc2 11
• Reevou 9
• Dystopia_ 0
• Kozan
• sooper7s
• AfreecaTV YouTube
• Migwel
• LaughNgamezSOOP
• intothetv
• IndyKCrew
StarCraft: Brood War
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 3055
• Ler92
League of Legends
• TFBlade886
Other Games
• imaqtpie1303
• WagamamaTV341
• Scarra290
• Shiphtur221
Upcoming Events
OSC
1h
Replay Cast
2h
OSC
15h
LAN Event
18h
Korean StarCraft League
1d 6h
CranKy Ducklings
1d 13h
LAN Event
1d 18h
IPSL
1d 21h
dxtr13 vs OldBoy
Napoleon vs Doodle
BSL 21
1d 23h
Gosudark vs Kyrie
Gypsy vs Sterling
UltrA vs Radley
Dandy vs Ptak
Replay Cast
2 days
[ Show More ]
Sparkling Tuna Cup
2 days
WardiTV Korean Royale
2 days
LAN Event
2 days
IPSL
2 days
JDConan vs WIZARD
WolFix vs Cross
BSL 21
2 days
spx vs rasowy
HBO vs KameZerg
Cross vs Razz
dxtr13 vs ZZZero
Replay Cast
3 days
Wardi Open
3 days
WardiTV Korean Royale
4 days
Replay Cast
5 days
Kung Fu Cup
5 days
Classic vs Solar
herO vs Cure
Reynor vs GuMiho
ByuN vs ShoWTimE
Tenacious Turtle Tussle
6 days
The PondCast
6 days
RSL Revival
6 days
Solar vs Zoun
MaxPax vs Bunny
Kung Fu Cup
6 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025

Upcoming

BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
Stellar Fest
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
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.