Page 136 of 284 FirstFirst ... 3686126134135136137138146186236 ... LastLast
Results 1,351 to 1,360 of 2840

Thread: Post your CTRL+V's

  1. #1351
    Join Date
    Jul 2009
    Beans
    1

    Smile Re: Post your CTRL+V's

    Crtl + V:

    Administrator
    Was connecting to my modem settings

  2. #1352
    Join Date
    Dec 2007
    Location
    *eating something*
    Beans
    702
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your CTRL+V's

    MMB: alt.os.linux.ubuntu
    |>[HowTo] Bump The BUMP Thread<||>Stats<||>19k<||>23k<||>26k<||>34k<||>37k<||>38k<||>39k<||>40k<|

    Quote Originally Posted by lukjad007
    Backups are usually a good thing unless it's a sewer.

  3. #1353
    Join Date
    Aug 2007
    Location
    New Orleans, LA
    Beans
    515
    Distro
    Ubuntu

    Re: Post your CTRL+V's

    public static void main(String[] yuhuuuu) throws StupidExceptions{
    }
    Laptop: Toshiba L505 S6959
    Processor: Intel Core2Duo T6500 2.1GHz
    RAM: 4GB DDR2
    Graphics: Intel 4500 MHD

  4. #1354
    Join Date
    Dec 2007
    Location
    *eating something*
    Beans
    702
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your CTRL+V's

    ^v: Ring Ring Ring Ring Ring Ring Ring BANANAPHONE!

    MMB: Quick reply to this message
    |>[HowTo] Bump The BUMP Thread<||>Stats<||>19k<||>23k<||>26k<||>34k<||>37k<||>38k<||>39k<||>40k<|

    Quote Originally Posted by lukjad007
    Backups are usually a good thing unless it's a sewer.

  5. #1355
    Join Date
    May 2006
    Beans
    64

    Re: Post your CTRL+V's

    http://lxr.free-electrons.com/source...60/sta_ioctl.c

    rt2860 source that is filling up my /var/log/messages!

  6. #1356
    Join Date
    Jun 2007
    Location
    In my own little world...
    Beans
    320
    Distro
    Lubuntu

    Re: Post your CTRL+V's

    #!/usr/bin/perl

    ################################################## ####################################
    # scan_dns.pl version 0.8 7/14/09
    # Author: Warren Watts (kingbeetle_66(at)yahoo(dot)com

    # This program will analyze the relative speeds of each of the DNS servers
    # detected by dhcpcd (DHCP client daemon) through use of dig (a DNS lookup utility)
    # and display a sorted list of DNS servers from fastest to slowest.
    # This sorted list can then be used to tweak the /etc/resolv.conf file, providing
    # faster DNS lookups while browsing, etc.

    # I included three domains for dig to lookup. They are stored in @domain_list.
    # Feel free to add to the list or change the domain list to any domains you wish.
    # You can also pass edditional DNS servers to be tested to the script at the command line:
    # EXAMPLE: perl scan_dns.pl 192.168.1.234 70.82.32.232
    # Be aware that the more domains in the list, the longer the scan will take!

    # Copyright 2007,2009 Warren B. Watts
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    ################################################## #####################################

    use strict;

    my (@DNS,$parm,$bad_format,$IP,$time,$domain,$dig,%ti me,$key);

    # Read the DNS list from /etc/resolv.conf and store the list in an array
    my $resolv = `cat /etc/resolv.conf`;
    while ($resolv =~ /nameserver (.*)\n/g) {push(@DNS,$1)}

    # Check for additional DNS servers to be tested that might have been entered at the command line
    # and add them to the array of servers to be tested
    if (@ARGV)
    {
    # if the DNS server address has a valid format, and all the octets are within range, add the DNS server
    # to the array of servers to be tested, otherwise display an error
    foreach $parm (@ARGV)
    {
    undef($bad_format);
    if ($parm =~ m/^(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)/ )
    {
    if($1 <= 255 && $2 <= 255 && $3 <= 255 && $4 <= 255) {push(@DNS,$parm)}
    else {$bad_format = 1}
    }
    else {$bad_format = 1}

    if ($bad_format)
    {
    print "\n+---------------------------------- ERROR --------------------------------+\n";
    print("DNS server $parm is not in a valid format and will not be tested.\n");
    print "+---------------------------------- ERROR --------------------------------+\n";
    }
    }
    }

    #List the DNS servers to be tested
    print "\n+-------------------------------------------------------------------------+\n";
    print "The following DNS servers will be tested:\n";
    foreach $IP (@DNS) {print "$IP\t"}
    print "\n";

    # Store list of domains to be looked up by dig in an array
    my @domain_list = ('www.yahoo.com' ,'www.fasthit.net' ,'zz.nullwave.ru');

    # List the domains to be used by dig during the scan
    print "The following domains will be tested in this scan:\n";
    foreach $domain (@domain_list) {print "$domain\t"}
    print "\n";
    print "+-------------------------------------------------------------------------+\n";

    # Count number of domains stored in the array
    my $domain_count = @domain_list;
    # Go through the list of DNS servers and execute dig for each DNS server and each
    # domains in the domain list, extract the time taken and average the times together,
    # then store the DNS and averaged time in a hash.
    foreach $IP (@DNS)
    {
    print "Scanning $IP\n";
    $time = '';
    foreach $domain (@domain_list)
    {
    print "--> $domain\n";
    $dig = `dig \@$IP $domain`;
    if ($dig =~ /Query time: (.*) msec/)
    {
    $time = $time + $1;
    }
    }
    $time{$IP} = int(($time / $domain_count) +0.5);
    }
    print "+-------------------------------------------------------------------------+\n";

    # Display the results sorted by time in ascending order
    foreach my $key (sort hashValueAscendingNum (keys(%time)))
    {
    print "Average fetch time for $key : $time{$key} msec\n";
    }
    print "\n";
    # Subroutine to sort by time rather than by DNS address
    sub hashValueAscendingNum
    {
    $time{$a} <=> $time{$b}
    }
    LOL I was copying a perl script I wrote here about an hour ago.... I had totally forgotten that was in the cut buffer...
    Badges? We ain't got no badges. We don't need no badges. I don't have to show you any stinking badges!
    Adventures In Linux

  7. #1357
    Join Date
    Jun 2009
    Location
    /Home
    Beans
    Hidden!
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your CTRL+V's

    empty
    AMD Phenom 9500 Quad 2.2 GHz Asus M3N78-VM 4GB DDR2 32" HDTV montior
    Multi-boot Win7, Ubuntu 9.10, Kubuntu 9.10

  8. #1358
    Join Date
    May 2007
    Location
    Leicester, England
    Beans
    142
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Post your CTRL+V's

    Freshwater Beach West
    Open Words - Building an open creative writing community.

  9. #1359
    Join Date
    Dec 2007
    Location
    *eating something*
    Beans
    702
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your CTRL+V's

    |>[HowTo] Bump The BUMP Thread<||>Stats<||>19k<||>23k<||>26k<||>34k<||>37k<||>38k<||>39k<||>40k<|

    Quote Originally Posted by lukjad007
    Backups are usually a good thing unless it's a sewer.

  10. #1360
    Join Date
    May 2009
    Location
    /eu/uk/sco/fife/st_a/home
    Beans
    458
    Distro
    Ubuntu 9.10 Karmic Koala

    Question Re: Post your CTRL+V's

    Quote Originally Posted by Arch Linux Homepage
    You've reached the website for Arch Linux, a lightweight and flexible Linux® distribution that tries to Keep It Simple
    Is "Linux" a registered trademark?

Page 136 of 284 FirstFirst ... 3686126134135136137138146186236 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •