Jump to content
Reliance Jio & Reliance Mobile Discussion Forums

StaticElectricity

Moderators
  • Content count

    648
  • Joined

  • Last visited

Posts posted by StaticElectricity


  1. guys, on a serious note, does that kind of speed really exists and if yes, then where? Do they have that much infrastructure to support 600mbps???

    yeah ofcourse, speeds of 1000mbps exist called gigabit connections, as soon as you leave copper medium and get into optic media speeds of 1000's of mbps are possible , though not yet on copper medium.

    They are generally used to link extremely large servers together , internet backbones and such.

    If you 're talking about inida, ha ha ha , forget it ! :rofl_200:

    However , speeds of upto a few gbps will most probably be possible in a few years over copper medium.

    Citation

    =====

    100Gbps Networks are coming


  2. well,

    its a simple XOR with 0x31 , with every 3rd character skewn after the XORing

    dont have much time ... but this is what i came up wid in 30 mins ..

    i suppose the rest will be easy ... try it out !

    heres some of the observations

    58 59 7f 42 <-----> ihNs
    58 59 79 42
               (+06) <--->crosses 16 boundart
    
    47 58 5a 4a 5a <----> vik{k
    47 58 5c 4a 5a
               (+02)
    
    16 5e 42 43 55 <---->'osrd
    16 5e 44 43 55
              (+02)
    
    5f 54 44 11 55 5b 44 5a<---->neu djuk 
    5f 54 42 11 55 5e 44 5b
             (+02)       (+03)   (+01)

    and heres a small snipped i wrote to decode the thingy...

    #include <stdio.h>
    #include <conio.h>
    #include <string.h>
    
    void main(){
    clrscr();
    char str[]="neu djuk";//"'osrd"/*"vik{k"*//*"vur";*//*"ihNs"*/;
    for(int x=0;x<=255;x++){
    printf("%02x %04d -> ",x,x);
    	for(int j=0;j<strlen(str);j++){
    		char p=x^str[j];
    		printf("%02x",p);
    		}
    if(x==0x31){printf("*special* ");getch();}
    printf("\n");
    }
    getch();
    }

    Hope you dont loose your job ! :Decepcionado:


  3. ahhh chill fellars ,

    actually i've been out of circulation with a lot of stuff lately.... and i use BT for music and my linux dvds ... and thats about it

    TPB meets most of my needs so never thot of registering

    moreover im a little new to the private tracker scene !


  4. Today, while playing with my 6275, I tried to send a sms to my email account, i got the following SMS returned

    As per govt. policy, this no. has to begin with 5, any 4 digitr request will not be charged. Kindly send your request after adding 5 to the no.

    from:

    2222

    I think I need to change some setting in my handset. Can any one guide ???

    Could you elaborate on what procedure you followed or to which number did u send the sms to ?


  5. Thanks for the reply, coolrajiv ,

    but i know what an invite is.

    What i wanted to know was that why would people like to register for demonoid or dctorrents or whatever ?

    how is it beneficial ?

    I regularly use bittorrent and download torrents from TPB and i havent registered ... is there something im loosing out ?


  6. I have a lot MP3 CDs with me but I am unable to track that which CD Contains which song?

    Is there any software to extract all song names in a particular CD/ DVD., help me to maintain my Library.

    you can do it without any software,

    simple command line trickery

    C:\> CD G: (your cd drive)

    G:\> DIR /S /B *.mp3 > C:\MY_SONG_INDEX\CD1.txt

    and you re done !

    whenever you want to locate the song ,

    just navigate to C:\MY_SONG_INDEX

    and use windows search function !

×