Search found 1218 matches

by Thorium
Tue Feb 13, 2018 11:34 am
Forum: Applications - Feedback and Discussion
Topic: ARK Tribe Log Relay
Replies: 9
Views: 5897

Re: ARK Tribe Log Relay

I made a video of how to set up ATLR on a server, because it was requested.

https://youtu.be/AZaFXsEJRv8
by Thorium
Fri Jan 26, 2018 1:33 pm
Forum: General Discussion
Topic: PureBasic / SpiderBasic maintenance
Replies: 9
Views: 2937

Re: PureBasic / SpiderBasic maintenance

Just a feeling here... I don't have enough experience (will I ever have it?) or computer scientists skills to state whether or not OOP is a bad idea, but I'm working with TypeScript every day, and I feel that something's wrong out there. I miss the control I had with PureBasic. Too many things goin...
by Thorium
Fri Jan 26, 2018 12:15 pm
Forum: Applications - Feedback and Discussion
Topic: ARK Tribe Log Relay
Replies: 9
Views: 5897

ARK Tribe Log Relay

ARK is a popular game and i run a ARK server cluster. This tool is taking events from the game and posts them to Discord (chat service) channels. This is so you get informed about what happens in the game, while you are offline. Obviously written in PureBasic. It's called ATLR and it can relay the t...
by Thorium
Fri Jan 26, 2018 12:05 pm
Forum: General Discussion
Topic: PureBasic / SpiderBasic maintenance
Replies: 9
Views: 2937

Re: PureBasic / SpiderBasic maintenance

The problem with OOP is that it has big promisses, but mostly does not deliver on them. Most people don't stick strictly to OOP, they mix OOP and imperative. And that defeats the point of OOP and makes it hard to maintain. But if you stick strictly to OOP you will have a lot of problems organizing y...
by Thorium
Tue Jan 23, 2018 5:02 pm
Forum: Assembly and C Programming in PureBasic
Topic: 2D to 3D scanner converter software
Replies: 2
Views: 6968

Re: 2D to 3D scanner converter software

Without knowing how the algorithm works it's hard to answer. However knowing you did it in PureBasic the answer is probably yes it will run faster. How much is impossible to answer before we know more about your algorithm. Most importantly: Can it be parallelized to take advantage of the SIMD unit o...
by Thorium
Tue Jan 23, 2018 1:13 pm
Forum: Applications - Feedback and Discussion
Topic: Highscore server for mobile game
Replies: 4
Views: 2370

Re: Highscore server for mobile game

dige wrote:Hi Thorium, its a nice game! What was it programmed with?
With Unity.
by Thorium
Sun Jan 21, 2018 7:12 pm
Forum: Applications - Feedback and Discussion
Topic: Highscore server for mobile game
Replies: 4
Views: 2370

Re: Highscore server for mobile game

Interesting Thx, i will make it available to the PureBasic community at one point but it still needs some more testing and some things are still hard coded because we wanted to get our new app update with online highscore out as quick as possible. It has a automatic account creation based on device...
by Thorium
Fri Dec 01, 2017 1:07 am
Forum: Applications - Feedback and Discussion
Topic: Highscore server for mobile game
Replies: 4
Views: 2370

Highscore server for mobile game

Just got the highscore server for our mobile game QBric running and did a quick stress test. It's made using PureBasic with PostgreSQL, FastCGI and JSON libs of PureBasic. On the video you see a stress test application (also made with purebasic) submitting 10,000 highscores with 200 threads. https:/...
by Thorium
Mon Aug 28, 2017 10:04 am
Forum: Off Topic
Topic: The Venus Project
Replies: 19
Views: 8355

Re: The Venus Project

TThis is why ethnic and social minorities are making a huge mistake by listening to pop culture and embracing political correctness.. They are basically saying it's fine if everyone ignores the problem for as long as they need; which is probably at least till they get their great grand kids through...
by Thorium
Mon Aug 28, 2017 9:28 am
Forum: Assembly and C Programming in PureBasic
Topic: HLT HLT HLT HLT after RET
Replies: 10
Views: 6156

Re: HLT HLT HLT HLT after RET

Or the google translator is the greatest rubbish thing to translate from JAP to ENG... I don't think so. We had some discussion prior to this one. He is serious. There are even some theoretical possibilties to some of his claims. But it's mostly esoteric. This discussion was interessting: www.pureb...
by Thorium
Sun Aug 27, 2017 9:39 pm
Forum: Assembly and C Programming in PureBasic
Topic: HLT HLT HLT HLT after RET
Replies: 10
Views: 6156

Re: HLT HLT HLT HLT after RET

oryaaaaa is known for his controversial codes for quality improvement of sound and such.

Either he is a genius and understands something about how the universe works, that i and many just don't.
Or it's just plain nonsense.
by Thorium
Sun Jul 09, 2017 2:25 pm
Forum: Off Topic
Topic: The Venus Project
Replies: 19
Views: 8355

Re: The Venus Project

What do you think of E. Musk ? He's one of the first rich person that is doing something really big to change the world with his money. He's a bit different, as he's risking his business everytime, and seems not interested to have more and more, but to do. Actualy kind of a role model for me. I am ...
by Thorium
Sun Jul 09, 2017 9:05 am
Forum: Off Topic
Topic: The Venus Project
Replies: 19
Views: 8355

Re: The Venus Project

Some of the most crude and greedy people I've ever met worked at the local department stores and restaurants, and I pretty much live all over the world.. It's a lot larger than what the _rich people do it all_ narrative that is laid out at millisecond intervals suggests.. I agree with that. A lot o...
by Thorium
Wed Feb 01, 2017 10:10 am
Forum: Assembly and C Programming in PureBasic
Topic: Debugging assembler code...
Replies: 4
Views: 5387

Re: Debugging assembler code...

x64dbg and Ollydbg are friendly and helping me learn a lot and solve problems, they're not PB IDE-integrated but then i guess nothing else is! i dont really find integration integral though for working on an isolated piece of asm. and its superfast to get straight to where you want to be with !int3...
by Thorium
Sat Oct 01, 2016 9:15 am
Forum: Coding Questions
Topic: MD5 and password store
Replies: 17
Views: 3538

Re: MD5 and password store

MD5 is broken. Everyone should only use SHA-3. Just read up on articals about password hashing. The only reason MD5 is still used a lot is because people are to lazy to update there code. To resolve a plain MD5 you can just put it in google. Many common passwords can just be retrieved like that. Wat...