scheinast.eu Report : Visit Site


  • Ranking Alexa Global: # 9,338,603

    Server:Apache...
    X-Powered-By:PHP/5.6.33-0+deb8u1

    The main IP address: 80.108.229.253,Your server Austria,Vienna ISP:UPC Telekabel  TLD:eu CountryCode:AT

    The description :this is my blog where i write about coding and technology.you could find here much about programming and developing with perl under linux....

    This report updates in 11-Jun-2018

Technical data of the scheinast.eu


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host scheinast.eu. Currently, hosted in Austria and its service provider is UPC Telekabel .

Latitude: 48.208488464355
Longitude: 16.372079849243
Country: Austria (AT)
City: Vienna
Region: Wien
ISP: UPC Telekabel

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache containing the details of what the browser wants and will accept back from the web server.

Content-Length:26485
Content-Security-Policy:script-src 'unsafe-inline' 'unsafe-eval' 'self' *.google.com secure.statcounter.com
X-Powered-By:PHP/5.6.33-0+deb8u1
Strict-Transport-Security:max-age=63072000; includeSubdomains;
Vary:Cookie,Accept-Encoding
Keep-Alive:timeout=5, max=200
Server:Apache
Connection:Keep-Alive
Link:; rel="https://api.w.org/"
Date:Mon, 11 Jun 2018 07:04:40 GMT
X-Frame-Options:SAMEORIGIN
Content-Type:text/html; charset=UTF-8
Content-Encoding:gzip

DNS

soa:ns1.world4you.at. hostmaster.world4you.com. 2018011505 10800 3600 604800 3600
txt:"v=spf1 mx include:spf.w4ymail.at -all"
ns:ns2.world4you.at.
ns1.world4you.at.
ipv4:IP:80.109.7.41
ASN:6830
OWNER:LGI-UPC formerly known as UPC Broadband Holding B.V., AT
Country:AT
mx:MX preference = 10, mail exchanger = mail.scheinast.eu.

HtmlToText

