Imzy
  • Discover communities
  • Log In
  • Sign up
  • Home
  • Discover communities
  • Log In
  • Sign up
  • About
  • Learn More
  • Contact
  • Community Policy
  • FAQ
  • Sitemap
  • Terms
  • Privacy Policy
  • Available on the App Store
  • Available on Google Play
Copyright © 2017 Saurus, Inc. All rights reserved.

Breadpudding

Member since Aug 16, 2016 at 11:07 AM

A grey hat hacker, seeing exactly how to push the boundaries of the equipment I have.

0 Followers

0 Following

  • Comments
  • Posts
  • Communities
  • Hobby ProgrammingHobby ProgrammingCompiled or Interpreted?Oct 05, 2016 at 8:06 AM

    Even with today's hardware we shouldn't be too demanding of it(Examples: System Idle Task or 4 byte booleans).

  • Hobby ProgrammingHobby ProgrammingCompiled or Interpreted?Oct 05, 2016 at 4:55 AM

    In my opinion compiled code runs faster and takes up less space than interpreted code. Plus the user doesn't need the interpreter to run your program.

  • Hobby ProgrammingHobby ProgrammingCompiled or Interpreted?Oct 02, 2016 at 7:46 PM

    Then there is Java(Yes I noted that you said "usually")

  • Hobby ProgrammingHobby ProgrammingCompiled or Interpreted?Sep 29, 2016 at 6:33 AM

    You eventually need to interpret the compiled code.

  • Hobby ProgrammingHobby ProgrammingCompiled or Interpreted?Sep 28, 2016 at 1:39 PM

    Interesting, so it compiles at runtime? I guess that counts as compiling.

  • Hobby ProgrammingHobby ProgrammingCompiled or Interpreted?Sep 28, 2016 at 1:17 PM

    Oh, I didn't think of that. It's like interpretation that also compiles the program as a binary?

  • LinuxLinuxMicrosoft Signature Edition laptops prevent installation of linuxSep 28, 2016 at 7:14 AM

    If any brand of computer restricts linux installs then the solution is simple: Don't buy that laptop.

  • HackingHackingPrograms...Sep 27, 2016 at 7:22 AM

    I hope you know DDoS is illegal right?

  • Imzy Community LeadersImzy Community LeadersBefore we launch, is there anything you feel you need?Sep 20, 2016 at 5:36 PM

    Community chat(Not just leaders) Code highlighting

  • C LanguageC Language[Post deleted by author]Sep 20, 2016 at 6:41 AM

    The development stopped, I should remove this post.

  • C LanguageC LanguageClearing Memory in CSep 08, 2016 at 11:53 AM

    Are you sure you didn't mean memset? Because I just looked up memcpy and the arguments are 2 pointers and the size to be copied. If I'm reading your code correctly I'll be trying to read 0 bytes from secret to 0x00000004

  • C LanguageC Language[Post deleted by author]Sep 06, 2016 at 9:27 AM

    That gives us the challenge of making it unique.

  • C LanguageC Language[Post deleted by author]Sep 06, 2016 at 9:26 AM

    It's more of a challenge to make your own.

  • C LanguageC Language[Post deleted by author]Sep 06, 2016 at 9:19 AM

    Spearmint

  • C LanguageC LanguageClearing Memory in CSep 06, 2016 at 9:03 AM

    Or you can make a loop that clears each byte of memory.

    void cm(void *r, int s) {
      int p = 0;
      while(p != (s + 1)) {
        r[p] = 0;
        p++;
      }
    }
    

    I could be wrong but *secret_p = 0; might just clear the first byte. Use my function and try cm(secret_p, sizeof(int));

  • C LanguageC LanguageContest: Code golfSep 04, 2016 at 11:39 AM

    I'm getting worried that I will be the only entry.

  • C LanguageC LanguageContest: Code golfAug 30, 2016 at 9:47 AM

    I'll start with my entry:

    #include <time.h>
    
    int guess(int n) {
      unsigned int g = 0, l = 4294967295, m = 0, n = 0;
      srand(time(NULL));
      while(g != n) {
        if(m > l) {
          g = (rand() % (m - l)) + l;
        } else {
          g = rand();
        }
        if(g > n) {
          m = g;
        } else if(g < n) {
          l = g;
        } else {
          return n;
        }
        n++;
      }
    }
    

    Might be a bit buggy but that's my solution to the problem.

  • C LanguageC LanguageAlmost 100 membersAug 30, 2016 at 9:29 AM

    We are 1 member away from 100

  • C LanguageC LanguageWhat is your favorite flavor of C?Aug 26, 2016 at 11:31 PM

    "1 votes" this disturbs me.

  • C LanguageC LanguageBaconBotAug 24, 2016 at 1:38 PM

    I submitted a pull request with the changes needed.

  • C LanguageC LanguageBaconBotAug 24, 2016 at 1:03 PM

    First of all you add the Windows executable(.exe) in the releases, second of all rename the .txt file to a .c file.

  • C LanguageC LanguageBaconBotAug 24, 2016 at 9:19 AM

    There is, it's just that all C source code files really should end in .c and not .txt because .txt is a text document while .c is a C source code file.

  • C LanguageC LanguageBaconBotAug 23, 2016 at 6:40 PM

    One problem, the code file ends in .txt and not .c

  • C LanguageC LanguageA brainf*** interpreterAug 23, 2016 at 6:39 PM

    It's not C++ it's C

  • C LanguageC LanguageA brainf*** interpreterAug 22, 2016 at 8:43 AM

    http://www.cplusplus.com/reference/cstdio/fseek/

    3 arguments

  • About
  • Sitemap
  • Terms and Conditions
  • Privacy Policy
  • Copyright © 2017 Saurus, Inc. All rights reserved.