Show Off

Discussion in 'Programming General' started by Deacon Frost, Sep 17, 2008.

Show Off
  1. Unread #1 - Sep 17, 2008 at 2:51 AM
  2. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    Show Off

    Anything your proud of, show it off. Sites, programs, etc. Keep er safe and such kids :p...

    I'm particularly proud of an engine I developed (with some help of course) in JavaScript -


    It's not plugged into my PHP yet, but it runs well. Working out kinks to develop a RuneScape style Textbased Game :p.


    Code:
    
    
    <script type="text/javascript">
    
    var d = document;
    function set_view(ID, view) {
    	d.getElementById(ID).style.visibility = view;
    }
    
    
    
    
    function test(){
    
    
    d.getElementById("output").innerHTML = "";
    
       set_view("Start", "hidden");
    
    
    function output(str) {
      var out = d.getElementById("output");
      out.appendChild(d.createTextNode(str));
      out.appendChild(d.createElement("br"));
    }
    
    
    function genRand(chance) {
      var rand = Math.floor( chance >= Math.random() * 100
        ? Math.random() + 100
        : Math.random() * 101
        );
      var str = "Your number is " + rand + ". You had a " + (100 - chance) + "% chance of losing.";
    
      if(rand >= 100){
    
        output("Success: You successfully retrieve the log!");
        set_view("End", "visible");
    }
      else {
        output("Failure: You failed to retrieve the log.");
        setTimeout(function() {
          genRand(chance + 2);
        }, 1);
      }
    }
    
    
      genRand(0.1);
    }
    
    
    
    </script>
    
    <script type="text/javascript">
    
    
    
    function startover(){
    
    
            set_view("End", "hidden");
            set_view("Start", "visible");
     	d.getElementById("output").innerHTML = "The item was added to your inventory!";
            manualPB2.setPercentage('-10');
            manualPB.setPercentage('+10');
    }
    
    
    </script>
    


    This is not a place to advertise, it is a place to show off your work, and comment on the work of others. If someone asks you to explain the code (if you just posted code), please do so! If you are going to post a site, do it ONLY because you want to show it off, not for traffic reasons.
     
  3. Unread #2 - Sep 17, 2008 at 3:07 AM
  4. Darthatron
    Joined:
    May 22, 2006
    Posts:
    1,612
    Referrals:
    3
    Sythe Gold:
    0

    Darthatron Massive Troll
    Retired Sectional Moderator Visual Basic Programmers

    Show Off

    Nice game engine. ^_^ I think you should add something else besides cutting trees, though. :D

    ---

    Well, not too long ago I started making a scripting program in VB6. Still not done... I got lazy. Pretty much has everything is needs, except loops.

    LINKS PLZ!?
     
  5. Unread #3 - Sep 17, 2008 at 3:10 AM
  6. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    Show Off

    Yeah, when I plug in PHP, it'll all be client-server automated, which is a nice combination. Allows for real time strategy on a text based game, only problem is JS exploits.


    And what do you mean a scripting program?
     
  7. Unread #4 - Sep 17, 2008 at 3:19 AM
  8. Darthatron
    Joined:
    May 22, 2006
    Posts:
    1,612
    Referrals:
    3
    Sythe Gold:
    0

    Darthatron Massive Troll
    Retired Sectional Moderator Visual Basic Programmers

    Show Off

    Well it's pretty much a program that lets you type in stuff, then it does what you tell it to. xD Here is an example:

    Code:
    Dim Xpos 100
    Dim Ypos 200
    
    MoveMouse Xpos Ypos
    Would move the mouse to 100, 200. Very simple, but easy to use. :)
     
  9. Unread #5 - Sep 17, 2008 at 5:15 AM
  10. Swan
    Joined:
    Jan 23, 2007
    Posts:
    4,957
    Referrals:
    0
    Sythe Gold:
    0
    Sythe's 10th Anniversary Member of the Month Winner

    Swan When They Cry...
    Retired Global Moderator

    Show Off

    I can't say I'm really proud of anything I've made, to be honest. I'm a modest person, and I've been brought up to be polite (even though I am a rather selfish person by some standards, i.e. when it comes to money and so on).
     
  11. Unread #6 - Sep 17, 2008 at 3:36 PM
  12. BigBwoi2001
    Joined:
    Jul 4, 2008
    Posts:
    54
    Referrals:
    0
    Sythe Gold:
    0

    BigBwoi2001 Member

    Show Off

    Pretty much my latest work. Cracks on a website(not rs).

    [​IMG]
     
  13. Unread #7 - Sep 18, 2008 at 8:40 AM
  14. Blupig
    Joined:
    Nov 23, 2006
    Posts:
    7,145
    Referrals:
    16
    Sythe Gold:
    1,609
    Discord Unique ID:
    178533992981594112
    Valentine's Singing Competition Winner Member of the Month Winner MushyMuncher Gohan has AIDS Extreme Homosex World War 3 I'm LAAAAAAAME
    Off Topic Participant

    Blupig BEEF TOILET
    $5 USD Donor

    Show Off

    What language did you make that in?

    Personally I only know VB6, and haven't honestly made anything that really stands out and makes me proud besides my text RPG battle engine (source is on Cruels).
     
  15. Unread #8 - Sep 18, 2008 at 7:55 PM
  16. SuF
    Joined:
    Jan 21, 2007
    Posts:
    14,212
    Referrals:
    28
    Sythe Gold:
    1,234
    Discord Unique ID:
    203283096668340224
    <3 n4n0 Two Factor Authentication User Community Participant Spam Forum Participant Sythe's 10th Anniversary

    SuF Legend
    Pirate Retired Global Moderator

    Show Off

    That cracking program looks pretty cool.
     
  17. Unread #9 - Sep 19, 2008 at 2:15 AM
  18. Swan
    Joined:
    Jan 23, 2007
    Posts:
    4,957
    Referrals:
    0
    Sythe Gold:
    0
    Sythe's 10th Anniversary Member of the Month Winner

    Swan When They Cry...
    Retired Global Moderator

    Show Off

    http://www.openwall.com/john/ ^_^

    It looks alright, but by what looks like an authentication prompt at the start, are you intending to sell it? >_>
     
  19. Unread #10 - Sep 19, 2008 at 1:00 PM
  20. Supah Fly
    Joined:
    Aug 22, 2007
    Posts:
    202
    Referrals:
    1
    Sythe Gold:
    0

    Supah Fly Active Member
    Banned

    Show Off

    Pretty messy code and crap layout (I suck at graphics) but..

    http://www.transferget.com or http://www.ng2b.com

    Doesn't matter which one.

    Code is written in PHP. It checks the MIME type, File extension, etc.

    Search engine. Very fast. At first, I didn't use any databases, but then I decided I wanted to add tags and search and things like that. So I added this.

    If you actually had the script I made, you would be able to have totally customizable templates, edit the allowed file and image extensions, allowed mime types, etc.

    I should add some extra things like a proper way of checking file size, instead of the way I do it now, which I'll do like tommorow.

    I'm also making a Video section, a Flash upload section, etc. I already worked out all the htaccess crap.

    I guess I'm proud of it. One of the biggest things I've done in the time frame of 4 days.
     
  21. Unread #11 - Sep 19, 2008 at 3:02 PM
  22. Deacon Frost
    Joined:
    Jan 30, 2007
    Posts:
    2,905
    Referrals:
    3
    Sythe Gold:
    57

    Deacon Frost Grand Master
    Banned

    Show Off

    That's actually pretty nice. I like the small table effect, it reminds me of a flash site because of its size and style.

    It's pretty effective at least, and not as bad you think in design standards :p.

    Good luck with what you're gonna add, that's a nice site there.
     
  23. Unread #12 - Sep 19, 2008 at 4:18 PM
  24. BigBwoi2001
    Joined:
    Jul 4, 2008
    Posts:
    54
    Referrals:
    0
    Sythe Gold:
    0

    BigBwoi2001 Member

    Show Off

    C#


    Thanks.

    I was gonna sell it, but RSU shutdown once again and they're no communities that support RS cracking.
     
  25. Unread #13 - Sep 22, 2008 at 12:04 AM
  26. xxthebeastxx
    Joined:
    May 17, 2008
    Posts:
    1,680
    Referrals:
    1
    Sythe Gold:
    0

    xxthebeastxx Guru
    Banned

    Show Off

    Ehh, I know some Java, but never made anything worth showing, just some crap. I'm interested in learning VB.
     
  27. Unread #14 - Sep 26, 2008 at 9:00 AM
  28. hampe-92
    Joined:
    Jul 10, 2008
    Posts:
    328
    Referrals:
    0
    Sythe Gold:
    0

    hampe-92 Forum Addict

    Show Off

    That looks prety cool... althought I don't realy understand what it does and what you use it for xD can u explain? :p
     
  29. Unread #15 - Sep 27, 2008 at 1:22 AM
  30. Supah Fly
    Joined:
    Aug 22, 2007
    Posts:
    202
    Referrals:
    1
    Sythe Gold:
    0

    Supah Fly Active Member
    Banned

    Show Off

    Its a password cracker, made for getting into people's (the ones with bad, easy to guess passwords) accounts.
     
  31. Unread #16 - Sep 27, 2008 at 3:19 PM
  32. hampe-92
    Joined:
    Jul 10, 2008
    Posts:
    328
    Referrals:
    0
    Sythe Gold:
    0

    hampe-92 Forum Addict

    Show Off

    doh -.- I'm not that stupid... I did understand that it's a password cracker... but passwords for what?
     
  33. Unread #17 - Oct 26, 2008 at 10:23 AM
  34. FartKnocker
    Joined:
    Sep 3, 2007
    Posts:
    285
    Referrals:
    0
    Sythe Gold:
    5

    FartKnocker Forum Addict

    Show Off

    Anything.
     
  35. Unread #18 - Oct 28, 2008 at 4:40 PM
  36. Supah Fly
    Joined:
    Aug 22, 2007
    Posts:
    202
    Referrals:
    1
    Sythe Gold:
    0

    Supah Fly Active Member
    Banned

    Show Off

    It cracks passwords for runescape

    that bigbwoi or w/e is supposedly buckley and while running around google i found a topic on some visual basic .NET forum asking for help with his proxy checker, when i looked into his code it checked the proxies against runescape.com?

    lies i tell you.

    or more specifically... http://www.vbdotnetforums.com/remot...rformed-after-request-has-been-submitted.html

    i am a master detective!

    in other news

    i made a passcracker that works very well (IMO) and gets a few sales my way (enough to buy Dazzle Pro and xbox 360 s-video cables ;D) and i am showing off that because idk :/
     
  37. Unread #19 - Oct 31, 2008 at 6:13 PM
  38. grenada25
    Joined:
    Feb 2, 2007
    Posts:
    90
    Referrals:
    0
    Sythe Gold:
    0

    grenada25 Member

    Show Off

    nice game engine
     
< selling steam account for ijji account level 60 to 80 | Help with Fonts >

Users viewing this thread
1 guest


 
 
Adblock breaks this site