skip to content paul scheinast feel free to copy, modify and share what you like. menu and widgets search for: categories c/c++ (2) c# (2) fortran (3) gnu/linux bash (24) html,css,js (25) java (4) news (5) perl (79) php (3) projects (5) regex (4) tips and tricks (31) windows (1) top pages perl write fast code in perl perl tricks default defined variables regular expression perl graph perl caller debug function perl data dumper gnu/linux backtrack hdparm mysql cache tuning benchmark your system cpu load core themp seo pages image uploader impressum partners archive november 2016 february 2016 november 2015 june 2015 may 2015 april 2015 march 2015 february 2015 january 2015 december 2014 recent posts perl regex named capture variables perl find all pow 2 numbers perl print string difference perl check if file handler is open perl print __data__ multiple times perl regex named capture variables simple example to extract, protocol, server and domain from a given url: perl my $test = "http:www.test.com"; $test =~ /^(?<protocol>.+)\:(?<server>.+)\.(?<domain>.+)$/; print "protocol : ".$+{protocol}."\n"; print "server : ".$+{server}."\n"; print "domain : ".$+{domain}."\n"; 1 2 3 4 5 6 7 my $test = "http:www.test.com" ; $test = ~ / ^ ( ? < protocol > . + ) \ : ( ? < server > . + ) \ . ( ? < domain > . + ) $ / ; print "protocol : " . $ + { protocol } . "\n" ; print "server : " . $ + { server } . "\n" ; print "domain : " . $ + { domain } . "\n" ; our result: sh-4.3$ perl main.pl protocol : http server : www.test domain : com 1 2 3 4 sh-4.3$ perl main.pl protocol : http server : www.test domain : com posted on november 18, 2016 november 18, 2016 categories perl , regex tags perl , regex leave a comment on perl regex named capture variables perl find all pow 2 numbers this little script finds all pow 2 numbers in perl : perl use strict; my $number = 0; for(1..32){ ++$number; print "$number - ".ispow2($number)."\n"; } sub ispow2 { return(0) if($_[0] <= 0); return(1) if($_[0] == 1); for(1..$_[0]){ return(1) if($_[0] == 2**$_) } return(0); } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 use strict ; my $number = 0 ; for ( 1 . . 32 ) { ++ $number ; print "$number - " . ispow2 ( $number ) . "\n" ; } sub ispow2 { return ( 0 ) if ( $_ [ 0 ] <= 0 ) ; return ( 1 ) if ( $_ [ 0 ] == 1 ) ; for ( 1 . . $_ [ 0 ] ) { return ( 1 ) if ( $_ [ 0 ] == 2 * * $_ ) } return ( 0 ) ; } our result: 1 - 1 2 - 1 3 - 0 4 - 1 5 - 0 6 - 0 7 - 0 8 - 1 9 - 0 10 - 0 11 - 0 12 - 0 13 - 0 14 - 0 15 - 0 16 - 1 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 - 1 2 - 1 3 - 0 4 - 1 5 - 0 6 - 0 7 - 0 8 - 1 9 - 0 10 - 0 11 - 0 12 - 0 13 - 0 14 - 0 15 - 0 16 - 1 posted on february 12, 2016 march 15, 2016 categories perl tags perl leave a comment on perl find all pow 2 numbers perl print string difference this function prints the difference between two strings with perl : perl sub printstringdiff{ my ($s1, $s2) = @_; my @s1 = split(//, $s1); my @s2 = split(//, $s2); while (@s1) { if (defined $s1[0] and defined $s2[0]) { if($s1[0] eq $s2[0]){ print shift @s1; }else{ print color("red"),shift @s1, color("reset"); } }elsif(defined $s1[0]){ print color("red"),shift @s1, color("reset"); } shift @s2; } print "\n"; @s1 = split(//, $s1); @s2 = split(//, $s2); while (@s2) { if (defined $s2[0] and defined $s1[0]) { if($s2[0] eq $s1[0]){ print shift @s2; }else{ print color("red"),shift @s2, color("reset"); } }elsif(defined $s2[0]){ print color("red"),shift @s2, color("reset"); } shift @s1; } print "\n"; } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 sub printstringdiff { my ( $s1 , $s2 ) = @ _ ; my @ s1 = split ( //, $s1); my @ s2 = split ( //, $s2); while ( @ s1 ) { if ( defined $s1 [ 0 ] and defined $s2 [ 0 ] ) { if ( $s1 [ 0 ] eq $s2 [ 0 ] ) { print shift @ s1 ; } else { print color ( "red" ) , shift @ s1 , color ( "reset" ) ; } } elsif ( defined $s1 [ 0 ] ) { print color ( "red" ) , shift @ s1 , color ( "reset" ) ; } shift @ s2 ; } print "\n" ; @ s1 = split ( //, $s1); @ s2 = split ( //, $s2); while ( @ s2 ) { if ( defined $s2 [ 0 ] and defined $s1 [ 0 ] ) { if ( $s2 [ 0 ] eq $s1 [ 0 ] ) { print shift @ s2 ; } else { print color ( "red" ) , shift @ s2 , color ( "reset" ) ; } } elsif ( defined $s2 [ 0 ] ) { print color ( "red" ) , shift @ s2 , color ( "reset" ) ; } shift @ s1 ; } print "\n" ; } you need the module term::ansicolor, to highlight the changes,use it like this: perl #!/usr/bin/perl use strict; use term::ansicolor; printstringdiff("1234","123456"); print "\n"; printstringdiff("123456","1234"); print "\n"; printstringdiff("abaa","aaba"); print "\n"; 1 2 3 4 5 6 7 8 9 10 11 12 #!/usr/bin/perl use strict ; use term:: ansicolor ; printstringdiff ( "1234" , "123456" ) ; print "\n" ; printstringdiff ( "123456" , "1234" ) ; print "\n" ; printstringdiff ( "abaa" , "aaba" ) ; print "\n" ; and the result is : posted on february 11, 2016 april 13, 2016 categories perl tags colour , perl leave a comment on perl print string difference perl check if file handler is open if you write a function in perl and want to check if the file handler is already open you could use this function: perl sub filehandleropen { my $fh = shift; no warnings 'uninitialized'; return 0 if(!defined $fh || $fh !~ /^glob\(0x.+?\)$/); if(fileno($fh) >= 1){ return(1); } return(0); } 1 2 3 4 5 6 7 8 9 sub filehandleropen { my $fh = shift ; no warnings 'uninitialized' ; return 0 if ( ! defined $fh || $fh ! ~ / ^ glob \ ( 0x . + ? \ ) $ / ) ; if ( fileno ( $fh ) >= 1 ) { return ( 1 ) ; } return ( 0 ) ; } it returns 0 if its undefined,closed or not open, an 1 if the handler is open. in this little example i open a file to read and another to write , i check the sub before and after the open function, and before and after the close function. perl #!/usr/bin/perl use warnings; use strict; my ($fh_read,$fh_write); print "check undefined:\n"; print filehandleropen($fh_read).$/; print filehandleropen($fh_write).$/; open($fh_write, ">", './testfile') or die "failed to open file: $!\n"; open($fh_read, "<", './testfile') or die "failed to open file: $!\n"; print "check defined:\n"; print filehandleropen($fh_read).$/; print filehandleropen($fh_write).$/; for my $num (1..6){ print $fh_write "$num\n"; } print "check close write:\n"; print filehandleropen($fh_write).$/; close($fh_write); print filehandleropen($fh_write).$/; while (my $row = <$fh_read>) { chomp $row; } print "check close read:\n"; print filehandleropen($fh_read).$/; close($fh_read); print filehandleropen($fh_read).$/; sub filehandleropen { my $fh = shift; no warnings 'uninitialized'; return 0 if(!defined $fh || $fh !~ /^glob\(0x.+?\)$/); if(fileno($fh) >= 1){ return(1); } return(0); } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 #!/usr/bin/perl use warnings ; use strict ; my ( $fh_read , $fh_write ) ; print "check undefined:\n" ; print filehandleropen ( $fh_read ) . $ / ; print filehandleropen ( $fh_write ) . $ / ; open ( $fh_write , ">" , './testfile' ) or die "failed to open file: $!\n" ; open ( $fh_read , "<" , './testfile' ) or die "failed to open file: $!\n" ; print "check defined:\n" ; print filehandleropen ( $fh_read ) . $ / ; print filehandleropen ( $fh_write ) . $ / ; for my $num ( 1 . . 6 ) { print $fh_write "$num\n" ; } print "check close write:\n" ; print filehandleropen ( $fh_write ) . $ / ; close ( $fh_write ) ; print filehandleropen ( $fh_write ) . $ / ; while ( my $row = < $fh_read > ) { chomp $row ; } print "check close read:\n" ; print filehandleropen ( $fh_read ) . $ / ; close ( $fh_read ) ; print filehandleropen ( $fh_read ) . $ / ; sub filehandleropen { my $fh = shift ; no warnings 'uninitialized' ; return 0 if ( ! defined $fh || $fh ! ~ / ^ glob \ ( 0x . + ? \ ) $ / ) ; if ( fileno ( $fh ) >= 1 ) { return ( 1 ) ; } return ( 0 ) ; } the result, looks like expected: check undefined: 0 0 check defined: 1 1 check close write: 1 0 check close read: 1 0 1 2 3 4 5 6 7 8 9 10 11 12 check undefined: 0 0 check defined: 1 1 check close write: 1 0 check close read: 1 0 posted on february 10, 2016 february 11, 2016 categories perl tags file handler , perl 1 comment on perl check if file handler is open perl print __data__ multiple times sometimes you have a lot of data in perl and you want to store in your script, for that you could you the __data__ token, you could simple read it with a file handle : perl print <data>,"\n"; __data__ test string 123456 1 2 3 4 5 print < data > , "\n" ; __data__ test string 123456 if you use it more than one time you should seek for the start position: perl #!/usr/bin/perl use warnings; use strict; my $data_start = tell data; # where __data__ begins print <data>,"\n"; seek data, $data_start, 0; print <data>,"\n"; __data__ test string 123456 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #!/usr/bin/perl use warnings ; use strict ; my $data_start = tell data ; # where __data__ begins print < data > , "\n" ; seek data , $data_start , 0 ; print < data > , "\n" ; __data__ test string 123456 output looks like this: test string 123456 test string 123456 1 2 3 4 5 test string 123456 test string 123456 posted on february 9, 2016 february 11, 2016 categories perl tags file handler , perl 6 comments on perl print __data__ multiple times perl read/write file this is a simple example how to write into a file with perl , and then read from it.at first we write the numbers from 1 to 6 into the file, in the second we read from the file and print it on the screen, if you don’t want the “\n” at the end use the function chomp. if you open a file for read use ‘<‘, for write ‘>’ and for append ‘>>’. perl #!/usr/bin/perl use warnings; use strict; #declare filehandler my ($fh_read,$fh_write); #open file for write open($fh_write, ">", './testfile') or die "failed to open file: $!\n"; #now write for my $num (1..6){ print $fh_write "$num\n"; } #close the file close($fh_write); #open file for read open($fh_read, "<", './testfile') or die "failed to open file: $!\n"; #now read while (my $row = <$fh_read>) { print $row; } #close the file close($fh_read); 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 #!/usr/bin/perl use warnings ; use strict ; #declare filehandler my ( $fh_read , $fh_write ) ; #open file for write open ( $fh_write , ">" , './testfile' ) or die "failed to open file: $!\n" ; #now write for my $num ( 1 . . 6 ) { print $fh_write "$num\n" ; } #close the file close ( $fh_write ) ; #open file for read open ( $fh_read , "<" , './testfile' ) or die "failed to open file: $!\n" ; #now read while ( my $row = < $fh_read > ) { print $row ; } #close the file close ( $fh_read ) ; result looks like: 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 you could check if a handler is open with this perl handler function . posted on february 8, 2016 february 11, 2016 categories perl tags example , file handler , perl 2 comments on perl read/write file install rpm under debian if you want to install *.rpm files under debian you could use alien. apt-get install alien alien -i package.rpm 1 2 apt-get install alien alien -i package.rpm posted on november 4, 2015 november 4, 2015 categories gnu/linux bash tags debian , linux leave a comment on install rpm under debian perl find lowest divisible number this perl script find the lowest, divisible number from 1 to 10: perl use strict; my ($number,$check) = (0,0); while(1){ ++$number; $check=0; for(1..20){ unless($number%$_==0){++$check;last;} } last unless($check); } print "$number\n"; 1 2 3 4 5 6 7 8 9 10 11 use strict ; my ( $number , $check ) = ( 0 , 0 ) ; while ( 1 ) { ++ $number ; $check = 0 ; for ( 1 . . 20 ) { unless ( $number % $_ == 0 ) { ++ $check ; last ; } } last unless ( $check ) ; } print "$number\n" ; the result is 2520. posted on june 17, 2015 june 16, 2015 categories perl tags perl 4 comments on perl find lowest divisible number fraction calculation in perl this perl script is able to add,subtract,divide and multiply fractional numbers: perl use strict; #test data: my @b1 = _read(); my @b2 = _read(); #test addition my @bc = _add(@b1,@b2); print "+:",_print(@bc); # test substract @bc = _sub(@bc,@b2); print "-:",_print(@bc); #simplify the result @bc = simplify(@bc); #test multiplication @bc = _mul(@b1,@b2); print "*:",_print(@bc); #test division @bc = _div(@bc,@b2); print "/:",_print(@bc); #simplify the result @bc = simplify(@bc); sub _add { my $gn = $_[1]*$_[3]; return(($_[0]*($gn/$_[1]))+($_[2]*($gn/$_[3])),$gn); } sub _sub { my $gn = $_[1]*$_[3]; return(($_[0]*($gn/$_[1]))-($_[2]*($gn/$_[3])),$gn); } sub _mul { return($_[0]*$_[2],$_[1]*$_[3]); } sub _div { return($_[0]*$_[3],$_[1]*$_[2]); } sub _print { my @d = &simplify; my $c = 0; while(1){ if($d[0]>=$d[1]){ $d[0] -= $d[1]; ++$c; }else{ last; } } if($c){ return "$c+$d[0]/$d[1](".&fractial2number.")\n"; }else{ return "$d[0]/$d[1](".&fractial2number.")\n"; } } sub _read { print "fractal number:"; my $in = <stdin>; if($in =~ /\//o){ $in =~ /^(.+)\/(.+)$/o; return($1,$2); }else{ return(number2fractial($in)); } } sub number2fractial { $_[0] =~ /^(.+)\.(.+)$/o; my $d = $1; my $c = $2; my $u = $2; $u =~ s/./0/g; $u = "1".$u; return($c+($d*$u),"$u"); } sub fractial2number { return($_[0]/$_[1]); } sub simplify { for($_ = $_[1];$_>=2;--$_){ return($_[0]/$_,$_[1]/$_) if($_[0]%$_==0 && $_[1]%$_==0); } return($_[0],$_[1]); } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 use strict ; #test data: my @ b1 = _read ( ) ; my @ b2 = _read ( ) ; #test addition my @ bc = _add ( @ b1 , @ b2 ) ; print "+:" , _print ( @ bc ) ; # test substract @ bc = _sub ( @ bc , @ b2 ) ; print "-:" , _print ( @ bc ) ; #simplify the result @ bc = simplify ( @ bc ) ; #test multiplication @ bc = _mul ( @ b1 , @ b2 ) ; print "*:" , _print ( @ bc ) ; #test division @ bc = _div ( @ bc , @ b2 ) ; print "/:" , _print ( @ bc ) ; #simplify the result @ bc = simplify ( @ bc ) ; sub _add { my $gn = $_ [ 1 ] * $_ [ 3 ] ; return ( ( $_ [ 0 ] * ( $gn / $_ [ 1 ] ) ) + ( $_ [ 2 ] * ( $gn / $_ [ 3 ] ) ) , $gn ) ; } sub _sub { my $gn = $_ [ 1 ] * $_ [ 3 ] ; return ( ( $_ [ 0 ] * ( $gn / $_ [ 1 ] ) ) - ( $_ [ 2 ] * ( $gn / $_ [ 3 ] ) ) , $gn ) ; } sub _mul { return ( $_ [ 0 ] * $_ [ 2 ] , $_ [ 1 ] * $_ [ 3 ] ) ; } sub _div { return ( $_ [ 0 ] * $_ [ 3 ] , $_ [ 1 ] * $_ [ 2 ] ) ; } sub _print { my @ d = & simplify ; my $c = 0 ; while ( 1 ) { if ( $d [ 0 ] >= $d [ 1 ] ) { $d [ 0 ] -= $d [ 1 ] ; ++ $c ; } else { last ; } } if ( $c ) { return "$c+$d[0]/$d[1](" . & fractial2number . ")\n" ; } else { return "$d[0]/$d[1](" . & fractial2number . ")\n" ; } } sub _read { print "fractal number:" ; my $in = < stdin > ; if ( $in = ~ / \ //o){ $in = ~ / ^ ( . + ) \ / ( . + ) $ / o ; return ( $ 1 , $ 2 ) ; } else { return ( number2fractial ( $in ) ) ; } } sub number2fractial { $_ [ 0 ] = ~ / ^ ( . + ) \ . ( . + ) $ / o ; my $d = $ 1 ; my $c = $ 2 ; my $u = $ 2 ; $u = ~ s/./0/g ; $u = "1" . $u ; return ( $c + ( $d * $u ) , "$u" ) ; } sub fractial2number { return ( $_ [ 0 ] / $_ [ 1 ] ) ; } sub simplify { for ( $_ = $_ [ 1 ] ; $_ >= 2 ; -- $_ ) { return ( $_ [ 0 ] / $_ , $_ [ 1 ] / $_ ) if ( $_ [ 0 ] % $_ == 0 && $_ [ 1 ] % $_ == 0 ) ; } return ( $_ [ 0 ] , $_ [ 1 ] ) ; } this is the output from 1/2 and 1.25, at first add both then subtract from the result, multiply and then divide from the result: perl fractal number:1/2 fractal number:1.25 +:1+3/4(1.75) -:1/2(0.5) *:5/8(0.625) /:1/2(0.5) 1 2 3 4 5 6 fractal number:1/2 fractal number:1.25 +:1+3/4(1.75) -:1/2(0.5) *:5/8(0.625) /:1/2(0.5) for a better result take a look at perl high precision . posted on june 15, 2015 june 15, 2015 categories perl tags calculator , perl 1 comment on fraction calculation in perl javascript generate an result array from xpath this is a function in javascript that use an xpath string to generate an array from the results.this is very useful if you have to manipulate or use some items on a page and don’t have the id(like bots). that is the function: function matches2array (xpath){ var links = new array(); var elements = 0; var xpathres = document.evaluate (xpath, document, null, xpathresult.ordered_node_iterator_type, null); var actualspan = xpathres.iteratenext (); while (actualspan) { links[elements] = actualspan; actualspan = xpathres.iteratenext (); ++elements; } return(links); } 1 2 3 4 5 6 7 8 9 10 11 12 function matches2array ( xpath ) { var links = new array ( ) ; var elements = 0 ; var xpathres = document . evaluate ( xpath , document , null , xpathresult . ordered_node_iterator_type , null ) ; var actualspan = xpathres . iteratenext ( ) ; while ( actualspan ) { links [ elements ] = actualspan ; actualspan = xpathres . iteratenext ( ) ; ++ elements ; } return ( links ) ; } you could use it in the terminal: matches2array("//a"); 1 matches2array ( "//a" ) ; and we get all hrefs on this page in the terminal: [a.skip-link.screen-reader-text #content, a scheinast.eu, a /category/c-sharp/, a /category/c/, a /category/fortran/, a /category/bash/, a /category...-css-js/, a /category/java/, a /category/perl/, a /category/php/, a /category/projects/, a /category/regex/, a /category...-tricks/, a /category/windows/, a /perl-str...nchmark/, a /regex-fi...strings/, a /how-to-o...desktop/, a /c-calculator/, a /javascri...ocation/, a /image-uploader/, a /wp-admin/, a wp-login....68d8990f, a /feed/, a /comments/feed/, a wordpress.org, a.a2a_button_facebook /, a.a2a_button_twitter /, a.a2a_button_google_plus /, a.a2a_dd.addtoany_share_save share_sav...2f%5d..., a /calculator-in-c/, a.url.fn.n /author/p...heinast/, a /category/c/, a /tag/c/, a /tag/calculator/, a.post-edit-link post.php?...ion=edit, a#cancel-comment-reply-link /calculat...#respond, a profile.php, a wp-login....68d8990f, a /new-hompage-design/, a /backtrack-how-to/, a.a2a_button_facebook /, a.a2a_button_twitter /, a.a2a_button_google_plus /, a.a2a_dd.addtoany_share_save share_sav...2f%5d..., a.screen-reader-shortcut #wp-toolbar, a.ab-item about.php, a.ab-item about.php, a.ab-item wordpress.org, a.ab-item codex.wordpress.org, a.ab-item /support/, a.ab-item requests-...feedback, a.ab-item admin.php...tics.php, a.ab-item admin.php...ine_menu, a.ab-item admin.php...tics.php, a.ab-item /wp-admin/, a.ab-item /wp-admin/, a.ab-item themes.php, a.ab-item customize...d=themes, a.ab-item customize...-in-c%2f, a.ab-item widgets.php, a.ab-item customize...=widgets, a.ab-item nav-menus.php, a.ab-item themes.ph...ckground, a.ab-item customize...nd_image, a.ab-item themes.ph...m-header, a.ab-item customize...er_image, a.ab-item edit-comments.php, a.ab-item post-new.php, a.ab-item post-new.php, a.ab-item media-new.php, a.ab-item post-new....ype=page, a.ab-item user-new.php, a.ab-item post.php?...ion=edit, a.ab-item profile.php, a.ab-item profile.php, a.ab-item profile.php, a.ab-item wp-login....68d8990f, a.screen-reader-shortcut wp-login....68d8990f, a.a2a_i.a2a_sss /, a.a2a_i.a2a_sss /, a.a2a_i.a2a_sss /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a, a.a2a_i.a2a_sss /, a.a2a_i.a2a_sss /, a.a2a_i.a2a_sss /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a#a2apage_any_email.a2a_i.a2a_emailer /, a#a2apage_email_client.a2a_i.a2a_emailer.a2a_email_client /, a#a2apage_show_more_less.a2a_menu_show_more_less.a2a_more] 1 [a.skip-link.screen-reader-text #content, a scheinast.eu, a /category/c-sharp/, a /category/c/, a /category/fortran/, a /category/bash/, a /category...-css-js/, a /category/java/, a /category/perl/, a /category/php/, a /category/projects/, a /category/regex/, a /category...-tricks/, a /category/windows/, a /perl-str...nchmark/, a /regex-fi...strings/, a /how-to-o...desktop/, a /c-calculator/, a /javascri...ocation/, a /image-uploader/, a /wp-admin/, a wp-login....68d8990f, a /feed/, a /comments/feed/, a wordpress.org, a.a2a_button_facebook /, a.a2a_button_twitter /, a.a2a_button_google_plus /, a.a2a_dd.addtoany_share_save share_sav...2f%5d..., a /calculator-in-c/, a.url.fn.n /author/p...heinast/, a /category/c/, a /tag/c/, a /tag/calculator/, a.post-edit-link post.php?...ion=edit, a#cancel-comment-reply-link /calculat...#respond, a profile.php, a wp-login....68d8990f, a /new-hompage-design/, a /backtrack-how-to/, a.a2a_button_facebook /, a.a2a_button_twitter /, a.a2a_button_google_plus /, a.a2a_dd.addtoany_share_save share_sav...2f%5d..., a.screen-reader-shortcut #wp-toolbar, a.ab-item about.php, a.ab-item about.php, a.ab-item wordpress.org, a.ab-item codex.wordpress.org, a.ab-item /support/, a.ab-item requests-...feedback, a.ab-item admin.php...tics.php, a.ab-item admin.php...ine_menu, a.ab-item admin.php...tics.php, a.ab-item /wp-admin/, a.ab-item /wp-admin/, a.ab-item themes.php, a.ab-item customize...d=themes, a.ab-item customize...-in-c%2f, a.ab-item widgets.php, a.ab-item customize...=widgets, a.ab-item nav-menus.php, a.ab-item themes.ph...ckground, a.ab-item customize...nd_image, a.ab-item themes.ph...m-header, a.ab-item customize...er_image, a.ab-item edit-comments.php, a.ab-item post-new.php, a.ab-item post-new.php, a.ab-item media-new.php, a.ab-item post-new....ype=page, a.ab-item user-new.php, a.ab-item post.php?...ion=edit, a.ab-item profile.php, a.ab-item profile.php, a.ab-item profile.php, a.ab-item wp-login....68d8990f, a.screen-reader-shortcut wp-login....68d8990f, a.a2a_i.a2a_sss /, a.a2a_i.a2a_sss /, a.a2a_i.a2a_sss /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a, a.a2a_i.a2a_sss /, a.a2a_i.a2a_sss /, a.a2a_i.a2a_sss /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a.a2a_i /, a#a2apage_any_email.a2a_i.a2a_emailer /, a#a2apage_email_client.a2a_i.a2a_emailer.a2a_email_client /, a#a2apage_show_more_less.a2a_menu_show_more_less.a2a_more] use it to store it in an array and then write it on the page: var scripts = matches2array("//a"); for (i=0;i<scripts.length;i++){ document.write(scripts[i] + "\n"); } 1 2 3 4 5 var scripts = matches2array ( "//a" ) ; for ( i = 0 ; i < scripts . length ; i ++ ) { document . write ( scripts [ i ] + "\n" ) ; } and we got this result: http://scheinast.eu/calculator-in-c/#content http://scheinast.eu/ http://scheinast.eu/category/c-sharp/ http://scheinast.eu/category/c/ http://scheinast.eu/category/fortran/ http://scheinast.eu/category/bash/ http://scheinast.eu/category/html-css-js/ http://scheinast.eu/category/java/ http://scheinast.eu/category/perl/ http://scheinast.eu/category/php/ http://scheinast.eu/category/projects/ http://scheinast.eu/category/regex/ http://scheinast.eu/category/tips-and-tricks/ http://scheinast.eu/category/windows/ http://scheinast.eu/perl-strict-benchmark/ http://scheinast.eu/regex-find-interpolate-strings/ http://scheinast.eu/how-to-open-remote-desktop/ http://scheinast.eu/c-calculator/ http://scheinast.eu/javascript-location/ http://scheinast.eu/image-uploader/ http://scheinast.eu/wp-admin/ http://scheinast.eu/wp-login.php?action=logout&_wpnonce=a768d8990f http://scheinast.eu/feed/ http://scheinast.eu/comments/feed/ https://wordpress.org/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ https://www.addtoany.com/share_save#url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&title=calculator%20in%20c%2b%2b&description=this%20is%20my%20calculator%20in%20c%2b%2b%20with%20in-line%20assembler%3a%20%5bcrayon-556e97ccb93bc417229824%2f%5d%20compile%20the%20code%3a%20%5bcrayon-556e97ccb93e1826855153%2f%5d%20output%3a%20%5bcrayon-556e97ccb93f8566053665%2f%5d... http://scheinast.eu/calculator-in-c/ http://scheinast.eu/author/paul-scheinast/ http://scheinast.eu/category/c/ http://scheinast.eu/tag/c/ http://scheinast.eu/tag/calculator/ http://scheinast.eu/wp-admin/post.php?post=1542&action=edit http://scheinast.eu/calculator-in-c/#respond http://scheinast.eu/wp-admin/profile.php http://scheinast.eu/wp-login.php?action=logout&redirect_to=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&_wpnonce=a768d8990f http://scheinast.eu/new-hompage-design/ http://scheinast.eu/backtrack-how-to/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ https://www.addtoany.com/share_save#url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&title=calculator%20in%20c%2b%2b%20%7c%20paul%20scheinast&description=this%20is%20my%20calculator%20in%20c%2b%2b%20with%20in-line%20assembler%3a%20%5bcrayon-556e97ccb93bc417229824%2f%5d%20compile%20the%20code%3a%20%5bcrayon-556e97ccb93e1826855153%2f%5d%20output%3a%20%5bcrayon-556e97ccb93f8566053665%2f%5d... http://scheinast.eu/calculator-in-c/#wp-toolbar http://scheinast.eu/wp-admin/about.php http://scheinast.eu/wp-admin/about.php https://wordpress.org/ https://codex.wordpress.org/ https://wordpress.org/support/ https://wordpress.org/support/forum/requests-and-feedback http://scheinast.eu/wp-admin/admin.php?page=wp-statistics/wp-statistics.php http://scheinast.eu/wp-admin/admin.php?page=wps_online_menu http://scheinast.eu/wp-admin/admin.php?page=wp-statistics/wp-statistics.php http://scheinast.eu/wp-admin/ http://scheinast.eu/wp-admin/ http://scheinast.eu/wp-admin/themes.php http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&autofocus%5bsection%5d=themes http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f http://scheinast.eu/wp-admin/widgets.php http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&autofocus%5bpanel%5d=widgets http://scheinast.eu/wp-admin/nav-menus.php http://scheinast.eu/wp-admin/themes.php?page=custom-background http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&autofocus%5bcontrol%5d=background_image http://scheinast.eu/wp-admin/themes.php?page=custom-header http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&autofocus%5bcontrol%5d=header_image http://scheinast.eu/wp-admin/edit-comments.php http://scheinast.eu/wp-admin/post-new.php http://scheinast.eu/wp-admin/post-new.php http://scheinast.eu/wp-admin/media-new.php http://scheinast.eu/wp-admin/post-new.php?post_type=page http://scheinast.eu/wp-admin/user-new.php http://scheinast.eu/wp-admin/post.php?post=1542&action=edit http://scheinast.eu/wp-admin/profile.php http://scheinast.eu/wp-admin/profile.php http://scheinast.eu/wp-admin/profile.php http://scheinast.eu/wp-login.php?action=logout&_wpnonce=a768d8990f http://scheinast.eu/wp-login.php?action=logout&_wpnonce=a768d8990f http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ https://www.addtoany.com/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/calculator-in-c/ 1 http://scheinast.eu/calculator-in-c/#content http://scheinast.eu/ http://scheinast.eu/category/c-sharp/ http://scheinast.eu/category/c/ http://scheinast.eu/category/fortran/ http://scheinast.eu/category/bash/ http://scheinast.eu/category/html-css-js/ http://scheinast.eu/category/java/ http://scheinast.eu/category/perl/ http://scheinast.eu/category/php/ http://scheinast.eu/category/projects/ http://scheinast.eu/category/regex/ http://scheinast.eu/category/tips-and-tricks/ http://scheinast.eu/category/windows/ http://scheinast.eu/perl-strict-benchmark/ http://scheinast.eu/regex-find-interpolate-strings/ http://scheinast.eu/how-to-open-remote-desktop/ http://scheinast.eu/c-calculator/ http://scheinast.eu/javascript-location/ http://scheinast.eu/image-uploader/ http://scheinast.eu/wp-admin/ http://scheinast.eu/wp-login.php?action=logout&_wpnonce=a768d8990f http://scheinast.eu/feed/ http://scheinast.eu/comments/feed/ https://wordpress.org/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ https://www.addtoany.com/share_save#url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&title=calculator%20in%20c%2b%2b&description=this%20is%20my%20calculator%20in%20c%2b%2b%20with%20in-line%20assembler%3a%20%5bcrayon-556e97ccb93bc417229824%2f%5d%20compile%20the%20code%3a%20%5bcrayon-556e97ccb93e1826855153%2f%5d%20output%3a%20%5bcrayon-556e97ccb93f8566053665%2f%5d... http://scheinast.eu/calculator-in-c/ http://scheinast.eu/author/paul-scheinast/ http://scheinast.eu/category/c/ http://scheinast.eu/tag/c/ http://scheinast.eu/tag/calculator/ http://scheinast.eu/wp-admin/post.php?post=1542&action=edit http://scheinast.eu/calculator-in-c/#respond http://scheinast.eu/wp-admin/profile.php http://scheinast.eu/wp-login.php?action=logout&redirect_to=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&_wpnonce=a768d8990f http://scheinast.eu/new-hompage-design/ http://scheinast.eu/backtrack-how-to/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ https://www.addtoany.com/share_save#url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&title=calculator%20in%20c%2b%2b%20%7c%20paul%20scheinast&description=this%20is%20my%20calculator%20in%20c%2b%2b%20with%20in-line%20assembler%3a%20%5bcrayon-556e97ccb93bc417229824%2f%5d%20compile%20the%20code%3a%20%5bcrayon-556e97ccb93e1826855153%2f%5d%20output%3a%20%5bcrayon-556e97ccb93f8566053665%2f%5d... http://scheinast.eu/calculator-in-c/#wp-toolbar http://scheinast.eu/wp-admin/about.php http://scheinast.eu/wp-admin/about.php https://wordpress.org/ https://codex.wordpress.org/ https://wordpress.org/support/ https://wordpress.org/support/forum/requests-and-feedback http://scheinast.eu/wp-admin/admin.php?page=wp-statistics/wp-statistics.php http://scheinast.eu/wp-admin/admin.php?page=wps_online_menu http://scheinast.eu/wp-admin/admin.php?page=wp-statistics/wp-statistics.php http://scheinast.eu/wp-admin/ http://scheinast.eu/wp-admin/ http://scheinast.eu/wp-admin/themes.php http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&autofocus%5bsection%5d=themes http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f http://scheinast.eu/wp-admin/widgets.php http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&autofocus%5bpanel%5d=widgets http://scheinast.eu/wp-admin/nav-menus.php http://scheinast.eu/wp-admin/themes.php?page=custom-background http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&autofocus%5bcontrol%5d=background_image http://scheinast.eu/wp-admin/themes.php?page=custom-header http://scheinast.eu/wp-admin/customize.php?url=http%3a%2f%2fscheinast.eu%2fcalculator-in-c%2f&autofocus%5bcontrol%5d=header_image http://scheinast.eu/wp-admin/edit-comments.php http://scheinast.eu/wp-admin/post-new.php http://scheinast.eu/wp-admin/post-new.php http://scheinast.eu/wp-admin/media-new.php http://scheinast.eu/wp-admin/post-new.php?post_type=page http://scheinast.eu/wp-admin/user-new.php http://scheinast.eu/wp-admin/post.php?post=1542&action=edit http://scheinast.eu/wp-admin/profile.php http://scheinast.eu/wp-admin/profile.php http://scheinast.eu/wp-admin/profile.php http://scheinast.eu/wp-login.php?action=logout&_wpnonce=a768d8990f http://scheinast.eu/wp-login.php?action=logout&_wpnonce=a768d8990f http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ https://www.addtoany.com/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/ http://scheinast.eu/calculator-in-c/ posted on june 10, 2015 june 3, 2015 categories html,css,js tags javascript , xpath 10 comments on javascript generate an result array from xpath posts navigation page 1 page 2 … page 19 next page proudly powered by wordpress

