19
2010
Using nslookup, dig, and host
Configuring Domain Name System (DNS) servers Using nslookup, dig, and host nslookup, dig, and host are useful commands that allow you to perform DNS queries, and to test out your DNS configuration. You can use the nslookup command interactively to enter a shell from which you can change servers, set query options, and debug DNS. You can also use nslookup non-interactively from the command line to issue simple queries. See nslookup(1Mtcp) for more information. dig [...]
24
2010
Remove element from a PHP array
## your initial PHP array $array = array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); ## output your array print implode(‘ ,’, $array) . "\n"; ## Output : 1 ,2 ,3 ,4 ,5 ,6 ,7 ,8 ,9 ,10 ## removing 2 values from array unset($array[5]); unset($array[7]); print implode(‘ ,’, $array) . "\n"; ## Output : 1 ,2 ,3 ,4 ,5 ,7 ,9 ,10
21
2010
Slo-tech skripta ki filtrira prikaz postov dolocenih uporabnikov
Za delovanej potrebujete greasemonkey extension ko naložite kliknite TUKAJ in vprašalo vas bo če želite naložiti skripto. Dodate lahko tudi druge uporabnike. // ==UserScript== // @name killfile // @namespace killfile // @description slo-tech killfile // @include http://slo-tech.com/forum/t* // @include https://slo-tech.com/forum/t* // @include http://*.slo-tech.com/forum/t* // @include https://*.slo-tech.com/forum/t* // ==/UserScript== var users = ['Thomas', 'mtosev']; window.addEventListener( ‘load’, function () { var usersRe = ‘^(‘ + users.join(‘|’) + ‘)’; var posts, thisPost; posts = document.evaluate( "//div[@class='post even' or [...]
Kategorije
- Ostalo (161)
- Računalništvo (266)
- Centos (34)
- CSS (2)
- FreeBSD (37)
- jQuery (1)
- MySQL (8)
- Na spletu dogaja … (124)
- Netbeans (4)
- PHP (20)
- Symbian (3)
- Ubuntu (32)
- Windows (5)
- Zend Framework (6)
- Zend Studio (1)
Blogroll
Arhiv
- February 2011 (5)
- December 2010 (4)
- November 2010 (2)
- October 2010 (5)
- September 2010 (6)
- August 2010 (5)
- July 2010 (10)
- June 2010 (9)
- May 2010 (10)
- April 2010 (8)
- March 2010 (12)
- February 2010 (19)
- January 2010 (20)
- December 2009 (10)
- November 2009 (1)
- October 2009 (3)
- September 2009 (2)
- August 2009 (9)
- June 2009 (11)
- May 2009 (5)
- April 2009 (6)
- March 2009 (9)
- February 2009 (15)
- January 2009 (10)
- December 2008 (17)
- November 2008 (20)
- October 2008 (16)
- September 2008 (48)
- August 2008 (56)
- July 2008 (35)
- June 2008 (35)
An article by