• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 08:14
CEST 14:14
KST 21:14
  • 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
Team TLMC #5 - Finalists & Open Tournaments1[ASL20] Ro16 Preview Pt2: Turbulence10Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
StarCraft II 5.0.15 PTR Patch Notes146BSL 2025 Warsaw LAN + Legends Showmatch2Weekly Cups (Sept 8-14): herO & MaxPax split cups4WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia8
StarCraft 2
General
StarCraft II 5.0.15 PTR Patch Notes Why Storm Should NOT Be Nerfed – A Core Part of Pr #1: Maru - Greatest Players of All Time Team TLMC #5 - Finalists & Open Tournaments Team Liquid Map Contest #21 - Presented by Monster Energy
Tourneys
RSL: Revival, a new crowdfunded tournament series Stellar Fest KSL Week 80 StarCraft Evolution League (SC Evo Biweekly) SC2's Safe House 2 - October 18 & 19
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
Soulkey on ASL S20 ASL20 General Discussion BW General Discussion Diplomacy, Cosmonarchy Edition ASL TICKET LIVE help! :D
Tourneys
[ASL20] Ro16 Group D BSL 2025 Warsaw LAN + Legends Showmatch [ASL20] Ro16 Group C Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile Borderlands 3 Nintendo Switch Thread General RTS Discussion Thread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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
Community
General
US Politics Mega-thread The Big Programming Thread Things Aren’t Peaceful in Palestine Russo-Ukrainian War Thread UK Politics Mega-thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
Too Many LANs? Tournament Ov…
TrAiDoS
i'm really bored guys
Peanutsc
I <=> 9
KrillinFromwales
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1583 users

The Big Programming Thread - Page 835

Forum Index > General Forum
Post a Reply
Prev 1 833 834 835 836 837 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.
Askelad
Profile Joined October 2016
France20 Posts
Last Edited: 2017-02-18 17:49:28
February 05 2017 03:58 GMT
#16681
.
TheEmulator
Profile Blog Joined July 2010
28090 Posts
February 05 2017 04:30 GMT
#16682
Yea Matlab isn't too difficult to understand. I'm sure there's shitloads of materials on the internet to learn from as well. I never had to use it in Linear Algebra, although I used it a bit in Econometrics and I'm pretty sure we learned most of what was needed after a couple of tutorial lectures.
Administrator
maybenexttime
Profile Blog Joined November 2006
Poland5629 Posts
February 05 2017 08:19 GMT
#16683
MATLAB question.

I am learning how to create a simple dialog box GUI in Matlab, and I am not sure what is the proper way to handle invalid inputs. Namely, the pattern repeats itself: I have the parameter name, default value variable name, condition, and the error message.

Should I create a function that uses this pattern or leave it as it is now? Is it more proper to have explicit if statements or to reduce the number of lines considerably by making the if statements implicit (hidden in a dedicated function).

+ Show Spoiler +
while open_prompt
open_prompt = false;

answer_initial = inputdlg(prompt_initial, name_initial, num_lines, ...
default_initial);
default_initial{1} = answer_initial{1};

if (str2double(answer_initial{2}) >= 0) & ...
(str2double(answer_initial{2}) <= str2double(answer_initial{1}))

default_initial{2} = answer_initial{2};
else
uiwait(errordlg('Support A location outside of the beam length'));
default_initial{2} = '';
open_prompt = true;
end

if (str2double(answer_initial{3}) >= 0) & ...
(str2double(answer_initial{3}) <= str2double(answer_initial{1}))

default_initial{3} = answer_initial{3};
else
uiwait(errordlg('Support B location outside of the beam length'));
default_initial{3} = '';
open_prompt = true;
end

if (str2double(answer_initial{4}) >= 0)

default_initial{4} = answer_initial{4};
else
uiwait(errordlg('Number of distributed loads cannot be negative'));
default_initial{4} = '';
open_prompt = true;
end

if (str2double(answer_initial{5}) >= 0)

default_initial{5} = answer_initial{5};
else
uiwait(errordlg('Number of point loads cannot be negative'));
default_initial{5} = '';
open_prompt = true;
end

if (str2double(answer_initial{6}) >= 0)