URL analysis for scheinast.eu


https://www.addtoany.com/add_to/google_plus?linkurl=https%3a%2f%2fscheinast.eu%2ffraction-calculation-in-perl%2f&linkname=fraction%20calculation%20in%20perl
https://www.addtoany.com/add_to/twitter?linkurl=https%3a%2f%2fscheinast.eu%2fperl-find-lowest-divisible-number%2f&linkname=perl%20find%20lowest%20divisible%20number
https://scheinast.eu/2016/11/
https://scheinast.eu/perl-readwrite-file/#comments
http://scheinast.eu/regular-expression/
https://scheinast.eu/2014/12/
https://www.addtoany.com/add_to/google_plus?linkurl=https%3a%2f%2fscheinast.eu%2fperl-print-__data__-multiple-times%2f&linkname=perl%20print%20__data__%20multiple%20times
https://scheinast.eu/tag/calculator/
https://scheinast.eu/tag/example/
https://www.addtoany.com/add_to/twitter?linkurl=https%3a%2f%2fscheinast.eu%2fjavascript-generate-an-result-array-from-xpath%2f&linkname=javascript%20generate%20an%20result%20array%20from%20xpath
https://scheinast.eu/2015/01/
https://www.addtoany.com/add_to/facebook?linkurl=https%3a%2f%2fscheinast.eu%2fperl-print-__data__-multiple-times%2f&linkname=perl%20print%20__data__%20multiple%20times
https://scheinast.eu/category/windows/
https://scheinast.eu/javascript-generate-an-result-array-from-xpath/
http://scheinast.eu/perl/

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

