Search:

Type: Posts; User: BlindSniper

Page 1 of 13 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    3
    Views
    1,211

    Re: My absolute favorite captcha to date.

    And even if that gets fixed...
    This afternoon I wrote a piece of code, It grabs a screenshot of the website, finds the captcha image, turns it into a binary image, and I already have a pretty good...
  2. Re: [Serious]Why are you not a believer of the existence of God

    No, I doubt the existence of a god because what I can't reconcile what I see in the natural world with the existance of an abrahamic God. The god(or equivalent entity) that I allow to exist would...
  3. Re: [Serious]Why are you not a believer of the existence of God

    98135
    Well...


    In a serious tone..
    My official title I like to give myself is an agnostic atheist. With that said, I do not deny the possibility for a god existing. BUT I do not believe that...
  4. Ever wanted some theory behind regular expressions ?

    Hi all,
    Being a self taught programmer I taught myself regular expressions just by analyzing examples I found on the internet. Recently though I was watching a Coursera course that Stanford did...
  5. Re: [Serious]Why are you not a believer of the existence of God

    Sniping blind is not an act of faith, it is an act of skill.
  6. Re: [Serious]Why are you not a believer of the existence of God

    I am actually an atheist because of something that I saw on this site. Last time I posted on this thread I wasn't sure what I was. Good job VBF.

    As to answer the original question, I am an atheist...
  7. Replies
    0
    Views
    3,437

    Convert to base n functions.

    Hi all,
    It's been a while since I last posted anything in the code bank, but today I made to useful functions that I thought I would share with you guys.
    The functions convert base 10 integers to...
  8. Re: Pen Input laptops/Ultrabooks/Netbooks/Whatever they call mobile pc's these days

    Thanks both of you for your replies, I like that list for pen enabled ultrabooks, I think I might take one of those since I am assured that they will be able to handle a stylus. Weight and size isn't...
  9. Pen Input laptops/Ultrabooks/Netbooks/Whatever they call mobile pc's these days

    Hi all,
    Next year I will be starting chemical engineering at my local university, and seeing as they allow you much more freedom than the regular schools, I've decided to start looking out for a...
  10. Replies
    48
    Views
    4,457

    Re: How long is your password?

    94301
  11. Replies
    41
    Views
    3,485

    Re: And now it IS over

    I'm glad Obama won, because, well he's not Romney. (just kidding I like Obama). Good job Americans, I think you chose the right guy.
  12. Replies
    4
    Views
    6,214

    Re: Is IP Addres Vaild

    System.Net.IPAddress.TryParse() ?
    But it's still good to know how to do these things by hand. I rewrote the sin function once just to understand how it worked.
  13. Replies
    3
    Views
    5,228

    Re: Virtual File System

    UPDATE:
    Added AES encryption.
    I will keep the projects seperate since not everyone wants encryption.
    So this posts project is the one with encryption.
    First post is without encryption
  14. Replies
    3
    Views
    5,228

    Re: Virtual File System

    UPDATE

    Added 2 icons. (I do not own them I found them on google images)
    Added a dialog so that you can choose the root folder name
    Added a feature that if you doubleclick on a file it writes...
  15. Replies
    3
    Views
    5,228

    Virtual File System

    Hi all,

    In this thread I promised to upload the gui if I ever made it. Here it is.

    This is basically a program for managing a virtual file system. (It's basically a big file that has a...
  16. Replies
    6
    Views
    1,513

    VS 2010 Re: Virtual File system

    I'm happy to say that the list view is the way to go. I'm 80% complete with the gui and I'll post it in the codebank if/when I finish it.
  17. Replies
    6
    Views
    1,513

    VS 2010 Re: Virtual File system

    UPDATE:
    I made a small program to test out how it works. It works wonderfully :D.
    Now I need help with making a better gui. Currently my program can only add files to the root folder and there is...
  18. Replies
    6
    Views
    1,513

    VS 2010 Re: Virtual File system

    Thank you for that code, It's what I had in mind.
    I also realized that If I made changes then the whole file system must be re written to the hard drive. This probably won't be a problem with small...
  19. Replies
    6
    Views
    1,513

    VS 2010 Virtual File system

    Hi all,

    I want to create a virtual file system. What I want to do is add files and then write them to a single file, and then I want to be able to extract them again. I guess you could see this as...
  20. Replies
    6
    Views
    2,595

    Re: Calculate the speed of light.

    I don't think there is a mathematical way of deriving the speed of light.(You could rearrange e=mc^2 but i'm not sure where you would get your values from then)
    I think scientists simply used...
  21. Replies
    5
    Views
    1,198

    Re: Density of a mamal.

    triple post
  22. Replies
    5
    Views
    1,198

    Re: Density of a mamal.

    wow, Triple post.
  23. Replies
    5
    Views
    1,198

    Re: Density of a mamal.

    hmmm, Didn't think of that.
    I said 1.6 because I red somewhere that the density of flesh is 1.4 g/cm^3, so If you add bone it would be about 1.5-1.6, but now that you mentioned lungs it made me...
  24. Replies
    5
    Views
    1,198

    Density of a mamal.

    Hi All,
    I was curious about the average density of mammals, at a guess I would put it at about 1.6 g/cm^3, but I have no idea what the actual number would be. Does anyone have a more accurate...
  25. Replies
    1
    Views
    1,092

    Excel Copy references

    Hi all,
    I've created a spreadsheet for my sister in excel and it uses the solver addin to solve some linear programming and a calander control to pick a date. It works fine on my pc, but when I copy...
  26. Replies
    79
    Views
    7,675

    Poll: Re: 2012 U.S Presidential Race

    I think that is exactly what people do when they vote. I did a Google search for the differences between the two, but all the pages I found where biased to one or the other side, but I got a...
  27. Replies
    4
    Views
    824

    VS 2010 Re: Spliting a string

    If that is the only exception, then I would simply search my splitted string for clan and arena and merge the two, however if there are a lot more exceptions I would create a small tokenizer and...
  28. VS 2010 Re: Reusable socket server library or built into code ?

    What I mean with a big network library is a dll that I can reference in any project that is a tcp server. What I mean by that is it can listen on multiple ports and can have many connections to it....
  29. VS 2010 Re: Reusable socket server library or built into code ?

    Yes, I was wondering whether I should generalize my networking code into a dll so that all the applications I make can use it, but generalizing it will intern make the code of my applications more...
  30. VS 2010 Reusable socket server library or built into code ?

    Hi all,
    I've wanted to make a small IRC server for ages now, but each time I attempt to code it I get stuck on the networking part. I always want to build a massive socket server library that is...
  31. Replies
    9
    Views
    1,952

    Re: iPhone/iPad Development

    Business take the company package but that's also 99$/year the only free option is https://developer.apple.com/programs/ios/university/ you might as well try that out since you don't have anything to...
  32. Replies
    9
    Views
    1,952

    Re: iPhone/iPad Development

    I've done a bit of research about this and with the info I have:
    #1 Yes
    #2 Knowing apple probably not
    #3 I'm sure if you somehow 'obtained' mac os you could make a partition on your drive and...
  33. Replies
    2
    Views
    952

    Re: IRC Client /me

    The easiest way I know of would be just to attach a packet filter to your IRC client and do a /ME and a /ACTION and see what pop's up. That is how I taught myself quite a lot of the IRC commands....
  34. Re: Problem with my wi-fii connection with WM 6.5 installed on Motorola barcode scann

    And what on earth does this have to do with Visual Basic programming ?,there is a form here for that. General PC. I'll ask someone to move it, so don't repost it there.
  35. Replies
    4
    Views
    1,264

    Re: Perfect circle.

    Yes, I'm working on a Cartesian plane and by mean I ment median. I thought mean was the correct translation. I'm going to be working on this again later in the day and I will tell you if I need more...
  36. Replies
    4
    Views
    1,264

    Perfect circle.

    Hi all,
    I'm writing some code and I need to determine if an array of points is in the shape of a perfect circle( not only the outline all points inside) and this code needs to be rather quick. One...
  37. Replies
    3,274
    Views
    523,488

    Re: The Golden Chair

    The righteous hagiolatry of ovine is decrepitating my brain!
  38. Replies
    3,274
    Views
    523,488

    Re: The Golden Chair

    ****
  39. Replies
    3
    Views
    665

    Re: Coders Block

    You either let it die peacefully or you can release the source code in hope that someone else might find it useful one day. Unfortunately My attention span isn't much longer than the time it takes me...
  40. Thread: vb v/s C#

    by BlindSniper
    Replies
    36
    Views
    2,492

    Re: vb v/s C#

    I agree with shaggy, when you need to write fast unmanaged code do it in Delphi or C++. In regard with vb vs C#.
    C# can't Handle xml literals if my memory serves.
    Also with the new Roslyn CTP you...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width