default_initial{6} = answer_initial{6};
else
uiwait(errordlg('Number of point moments cannot be negative'));
default_initial{6} = '';
open_prompt = true;
end
end
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2017-02-05 08:53:27
February 05 2017 08:38 GMT
#16684
IMO this would be a better pattern


while loop

loop = false
data = get_input

if !cond
show_error
loop = true

if !cond
show_error
loop = true

...

if !loop
action


In which case no need to make a function
There is no one like you in the universe.
maybenexttime
Profile Blog Joined November 2006
Poland5629 Posts
February 05 2017 09:54 GMT
#16685
On February 05 2017 17:38 Blisse wrote:
IMO this would be a better pattern


while loop

loop = false
data = get_input

if !cond
show_error
loop = true

if !cond
show_error
loop = true

...

if !loop
action


In which case no need to make a function


Thanks for your input. I am, however, not sure this is going to maintain the same functionality. In my code the dialog box has a set of default values: default_initial = {'10', '0', '10', '1', '1', '1'}. By checking the validity of each input value individually, I can either replace the default value with the valid input value (default_initial{2} = answer_initial{2}) or make the field empty (default_initial{2} = '').

    if (str2double(answer_initial{2}) >= 0) & ...
(str2double(answer_initial{2}) <= str2double(answer_initial{1}))

default_initial{2} = answer_initial{2};
else
uiwait(errordlg('Support A location outside of the beam length'));
default_initial{2} = '';
open_prompt = true;
end


If I were to put all actions in the very last if statement, then upon opening the dialog box again (in the next iteration of the while loop) the initial default values would be used, and all valid inputs would be lost.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-05 13:17:25
February 05 2017 13:15 GMT
#16686
On February 05 2017 12:58 Askelad wrote:
Show nested quote +
On February 05 2017 10:14 Shield wrote:
On February 05 2017 10:05 slmw wrote:
But they're all equally correct in this case?! Tofucake's answer makes no sense.


No, they're not. It also depends if you should have one selection only. In that case, you cannot select more than one of them. However, even if you can, real numbers is more correct because it includes irrational numbers. I think irrational numbers still satisfy requirement in that question.

Real numbers = natural numbers + integers + rational numbers + irrational numbers.

Edit: It's a tricky question because you might not think of irrational numbers at all.


Makes even less sense. Seriously what was that rant about the irrationals...


Educate yourself: https://en.wikipedia.org/wiki/Irrational_number

On February 05 2017 12:17 travis wrote:
since it (understandably) turned into a semantics argument, I'll let everyone know that I selected all of the options and got the answer correct.


It doesn't seem the best answer to me. Real numbers should be better because others do not mention irrational numbers. Or did you select real numbers too?
Nesserev
Profile Blog Joined January 2011
Belgium2760 Posts
February 05 2017 13:57 GMT
#16687
--- Nuked ---
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-05 14:24:03
February 05 2017 14:04 GMT
#16688
On February 05 2017 22:57 Nesserev wrote:
Show nested quote +
On February 05 2017 22:15 Shield wrote:
On February 05 2017 12:58 Askelad wrote:
On February 05 2017 10:14 Shield wrote:
On February 05 2017 10:05 slmw wrote:
But they're all equally correct in this case?! Tofucake's answer makes no sense.


No, they're not. It also depends if you should have one selection only. In that case, you cannot select more than one of them. However, even if you can, real numbers is more correct because it includes irrational numbers. I think irrational numbers still satisfy requirement in that question.

Real numbers = natural numbers + integers + rational numbers + irrational numbers.

Edit: It's a tricky question because you might not think of irrational numbers at all.


Makes even less sense. Seriously what was that rant about the irrationals...


Educate yourself: https://en.wikipedia.org/wiki/Irrational_number

On February 05 2017 12:17 travis wrote:
since it (understandably) turned into a semantics argument, I'll let everyone know that I selected all of the options and got the answer correct.


It doesn't seem the best answer to me. Real numbers should be better because others do not mention irrational numbers. Or did you select real numbers too?

Uh, lol what? That's kind of uncalled for, especially because it's clear that you're in the wrong here. Sorry, but the one that needs a lesson is you... a lesson in not being an idiot, and perhaps set theory.

