Activity Stream
48,167 MEMBERS
6645 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 3 of 10 FirstFirst 12345 ... LastLast
Results 21 to 30 of 96
  1.     
    #21
    Member
    Website's:
    google.co.uk
    I am sure Elio wouldn't mind that


  2.     
    #22
    ლ(ಠ益ಠლ)
    Website's:
    extremecoderz.com
    well you could also "split" the files into the maximum size allowable by the particular imagehost, which wouldnt require a huge amount of extra code (in c# anyway).

    its actually a very good idea, though i suspect that it will get found out and peoples accounts will be closed. TOS will be broken, etc.

  3.   Sponsored Links

  4.     
    #23
    Member
    Website's:
    google.co.uk
    How about if we use ImgCentre?

    Would you allow this Elio?


  5.     
    #24
    Banned
    Doesn't ImgCentre use enough Bandwith? Heard it was using around 3TB/Month.

  6.     
    #25
    Member
    Website's:
    google.co.uk
    Yeah, that is true, but I am sure if the word got around, Elio could make some cash from it, by incorporating his google ad code into the images everytime they are clicked/downloaded, which would mean he could upgrade, because he would be earning a lot of cash

    Remember, the images are legal, so hopefully Google wouldn't go around checking them for illegal content


  7.     
    #26
    Respected Developer
    Quote Originally Posted by jayfella View Post
    well you could also "split" the files into the maximum size allowable by the particular imagehost, which wouldnt require a huge amount of extra code (in c# anyway).

    its actually a very good idea, though i suspect that it will get found out and peoples accounts will be closed. TOS will be broken, etc.
    That is the plan (to split) but it isn't that straight forward as each image needs to to able to describe the whole situation. So each individual image needs to know the total amount of images, which part of that collection that image is, file name, signature (to be sure a image is a image containing data) etc.

    Easily solved with:
    Code: 
    let MaxFileNameSize = 0xff // 255
    let mutable DefaultImgResolution = new Point(1600, 1600)
    let HandShake = [| 0xffuy; 0x04uy; 0x09uy; 0x56uy |] // Unsigned byte array -> 255; 4; 9; 86
    
    [<System.Flags>]
    type AlphaFlags =
        | None = 0b00000000uy // Do nothing
        | EoF  = 0b00000001uy // End of File -> Stop reading
    
    // =============================================
    
    (* Calculate the amount of bytes the can be stored in an image of the specified resolution *)
    let CalcImgBytes x y mult =
        match (x > 0), (y > 0) with
        | true, true -> (x * y) * mult
        | _ -> 0
    
    (* Calculate the amount of images that will be needed to store the data *)
    let CalcNumOfImgsRequired (dataBytes:int) (imgBytes:int) =
        (float dataBytes) / (float imgBytes)
        |> ceil
        |> int
    
    (* Generates the header data that contains the needed info *)
    let CreateHeader (part:byte) (totalParts:byte) (fileVersion:byte) (fileName:string) =
        if (fileName.Length > MaxFileNameSize) then
            let msg = "File name length must be " + string MaxFileNameSize + " or smaller and bigger than 0"
            let fn = "fileName"
            raise(new ArgumentOutOfRangeException(fn, fileName.Length, msg))
        else
            Encoding.UTF8.GetBytes(fileName)
            |> Array.append [| (byte fileName.Length); part; totalParts; fileVersion |]
            |> Array.append HandShake
            |> Array.append HandShake
            |> Array.append HandShake
            |> Seq.ofArray
    CalcNumOfImgsRequired ins't complete yet though. But yeh. About the ToS, if people upload the images without using an account it's VERY hard to detect.

    Oh Btw, if I end up making this a public tool the transcoder will be fully open source since I could really use tips.

  8.     
    #27
    Member
    Website's:
    google.co.uk
    I think this will be great, especially because it is open source

    Is it possible to make it even harder to detect by actually making it a real image, as opposed to all those lines on the other ones lol Or is that just a test image?


  9.     
    #28
    Banned
    Website's:
    hd-eroticpictures.com
    Quote Originally Posted by Danny1986 View Post
    Yeah, that is true, but I am sure if the word got around, Elio could make some cash from it, by incorporating his google ad code into the images everytime they are clicked/downloaded, which would mean he could upgrade, because he would be earning a lot of cash

    Remember, the images are legal, so hopefully Google wouldn't go around checking them for illegal content
    No , if this gets out counter measures will be made and ip's found doing it banned

  10.     
    #29
    ლ(ಠ益ಠლ)
    Website's:
    extremecoderz.com
    ^^ well not really because then it would become easily detectable. You have a kind of #eof signature at the end of the image. The data is usually added after the #eof but of course, is easily detectable.

    (@ danny, not elio).

  11.     
    #30
    Member
    Website's:
    google.co.uk
    Quote Originally Posted by Eli? View Post
    No , if this gets out counter measures will be made and ip's found doing it banned
    No probs mate, now I know not to upload to ImgCentre with these Don't want to be banned lol

    Quote Originally Posted by jayfella View Post
    ^^ well not really because then it would become easily detectable. You have a kind of #eof signature at the end of the image. The data is usually added after the #eof but of course, is easily detectable.

    (@ danny, not elio).
    Ah OK mate, I just thought it would make it harder to detect, but I like the idea anyway lol


Page 3 of 10 FirstFirst 12345 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Random Text & Images In Signatures
    By zac2613 in forum phpBB
    Replies: 0
    Last Post: 10th Jan 2012, 06:36 AM
  2. Replies: 0
    Last Post: 20th Dec 2011, 03:37 AM
  3. Random.org generated massive data
    By BlaZe in forum News & Current Events
    Replies: 3
    Last Post: 8th Jul 2011, 06:50 AM
  4. Random Funny Images!
    By xfernanx in forum General Discussion
    Replies: 1
    Last Post: 28th Oct 2010, 04:31 AM

Tags for this Thread

BE SOCIAL