Burgershot
  • Home
  • Members
  • Team
  • Help
  • Search
  • Register
  • Login
  • Home
  • Members
  • Help
  • Search
Burgershot Search Results

Pages (16): 1 2 3 4 5 … 16 Next »
 
Search Results
Post Author [desc] Forum Replies Views Posted
  Thread: Coding Pawn: From Useless to Y_Less.
Post: RE: Coding Pawn: From Useless to Y_Less.

Sure. Make a pull request.
Y_Less Tutorials 18 18,801 2019-04-12, 04:10 PM
  Thread: My Statement
Post: My Statement

Time for my side I believe. You are all partially right, but not in the ways you may think. I am not trying to split the community, I am not trying to start a rival to SA:MP, and one important side ...
Y_Less General Discussions 119 106,097 2019-04-13, 04:01 PM
  Thread: My Statement
Post: RE: My Statement

adri1 Wrote: (2019-04-13, 04:23 PM) -- I think it's great that you create a community different from SA-MP. But I think that has not been the problem. You were given the rank of beta tester recent...
Y_Less General Discussions 119 106,097 2019-04-13, 05:18 PM
  Thread: How to help
Post: How to help

Right now there is a lot happening - I'm being absolutely flooded with messages, and I appreciate all of them! Thank you for all the support. It is taking me a while to sort through them though, so ...
Y_Less General Discussions 52 95,262 2019-04-14, 12:54 AM
  Thread: Send your cat pics
Post: RE: Send your cat pics

This is Michelin, named after the tyre because he got run over before we got him. Just turned 11! And I've no idea why the forum flipped the image.
Y_Less Chat 17 14,845 2019-04-15, 12:56 AM
  Thread: Make avatars square and larger
Post: RE: Make avatars square and larger

My avatar happens to be round, but I've had square ones before so I'd say go for it.
Y_Less Chat 9 8,667 2019-04-15, 11:00 AM
  Thread: [Suggestion] "Last X posts"
Post: RE: [Suggestion] "Last X posts"

I think they mean a thing that shows the last posts made by time, not by user. So you click that and see that someone posted in the cats topic 7 seconds ago, before that there was a post in help 12 s...
Y_Less Chat 7 6,768 2019-04-15, 02:49 PM
  Thread: Open Sourcing the Burgershot and open.mp Web Services
Post: RE: Open Sourcing the Burgershot and open.mp Web S...

Wolf Wrote: (2019-04-14, 06:42 PM) -- I'm a bit confused, what can you do with that linked site in a nutshell? -- Modify this site.
Y_Less Development Updates 17 22,157 2019-04-15, 08:57 PM
  Thread: TFA_SAMP - 1st two-factor authentication method for SA-MP.
Post: RE: TFA_SAMP - 1st two-factor authentication metho...

About time there was one of these. Small note, the normal TLA for this is "2FA", not "TFA": https://duckduckgo.com/html?q=TFA https://duckduckgo.com/html?q=2FA
Y_Less Libraries 8 8,637 2019-04-15, 10:07 PM
  Thread: Skipping extra spaces
Post: RE: Skipping extra spaces

Another way you can do this is to loop through once, and shift all letters backwards. Every time you see a space you increase this shift offset: PHP Code: -- DeSpace(string[]) { new // Re...
Y_Less Pawn Scripting 23 18,627 2019-04-15, 10:39 PM
  Thread: samp-crypto - bcrypt, scrypt & argon2 hashing
Post: RE: samp-crypto - bcrypt, scrypt & argon2 hashing

The old BCrypt plugin used a callback architecture. You requested a hash, and once it was done the plugin informed you. This was because cryptographic hashes are meant to be slow. Their security li...
Y_Less Plugins 7 8,822 2019-04-15, 11:12 PM
  Thread: Coding Pawn: From Useless to Y_Less.
Post: RE: Coding Pawn: From Useless to Y_Less.

Freaksken Wrote: (2019-04-12, 06:49 PM) -- The reason I got into PAWN/SAMP was due to a thread on the Dutch GTAforums which translates to [Tutorial] Create Your Own Server. If you really want new peo...
Y_Less Tutorials 18 18,801 2019-04-15, 11:16 PM
  Thread: Post Your Setup!
Post: RE: Post Your Setup!

Legitimately my travel setup. That's a Bluetooth keyboard and an old tablet on a plate stand. Very small and light for travel.
Y_Less Chat 62 54,743 2019-04-15, 11:57 PM
  Thread: Skipping extra spaces
Post: RE: Skipping extra spaces

Well shift the sentence backwards and just ignore the spaces. So they don't get shifted, and when encountered no shifting or destination incrementing happens. Thus the next character to be shifted g...
Y_Less Pawn Scripting 23 18,627 2019-04-16, 12:33 AM
  Thread: About Open-MP
Post: RE: [suggestion] about Open-MP

While there are big advantages to this, there is one huge advantage to the current method - everything resets. If you close the game and re-open it, there is absolutely no chance of anything being le...
Y_Less Questions and Suggestions 10 9,637 2019-04-16, 10:43 AM
  Thread: Skipping extra spaces
Post: RE: Skipping extra spaces

This is what I meant by it depending on how many spaces there are. My code always runs in O(n) - it doesn't matter how long the string is, nor how many duplicate spaces there are. "strdel" works by ...
Y_Less Pawn Scripting 23 18,627 2019-04-16, 11:21 AM
  Thread: Post your code snippets here
Post: RE: Post your code snippets here

DTV Wrote: (2019-04-14, 11:04 PM) -- I remember seeing a thread like this on SA-MP forums so it'd be nice to share with each other little tricks to making our lives easier with pawn, I'll start: A...
Y_Less Pawn Scripting 18 16,441 2019-04-16, 11:23 AM
  Thread: Skipping extra spaces
Post: RE: Skipping extra spaces

I just realised something else. All the code scans the text one character at a time. You could try using the `strfind` native to look for two spaces: PHP Code: -- strfind(string, " "); --
Y_Less Pawn Scripting 23 18,627 2019-04-16, 02:03 PM
  Thread: Skipping extra spaces
Post: RE: Skipping extra spaces

Oh, we're playing code golf now are we :) PHP Code: -- RemoveDoubleSpace(string[], i = 0) { while ((i = strfind(string, " ", _, i)) != -1) strdel(string, i, i + 1); } --
Y_Less Pawn Scripting 23 18,627 2019-04-16, 03:08 PM
  Thread: Coding Pawn: From Useless to Y_Less.
Post: Coding Pawn: From Useless to Y_Less.

I was comissioned to write a detailed curriculum for a complete beginner to learn pawn with. This is a combination of links to existing tutorials and wholly new information. It is not a tutorial in it...
Y_Less Tutorials 18 18,801 2019-04-12, 12:45 PM
Pages (16): 1 2 3 4 5 … 16 Next »
 

© Burgershot - Powered by our Community and MyBB Original Theme by Emerald