You should focus on this: "for all x in D[there exists a y in D ( x < y)]"

That statement is true for any number set Travis listed. If D is either the set of integers, natural numbers or rational numbers, there's zero reason to consider irrational numbers, because irrational numbers aren't in those sets...

How can 'true' be more correct than 'true'?

So, where is your confusion coming from? All that I can think of is that you didn't parse the question correctly, and think D is supposed to be any random interval of real numbers? And you seem to be reinforcing this idea because you're grasping back at irrational numbers...


Dude, you're wrong and you need to be taught how not to be an idiot. Or go study some math?

Integers: true (for all x in D[there exists a y in D ( x < y)])
Rational numbers: true (for all x in D[there exists a y in D ( x < y)])
Natural numbers: true (for all x in D[there exists a y in D ( x < y)])

Set of real numbers has integers, rational numbers and natural numbers. So, all of above is true. Plus, irrational numbers which are in the set of real numbers. E.g.
x = √2
y = √3
x < y


The set of real numbers is BIGGER than the union of natural numbers, integers and rationals.
spinesheath
Profile Blog Joined June 2009
Germany8679 Posts
Last Edited: 2017-02-05 15:00:47
February 05 2017 14:59 GMT
#16689
For the record: The question asks for which set a condition holds, not which set among the list is the best match or anything like that. So you have to evaluate each set by itself. As per the wording of the question, the answer is "it is true for all 4 sets".
If you have a good reason to disagree with the above, please tell me. Thank you.
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-05 15:04:11
February 05 2017 15:02 GMT
#16690
On February 05 2017 23:59 spinesheath wrote:
For the record: The question asks for which set a condition holds, not which set among the list is the best match or anything like that. So you have to evaluate each set by itself. As per the wording of the question, the answer is "it is true for all 4 sets". Nobody is doubting that integers are part of the real numbers, it just has nothing to do with the question.


Sure, I was asking travis if he chose all 4 but some people can't argue in a respectful way.

On February 05 2017 12:58 Askelad wrote:
Show nested quote +
On February 05 2017 10:14 Shield wrote:
On February 05 2017 10:05 slmw wrote:
But they're all equally correct in this case?! Tofucake's answer makes no sense.


No, they're not. It also depends if you should have one selection only. In that case, you cannot select more than one of them. However, even if you can, real numbers is more correct because it includes irrational numbers. I think irrational numbers still satisfy requirement in that question.

Real numbers = natural numbers + integers + rational numbers + irrational numbers.

Edit: It's a tricky question because you might not think of irrational numbers at all.


Makes even less sense. Seriously what was that rant about the irrationals...

Hanh
Profile Joined June 2016
146 Posts
February 05 2017 15:04 GMT
#16691
The question is not about which set include more numbers that fulfill the condition but which ones do or not. This isn't answering the question (and arguably showing off).
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-02-05 15:37:55
February 05 2017 15:36 GMT
#16692
I encrypted my vim file

how do I remove the encryption from within vim

I don't want it to be encrypted anymore

ok I figured it out

:set key=

vim is weird though.. I had to exit with :wq and not :x or it wasn't saving the change.. no idea why. wtf tbh
Wrath
Profile Blog Joined July 2014
3174 Posts
February 05 2017 15:47 GMT
#16693
On February 06 2017 00:36 travis wrote:
I encrypted my vim file

how do I remove the encryption from within vim

I don't want it to be encrypted anymore

ok I figured it out

:set key=

vim is weird though.. I had to exit with :wq and not :x or it wasn't saving the change.. no idea why. wtf tbh


Wasn't always :wq to save and :q! to exit without saving? Never heard of :x before.
Hanh
Profile Joined June 2016
146 Posts
February 05 2017 16:29 GMT
#16694
:x won't save if there are no changes. Maybe removing encryption isn't considered a change? Vim is weird.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2017-02-05 21:17:28
February 05 2017 20:32 GMT
#16695
WHAT IS GOING ON

why does this:


