User Profile

Collapse

Profile Sidebar

Collapse
byteit101
byteit101
Last Activity: Mar 31 '12, 11:55 PM
Joined: Mar 26 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • byteit101
    started a topic python tcp stack

    python tcp stack

    I've been searching around and have had little luck. I'm looking for a python custom TCP stack implementation that I can modify to add predictable SYN & ACK sequence numbers while keeping all the other goodness of TCP the same (out of order packets, missing, duplicates, etc.. fixed).
    Any ideas?

    PS. this only needs Linux support, Mac and win support is optional
    See more | Go to post

  • byteit101
    started a topic scroll to selection

    scroll to selection

    I have a embedded designmode document in an iframe, and I have a find and replace function that selects the next instance of a word. is there a scrollToSelecti on() function?
    See more | Go to post

  • byteit101
    started a topic dont debug certain code in firebug

    dont debug certain code in firebug

    I have two code files, one that I need to debug, and the other that has a refresh loop very often, so it gets in the way when I am debugging using firebug. Is there a way to say: debug file a.js, but not b.js?
    See more | Go to post

  • there IS no id tag, it is created on the fly (pure JS, no HTML), I need it placed just after the script tag
    See more | Go to post

    Leave a comment:


  • Load dom element into place above call during load

    I have a page that has a special object that you can create by putting some JS there.
    Code:
    <body>html code...
    <script type="text/javascript">
    var blueob = new BlueObj("optional_ID");
    </script>
    more html code...
    </body>
    my only problem is how do I put a element at that point (when it is still loading)?
    my only thought so far is to do something like this:...
    See more | Go to post

  • byteit101
    replied to :hover not working
    Is this a browser error, or am I doing it wrong?
    See more | Go to post

    Leave a comment:


  • byteit101
    replied to this == document
    Oops! I have two documents, on inside an iframe in one. is there a way to see if it is a Document? (typeof this returns object, I need to be more specific)
    See more | Go to post

    Leave a comment:


  • byteit101
    started a topic this == document

    this == document

    how do you test if this is a reference to document?
    this==document fails
    See more | Go to post

  • byteit101
    replied to :hover not working
    Well, it does not work for me.
    of note, I don't know what i did, but now It works in firefox if i change the class to a id. I still need it to be a class thoug
    Code:
      <html>
           <head>
           <style>
         #controls
         {
                position: absolute;
                right: 1px;
                top: 2px;
                height: 15px;
                width: 15px;
    ...
    See more | Go to post

    Leave a comment:


  • byteit101
    replied to :hover not working
    Oops, forgot the page:
    Code:
    <html>
        <head>
            <style>
            .controls
            {
                position: absolute;
                right: 1px;
                top: 2px;
                height: 15px;
                width: 15px;
                background-image: url('close.png');
            }
            .controls :hover
            {
                background-image:
    ...
    See more | Go to post

    Leave a comment:


  • byteit101
    started a topic :hover not working

    :hover not working

    I have a CSS file that contains a hover element, and it is not working in ANY browser (FF3.5, IE6, GC1, SF3 O9)
    Code:
    .controls
    {
    position: absolute;
    right: 1px;
    top: 2px;
    height: 15px;
    width: 15px;
    background: url('JSi/closeO.png');
    }
    .controls:hover
    {
    background: url('JSi/close.png');
    }
    See more | Go to post

  • byteit101
    replied to save as progressive JPEG
    in .NET
    line by line is standard JPEG
    blurry->sharp is progressive

    http://ask-leo.com/blurry_images_why..._clear_up.html...
    See more | Go to post

    Leave a comment:


  • byteit101
    replied to save as progressive JPEG
    in .NET
    It saves with no errors, but it is not progressive. (when I use Firefox throttle, it comes in line by line)...
    See more | Go to post

    Leave a comment:


  • byteit101
    replied to Systray icons
    in C
    Ah! Perfect!
    I am planning to write a Native and C++/CLI mixed dll, then referencing it in C#...
    See more | Go to post

    Leave a comment:


  • byteit101
    started a topic save as progressive JPEG
    in .NET

    save as progressive JPEG

    I am working a an Image processing program, and I want to save my jpegs as being progressive (blurry to sharp instead of line by line while it loads). this does not work howerver:
    Code:
    ImageCodecInfo iciJpegCodec = null;
    EncoderParameter epQuality = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, 98L);
    ImageCodecInfo[] iciCodecs = ImageCodecInfo.GetImageEncoders();
    EncoderParameters epParameters = new EncoderParameters(2);
    ...
    See more | Go to post

  • byteit101
    replied to Systray icons
    in C
    You are misunderstandin g what I want to do, I want to get the Icons from the system tray, and create my own system tray. I already know how to make one appear, I want to get them....
    See more | Go to post

    Leave a comment:


  • byteit101
    replied to Systray icons
    in C
    I am making a taskbar/system tray application in C#, and need the GDI Bitmap for each of the system tray icons.
    See more | Go to post

    Leave a comment:


  • byteit101
    started a topic Systray icons
    in C

    Systray icons

    I am working on a program that is an explorer.exe like program, right now, I am working on the system tray icons. I have looked many places, but have not seem to have found an answer. All I need is the GDI Bitmap, for I am going to pass it to a C# application. Is this even possible?
    See more | Go to post

  • byteit101
    started a topic custom settings class

    custom settings class

    I have an application that has a custom settings type SVMProject, that has 5 string values, each with a property, nothing fancy, and I want to save to settings a stack of them. I dont want to have anything fancy for settings saving and reloading, just acess them with Settings.Defaul t.projects.
    here is a shortened form of svmproject:
    Code:
    [Serializable]
    [SettingsSerializeAs(SettingsSerializeAs.Binary)]
    public class SVMProject
    ...
    See more | Go to post

  • byteit101
    replied to include error
    in PHP
    Tried PHP/Ses.php, and it worked, even though that implies it's in a diffrent dir.
    WHY?
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...