% The WHOIS service offered by EURid and the access to the records
% in the EURid WHOIS database are provided for information purposes
% only. It allows persons to check whether a specific domain name
% is still available or not and to obtain information related to
% the registration records of existing domain names.
%
% EURid cannot, under any circumstances, be held liable in case the
% stored information would prove to be wrong, incomplete or not
% accurate in any sense.
%
% By submitting a query you agree not to use the information made
% available to:
%
% - allow, enable or otherwise support the transmission of unsolicited,
% commercial advertising or other solicitations whether via email or
% otherwise;
% - target advertising in any possible way;
%
% - to cause nuisance in any possible way to the registrants by sending
% (whether by automated, electronic processes capable of enabling
% high volumes or other possible means) messages to them.
%
% Without prejudice to the above, it is explicitly forbidden to extract,
% copy and/or use or re-utilise in any form and by any means
% (electronically or not) the whole or a quantitatively or qualitatively
% substantial part of the contents of the WHOIS database without prior
% and explicit permission by EURid, nor in any attempt hereof, to apply
% automated, electronic processes to EURid (or its systems).
%
% You agree that any reproduction and/or transmission of data for
% commercial purposes will always be considered as the extraction of a
% substantial part of the content of the WHOIS database.
%
% By submitting the query you agree to abide by this policy and accept
% that EURid can take measures to limit the use of its WHOIS services
% in order to protect the privacy of its registrants or the integrity
% of the database.
%
% The EURid WHOIS service on port 43 (textual whois) never
% discloses any information concerning the registrant.
% Registrant and onsite contact information can be obtained through use of the
% webbased whois service available from the EURid website www.eurid.eu
%
% WHOIS scheinast.eu
Domain: scheinast.eu