if(shape_choice == 2) {
scanf("%c ", &char_choice);
printf("%c", char_choice);
printf("Enter character and size: ");


simply print an empty line and then ask me for a character and size
it doesn't even give me a chance to input a character the first time

whelp, figured it out
any time you have a scanf you're gonna need a whitespace before your next scanf? that's so annoying
Shield
Profile Blog Joined August 2009
Bulgaria4824 Posts
Last Edited: 2017-02-05 21:53:44
February 05 2017 21:52 GMT
#16696
Welcome to C where you can f*ck yourself nicely. Not that C++ is perfect, but it's much safer.

You might want to read this answer because your whitespace should be first: http://stackoverflow.com/a/13543113
Blisse
Profile Blog Joined July 2010
Canada3710 Posts
Last Edited: 2017-02-05 23:17:35
February 05 2017 22:56 GMT
#16697
On February 05 2017 18:54 maybenexttime wrote:
Show nested quote +
On February 05 2017 17:38 Blisse wrote:
IMO this would be a better pattern


while loop

loop = false
data = get_input

if !cond
show_error
loop = true

if !cond
show_error
loop = true

...

if !loop
action


In which case no need to make a function


Thanks for your input. I am, however, not sure this is going to maintain the same functionality. In my code the dialog box has a set of default values: default_initial = {'10', '0', '10', '1', '1', '1'}. By checking the validity of each input value individually, I can either replace the default value with the valid input value (default_initial{2} = answer_initial{2}) or make the field empty (default_initial{2} = '').

    if (str2double(answer_initial{2}) >= 0) & ...
(str2double(answer_initial{2}) <= str2double(answer_initial{1}))

default_initial{2} = answer_initial{2};
else
uiwait(errordlg('Support A location outside of the beam length'));
default_initial{2} = '';
open_prompt = true;
end


If I were to put all actions in the very last if statement, then upon opening the dialog box again (in the next iteration of the while loop) the initial default values would be used, and all valid inputs would be lost.


Not totally certain I'm walking through your logic and explanation in the same way, but there is no next iteration of the loop if you've put all the action in the else block - the loop exits.

The `action` in my example would be doing whatever you needed with the answer_initial (in this case copying each value to default_initial).

edit: ohh okay I see what you mean by losing all the valid values on the next iteration, when the user enters valid and invalid values you want to keep the valid values and not set the invalid ones. Let me think about that..

edit2: i think your way is fine if you have that requirement. in that case i think it'd be nice to make a function. generally i disagree with making extra functions "for readability" if that function is only used once. the exception would be in cases where you'd expect that function to exist, i.e. client::isConnected(). in this case i'd like a somewhat generic function like `bool setArrayValueIfTrue(arr, index, value, cond)`.
There is no one like you in the universe.
maybenexttime
Profile Blog Joined November 2006
Poland5629 Posts
February 06 2017 09:18 GMT
#16698
On February 06 2017 07:56 Blisse wrote:
+ Show Spoiler +
On February 05 2017 18:54 maybenexttime wrote:
Show nested quote +
On February 05 2017 17:38 Blisse wrote:
IMO this would be a better pattern


while loop

loop = false
data = get_input

if !cond
show_error
loop = true

if !cond
show_error
loop = true

...

if !loop
action


In which case no need to make a function


Thanks for your input. I am, however, not sure this is going to maintain the same functionality. In my code the dialog box has a set of default values: default_initial = {'10', '0', '10', '1', '1', '1'}. By checking the validity of each input value individually, I can either replace the default value with the valid input value (default_initial{2} = answer_initial{2}) or make the field empty (default_initial{2} = '').

    if (str2double(answer_initial{2}) >= 0) & ...
(str2double(answer_initial{2}) <= str2double(answer_initial{1}))

default_initial{2} = answer_initial{2};
else
uiwait(errordlg('Support A location outside of the beam length'));
default_initial{2} = '';
open_prompt = true;
end


If I were to put all actions in the very last if statement, then upon opening the dialog box again (in the next iteration of the while loop) the initial default values would be used, and all valid inputs would be lost.


Not totally certain I'm walking through your logic and explanation in the same way, but there is no next iteration of the loop if you've put all the action in the else block - the loop exits.

The `action` in my example would be doing whatever you needed with the answer_initial (in this case copying each value to default_initial).

edit: ohh okay I see what you mean by losing all the valid values on the next iteration, when the user enters valid and invalid values you want to keep the valid values and not set the invalid ones. Let me think about that..

edit2: i think your way is fine if you have that requirement. in that case i think it'd be nice to make a function. generally i disagree with making extra functions "for readability" if that function is only used once. the exception would be in cases where you'd expect that function to exist, i.e. client::isConnected(). in this case i'd like a somewhat generic function like `bool setArrayValueIfTrue(arr, index, value, cond)`.


Thank you! I might have a few more questions regarding putting such recurring patterns into functions, but I'll give it a try myself first.
Silvanel
Profile Blog Joined March 2003
Poland4731 Posts
February 06 2017 09:31 GMT
#16699
So our customer just recently acccepted the software. Its a great feeling that work You (and few hundred other people) have been doing for last year and a half did not go in vain. Will be deployed to market in next 1-2 months.

I know this post isnt very productive. I just wanted to share my excitement.
Pathetic Greta hater.
AKnopf
Profile Blog Joined March 2011
Germany259 Posts
February 06 2017 09:45 GMT
#16700
On February 06 2017 18:31 Silvanel wrote:
So our customer just recently acccepted the software. Its a great feeling that work You (and few hundred other people) have been doing for last year and a half did not go in vain. Will be deployed to market in next 1-2 months.

I know this post isnt very productive. I just wanted to share my excitement.


Sharing positive feelings should never be considered unproductive. :-)

Congrats! It's always such a nice feeling to have your work published, even if it's only a small fix or a simple feature the customer needs. A satisfied customer is almost as good as the feeling when jenkins works and your latest commit doesn't break the test suite. ;-D
The world - its a funny place
Prev 1 833 834 835 836 837 1031 Next
Please log in or register to reply.
Live Events Refresh
RSL Revival
10:00
Season 2: Playoffs Day 7
Cure vs ZounLIVE!
Tasteless1253
Crank 1116
IndyStarCraft 228
CranKy Ducklings104
Rex103
3DClanTV 46
IntoTheiNu 19
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Tasteless 1253
Crank 1116
IndyStarCraft 228
Rex 103
MindelVK 38
Railgan 26
StarCraft: Brood War
Britney 44101
Calm 7883
Rain 2649
Horang2 2266
Flash 2062
GuemChi 1160
EffOrt 818
Larva 536
BeSt 467
actioN 423
[ Show more ]
Hyuk 315
Hyun 286
Zeus 206
Last 193
firebathero 182
Soma 114
Rush 113
ZZZero.O 92
Aegong 90
Light 85
Soulkey 69
sSak 67
Sharp 65
Free 58
ajuk12(nOOB) 56
Nal_rA 46
Movie 41
Mong 39
soO 34
sas.Sziky 31
Sacsri 29
Sexy 27
ivOry 21
Icarus 17
Hm[arnc] 10
Terrorterran 4
Noble 3
Dota 2
singsing2890
Gorgc2340
qojqva1380
Dendi1218
XcaliburYe734
Fuzer 207
Counter-Strike
allub268
Heroes of the Storm
Khaldor183
Other Games
B2W.Neo1050
DeMusliM495
crisheroes374
Lowko175
Hui .144
NeuroSwarm45
Trikslyr24
Organizations
Other Games
gamesdonequick713
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
League of Legends
• Jankos1883
• Stunt552
Other Games
• WagamamaTV269
Upcoming Events
BSL Open LAN 2025 - War…
2h 46m
OSC
8h 46m
BSL Open LAN 2025 - War…
19h 46m
RSL Revival
21h 46m
Classic vs TBD
WardiTV Invitational
22h 46m
Online Event
1d 3h
Wardi Open
1d 22h
Monday Night Weeklies
2 days
Sparkling Tuna Cup
2 days
LiuLi Cup
3 days
[ Show More ]
The PondCast
4 days
CranKy Ducklings
5 days
Liquipedia Results

Completed

Proleague 2025-09-10
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
2025 Chongqing Offline CUP
BSL World Championship of Poland 2025
RSL Revival: Season 2
Maestros of the Game
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

Upcoming

IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
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.