Registrant:
NOT DISCLOSED!
Visit www.eurid.eu for webbased whois.

Onsite(s):
NOT DISCLOSED!
Visit www.eurid.eu for webbased whois.

Registrar:
Name: World4You Internet Services GmbH
Website: http://www.world4you.com

Name servers:
ns2.world4you.at
ns1.world4you.at

Please visit www.eurid.eu for more info.

  REFERRER http://www.eurid.eu

  REGISTRAR EURID

SERVERS

  SERVER eu.whois-servers.net

  ARGS scheinast.eu

  PORT 43

  TYPE domain

DOMAIN

  NAME scheinast.eu

REGISTRAR

  NAME World4You Internet Services GmbH

  URL http://www.world4you.com

NSERVER

  NS2.WORLD4YOU.AT 81.19.147.5

  NS1.WORLD4YOU.AT 81.19.145.5

OWNER
NOT DISCLOSED!
Visit www.eurid.eu for webbased whois.
Onsite(s):
NOT DISCLOSED!
Visit www.eurid.eu for webbased whois.

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.uscheinast.com
  • www.7scheinast.com
  • www.hscheinast.com
  • www.kscheinast.com
  • www.jscheinast.com
  • www.ischeinast.com
  • www.8scheinast.com
  • www.yscheinast.com
  • www.scheinastebc.com
  • www.scheinastebc.com
  • www.scheinast3bc.com
  • www.scheinastwbc.com
  • www.scheinastsbc.com
  • www.scheinast#bc.com
  • www.scheinastdbc.com
  • www.scheinastfbc.com
  • www.scheinast&bc.com
  • www.scheinastrbc.com
  • www.urlw4ebc.com
  • www.scheinast4bc.com
  • www.scheinastc.com
  • www.scheinastbc.com
  • www.scheinastvc.com
  • www.scheinastvbc.com
  • www.scheinastvc.com
  • www.scheinast c.com
  • www.scheinast bc.com
  • www.scheinast c.com
  • www.scheinastgc.com
  • www.scheinastgbc.com
  • www.scheinastgc.com
  • www.scheinastjc.com
  • www.scheinastjbc.com
  • www.scheinastjc.com
  • www.scheinastnc.com
  • www.scheinastnbc.com
  • www.scheinastnc.com
  • www.scheinasthc.com
  • www.scheinasthbc.com
  • www.scheinasthc.com
  • www.scheinast.com
  • www.scheinastc.com
  • www.scheinastx.com
  • www.scheinastxc.com
  • www.scheinastx.com
  • www.scheinastf.com
  • www.scheinastfc.com
  • www.scheinastf.com
  • www.scheinastv.com
  • www.scheinastvc.com
  • www.scheinastv.com
  • www.scheinastd.com
  • www.scheinastdc.com
  • www.scheinastd.com
  • www.scheinastcb.com
  • www.scheinastcom
  • www.scheinast..com
  • www.scheinast/com
  • www.scheinast/.com
  • www.scheinast./com
  • www.scheinastncom
  • www.scheinastn.com
  • www.scheinast.ncom
  • www.scheinast;com
  • www.scheinast;.com
  • www.scheinast.;com
  • www.scheinastlcom
  • www.scheinastl.com
  • www.scheinast.lcom
  • www.scheinast com
  • www.scheinast .com
  • www.scheinast. com
  • www.scheinast,com
  • www.scheinast,.com
  • www.scheinast.,com
  • www.scheinastmcom
  • www.scheinastm.com
  • www.scheinast.mcom
  • www.scheinast.ccom
  • www.scheinast.om
  • www.scheinast.ccom
  • www.scheinast.xom
  • www.scheinast.xcom
  • www.scheinast.cxom
  • www.scheinast.fom
  • www.scheinast.fcom
  • www.scheinast.cfom
  • www.scheinast.vom
  • www.scheinast.vcom
  • www.scheinast.cvom
  • www.scheinast.dom
  • www.scheinast.dcom
  • www.scheinast.cdom
  • www.scheinastc.om
  • www.scheinast.cm
  • www.scheinast.coom
  • www.scheinast.cpm
  • www.scheinast.cpom
  • www.scheinast.copm
  • www.scheinast.cim
  • www.scheinast.ciom
  • www.scheinast.coim
  • www.scheinast.ckm
  • www.scheinast.ckom
  • www.scheinast.cokm
  • www.scheinast.clm
  • www.scheinast.clom
  • www.scheinast.colm
  • www.scheinast.c0m
  • www.scheinast.c0om
  • www.scheinast.co0m
  • www.scheinast.c:m
  • www.scheinast.c:om
  • www.scheinast.co:m
  • www.scheinast.c9m
  • www.scheinast.c9om
  • www.scheinast.co9m
  • www.scheinast.ocm
  • www.scheinast.co
  • scheinast.eum
  • www.scheinast.con
  • www.scheinast.conm
  • scheinast.eun
  • www.scheinast.col
  • www.scheinast.colm
  • scheinast.eul
  • www.scheinast.co
  • www.scheinast.co m
  • scheinast.eu
  • www.scheinast.cok
  • www.scheinast.cokm
  • scheinast.euk
  • www.scheinast.co,
  • www.scheinast.co,m
  • scheinast.eu,
  • www.scheinast.coj
  • www.scheinast.cojm
  • scheinast.euj
  • www.scheinast.cmo
Show All Mistakes Hide All Mistakes