<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Karlosp.net&#187; Ideo page</title>
	<atom:link href="http://www.karlosp.net/blog/category/ideo-page/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.karlosp.net/blog</link>
	<description>Malo mešano na žaru</description>
	<lastBuildDate>Mon, 19 Jul 2010 13:37:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux Bash &#8211; sed substring</title>
		<link>http://www.karlosp.net/blog/2009/02/13/linux-bash-sed-substring/</link>
		<comments>http://www.karlosp.net/blog/2009/02/13/linux-bash-sed-substring/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 14:50:58 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[Malo mešano]]></category>
		<category><![CDATA[egrep]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[sed]]></category>
		<category><![CDATA[substring]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=549</guid>
		<description><![CDATA[PLAIN TEXT
CODE:




echo "This is the TEST(Message(with some tricky word)) from which i want to search." &#124;&#160; &#60;acronym title="Stream Editor"&#62;sed&#60;/acronym&#62; 's/.*\(TEST.*))\).*$/\1/' 






PLAIN TEXT
CODE:




echo `expr match "abba (album)" '.*(\(.*\)).*'` -&#62; album 






PLAIN TEXT
CODE:




stringZ=abcABC123ABCabc


#&#160; &#160; &#160; &#160;=======&#160;&#160; &#160; 


&#160;


echo `expr match "$stringZ" '\(.[b-c]*[A-Z]..[0-9]\)'`&#160; &#160;# abcABC1


echo `expr "$stringZ" : '\(.[b-c]*[A-Z]..[0-9]\)'`&#160; &#160; &#160; &#160;# abcABC1


echo `expr "$stringZ" : '\(.......\)'`&#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<div class="igBar"><span id="lcode-4"><a href="#" onclick="javascript:showPlainTxt('code-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-4">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo <span style="color:#CC0000;">"This is the TEST(Message(with some tricky word)) from which i want to search."</span> |&nbsp; &lt;acronym title=<span style="color:#CC0000;">"Stream Editor"</span>&gt;sed&lt;/acronym&gt; <span style="color:#CC0000;">'s/.*<span style="color:#000099; font-weight:bold;">\(</span>TEST.*))<span style="color:#000099; font-weight:bold;">\)</span>.*$/<span style="color:#000099; font-weight:bold;">\1</span>/'</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<div class="igBar"><span id="lcode-5"><a href="#" onclick="javascript:showPlainTxt('code-5'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-5">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo `expr match <span style="color:#CC0000;">"abba (album)"</span> <span style="color:#CC0000;">'.*(<span style="color:#000099; font-weight:bold;">\(</span>.*<span style="color:#000099; font-weight:bold;">\)</span>).*'</span>` -&gt; <span style="">album</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<div class="igBar"><span id="lcode-6"><a href="#" onclick="javascript:showPlainTxt('code-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-6">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">stringZ=abcABC123ABCabc</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#&nbsp; &nbsp; &nbsp; &nbsp;=======&nbsp;&nbsp; &nbsp; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo `expr match <span style="color:#CC0000;">"$stringZ"</span> <span style="color:#CC0000;">'<span style="color:#000099; font-weight:bold;">\(</span>.[b-c]*[A-Z]..[0-9]<span style="color:#000099; font-weight:bold;">\)</span>'</span>`&nbsp; &nbsp;# abcABC1</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo `expr <span style="color:#CC0000;">"$stringZ"</span> : <span style="color:#CC0000;">'<span style="color:#000099; font-weight:bold;">\(</span>.[b-c]*[A-Z]..[0-9]<span style="color:#000099; font-weight:bold;">\)</span>'</span>`&nbsp; &nbsp; &nbsp; &nbsp;# abcABC1</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">echo `expr <span style="color:#CC0000;">"$stringZ"</span> : <span style="color:#CC0000;">'<span style="color:#000099; font-weight:bold;">\(</span>.......<span style="color:#000099; font-weight:bold;">\)</span>'</span>`&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;# abcABC1 </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p><a href="http://tldp.org/LDP/abs/html/string-manipulation.html">String manipulating</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2009/02/13/linux-bash-sed-substring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireless Network Scanner (working on DD-WRT v24)</title>
		<link>http://www.karlosp.net/blog/2008/07/31/wireless-network-scanner-working-on-dd-wrt-v24/</link>
		<comments>http://www.karlosp.net/blog/2008/07/31/wireless-network-scanner-working-on-dd-wrt-v24/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 10:57:39 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[Malo mešano]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=277</guid>
		<description><![CDATA[
Download file wireless-network-scanner-working-on-dd-wrt-v24
	
Open file -&#62; Ctrl+a -&#62; Ctrl+p
open CMD / Putty -&#62; connect to router (telnet 192.168.X.1)
right mouse click /paste

PLAIN TEXT
CODE:




#!/bin/sh


&#160;


awk -F"[][]" '


BEGIN{


 IGNORECASE = 1;


 command = &#34;site_survey 2&#62;&#38;1&#34;;


 red = &#34;\x1b[31m&#34;;&#160; &#160; &#160; &#160; &#160; &#160; &#160; green = &#34;\x1b[32m&#34;;


 greenback=&#34;\x1b[42m&#34;;&#160; &#160; &#160; &#160; &#160; yellow = &#34;\x1b[33m&#34;;


 cyan = &#34;\x1b[36m&#34;;&#160; &#160; &#160; [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Download file <a href="http://www.karlosp.net/blog/wp-content/uploads/2008/09/wireless-network-scanner-working-on-dd-wrt-v24.txt">wireless-network-scanner-working-on-dd-wrt-v24</a>
	</li>
<li>Open file -&gt; Ctrl+a -&gt; Ctrl+p</li>
<li>open CMD / Putty -&gt; connect to router (telnet 192.168.X.1)</li>
<li>right mouse click /paste</li>
</ol>
<div class="igBar"><span id="lcode-8"><a href="#" onclick="javascript:showPlainTxt('code-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span>
<div id="code-8">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">#!/bin/sh</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">awk -F<span style="color:#CC0000;">"[][]"</span> <span style="color:#CC0000;">'</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">BEGIN{</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> IGNORECASE = 1;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> command = &quot;site_survey 2&gt;&amp;1&quot;;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> red = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[31m&quot;;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; green = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[32m&quot;;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> greenback=&quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[42m&quot;;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; yellow = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[33m&quot;;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> cyan = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[36m&quot;;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;blue = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[34m&quot;;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> blueback = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[44m&quot;;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;white = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[37m&quot;;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> whiteback = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[47m&quot;;&nbsp; &nbsp; &nbsp; &nbsp; reset = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[0m&quot;;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> underscore = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[4m&quot;;&nbsp; &nbsp; &nbsp; &nbsp; clear = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[2J&quot;;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> home = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[0;0H&quot;;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; erase2end = &quot;<span style="color:#000099; font-weight:bold;">\x</span>1b[K&quot;;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> cName = white;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;cSignal = green;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> cNoise = red;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; cCaps = green;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> cStrengthLow = blue blueback;&nbsp; cChannel = green;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> cStrengthMed = white whiteback;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> cStrengthHi = green greenback;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> cStrengthAged = red;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; </span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> print clear;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> for(;;)</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> {</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; while (command|getline)</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; {&nbsp; &nbsp; </span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; if ($22 == &quot;&quot;) continue;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; bssid=$6;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; name[bssid] = $4;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; rssi[bssid] = $10;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; noise[bssid]= $12;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; channel[bssid] = $8;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; caps[bssid] = $22;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; age[bssid] = 1;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; }</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; close(command);</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; printf home;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; ln = 0;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; print white &quot; Name&nbsp; &nbsp; &nbsp; &nbsp;BSSID&nbsp; Signal Noise Channel Type&quot;;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; for (x in name)</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; {&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; #arbitrary strength calc through trial and error... modify as you wish:</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; sigstrength = ((rssi[x] - noise[x])*1.5) + ((rssi[x] +90)*1.5);</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; if (sigstrength &amp;lt;1) sigstrength=0;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; cStrength = cStrengthLow;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; if(sigstrength&gt;4) cStrength = cStrengthMed;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; if(sigstrength&gt;7) cStrength = cStrengthHi;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; if(age[x]=0) cStrength = cStrengthAged;&nbsp; &nbsp; &nbsp; &nbsp; </span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; fmt = &quot;%s%-15s %s%0&quot;sigstrength&quot;d &quot;reset erase2end &quot;<span style="color:#000099; font-weight:bold;">\n</span>&nbsp; &nbsp; %s&nbsp; %s%-4d %s%-4d %s%-4d %s%2s &quot;&nbsp; reset erase2end &quot;<span style="color:#000099; font-weight:bold;">\n</span>&quot; erase2end &quot;<span style="color:#000099; font-weight:bold;">\n</span>&quot;;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; printf fmt, cName,name[x],cStrength,0,x,cSignal,rssi[x],cNoise,noise[x],cChannel, channel[x],cCaps,caps[x]; </span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; rssi[x] = &quot;-100 xxxx&quot;;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; &nbsp; &nbsp; ln++;&nbsp; &nbsp; &nbsp; &nbsp; </span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; }&nbsp; </span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; if (ln ==0) </span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; &nbsp; print red &quot;No Results - Do you have survey capability? <span style="color:#000099; font-weight:bold;">\n</span>This program depends on site_survey to run. Hit ctrl-c to stop.&quot;;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"></li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">&nbsp; print erase2end;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;"> }</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">}</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#CC0000;">'</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2008/07/31/wireless-network-scanner-working-on-dd-wrt-v24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windsurfer wlan surfer</title>
		<link>http://www.karlosp.net/blog/2008/07/28/windsurfer-wlan-surfer/</link>
		<comments>http://www.karlosp.net/blog/2008/07/28/windsurfer-wlan-surfer/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 09:16:28 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[Malo mešano]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=272</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.karlosp.net/blog/wp-content/uploads/2008/07/windsurfer.jpg'><img src="http://www.karlosp.net/blog/wp-content/uploads/2008/07/windsurfer-201x300.jpg" alt="windsurfer" title="windsurfer" width="201" height="300" class="alignnone size-medium wp-image-273" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2008/07/28/windsurfer-wlan-surfer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digitalno oglaševanje ++</title>
		<link>http://www.karlosp.net/blog/2008/07/25/digitalno-oglasevanje/</link>
		<comments>http://www.karlosp.net/blog/2008/07/25/digitalno-oglasevanje/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 16:56:39 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[digitalno]]></category>
		<category><![CDATA[izboljšano digitalno oglaševanje]]></category>
		<category><![CDATA[oglaševanje]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/?p=269</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.karlosp.net/blog/wp-content/uploads/2008/07/digitalno-oglasevanje.jpg'><img src="http://www.karlosp.net/blog/wp-content/uploads/2008/07/digitalno-oglasevanje-300x225.jpg" alt="" title="digitalno-oglasevanje++" width="300" height="225" class="alignnone size-medium wp-image-270" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2008/07/25/digitalno-oglasevanje/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SPOZNAJTE POSLOVNO IDEJO, V KATERI:</title>
		<link>http://www.karlosp.net/blog/2007/12/31/spoznajte-poslovno-idejo-v-kateri/</link>
		<comments>http://www.karlosp.net/blog/2007/12/31/spoznajte-poslovno-idejo-v-kateri/#comments</comments>
		<pubDate>Mon, 31 Dec 2007 09:20:59 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/2007/12/31/spoznajte-poslovno-idejo-v-kateri/</guid>
		<description><![CDATA[- nebi potrebovali velikih zagonskih   stroškov
- ne potrebujete zaposlenih
- bi delali zase, pa vendar ne sami
- dobite izkušeno ekipo, ki vas trenira
- imate neomejene potenciale zaslužkov
- imate možnost pridobiti stalne, pasivne   dohodke
- si sami določate delovni čas in odločate   o pomembnih dogodkih v svojem   življenju
]]></description>
			<content:encoded><![CDATA[<p>- nebi potrebovali velikih zagonskih   stroškov<br />
- ne potrebujete zaposlenih<br />
- bi delali zase, pa vendar ne sami<br />
- dobite izkušeno ekipo, ki vas trenira<br />
- imate neomejene potenciale zaslužkov<br />
- imate možnost pridobiti stalne, pasivne   dohodke<br />
- si sami določate delovni čas in odločate   o pomembnih dogodkih v svojem   življenju</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2007/12/31/spoznajte-poslovno-idejo-v-kateri/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TelMe &#8211; Second Life &#8211; logo 2</title>
		<link>http://www.karlosp.net/blog/2007/12/28/telme-second-life-logo-2/</link>
		<comments>http://www.karlosp.net/blog/2007/12/28/telme-second-life-logo-2/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 14:11:44 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[Malo mešano]]></category>
		<category><![CDATA[2]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[logo]]></category>
		<category><![CDATA[Second]]></category>
		<category><![CDATA[telme]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/2007/12/28/telme-second-life-logo-2/</guid>
		<description><![CDATA[TelMe - Second Life - logo 2

]]></description>
			<content:encoded><![CDATA[<h2>TelMe - Second Life - logo 2</h2>
<p><a href='http://www.karlosp.net/blog/wp-content/uploads/2007/12/telme-sl-copy.png' title='TelMe - Second Life logo 2'><img src='http://www.karlosp.net/blog/wp-content/uploads/2007/12/telme-sl-copy.png' alt='TelMe - Second Life logo 2' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2007/12/28/telme-second-life-logo-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TelMe &#8211; Second Life</title>
		<link>http://www.karlosp.net/blog/2007/12/28/telme-second-life-logo/</link>
		<comments>http://www.karlosp.net/blog/2007/12/28/telme-second-life-logo/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 13:53:27 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[Malo mešano]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Second]]></category>
		<category><![CDATA[telme]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/2007/12/28/telme-second-life/</guid>
		<description><![CDATA[TelMe
TelMe - Second Life logo
]]></description>
			<content:encoded><![CDATA[<h2>TelMe</h2>
<p><a href='http://www.karlosp.net/blog/wp-content/uploads/2007/12/telme-sl.png' title='TelMe - Second Life logo'>TelMe - Second Life logo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2007/12/28/telme-second-life-logo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drugi test</title>
		<link>http://www.karlosp.net/blog/2007/11/04/drugi-test/</link>
		<comments>http://www.karlosp.net/blog/2007/11/04/drugi-test/#comments</comments>
		<pubDate>Sat, 03 Nov 2007 23:38:35 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[Malo mešano]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/2007/11/04/drugi-test/</guid>
		<description><![CDATA[Malo testiram Scribe fireIn malo popravljam

]]></description>
			<content:encoded><![CDATA[<p>Malo testiram<b> Scribe fire<br /></b><br />In malo popravljam</p>
<p class="poweredbyperformancing"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2007/11/04/drugi-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protected: Mobilni radar</title>
		<link>http://www.karlosp.net/blog/2007/10/21/mobilni-radar/</link>
		<comments>http://www.karlosp.net/blog/2007/10/21/mobilni-radar/#comments</comments>
		<pubDate>Sun, 21 Oct 2007 20:53:10 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[Malo mešano]]></category>
		<category><![CDATA[ideja]]></category>
		<category><![CDATA[Mobilni]]></category>
		<category><![CDATA[radar]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/2007/10/21/mobilni-radar/</guid>
		<description><![CDATA[There is no excerpt because this is a protected post.]]></description>
			<content:encoded><![CDATA[<form action="http://www.karlosp.net/blog/wp-pass.php" method="post">
<p>This post is password protected. To view it please enter your password below:</p>
<p><label for="pwbox-112">Password:<br />
<input name="post_password" id="pwbox-112" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="Submit" /></p></form>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2007/10/21/mobilni-radar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Karlosp Slovenske Železnice Vozni Redi</title>
		<link>http://www.karlosp.net/blog/2007/10/03/karlosp-slovenske-zeleznice-vozni-red/</link>
		<comments>http://www.karlosp.net/blog/2007/10/03/karlosp-slovenske-zeleznice-vozni-red/#comments</comments>
		<pubDate>Wed, 03 Oct 2007 20:24:34 +0000</pubDate>
		<dc:creator>karlosp</dc:creator>
				<category><![CDATA[Ideo page]]></category>
		<category><![CDATA[karlosp]]></category>
		<category><![CDATA[ljubljana]]></category>
		<category><![CDATA[postaja]]></category>
		<category><![CDATA[red]]></category>
		<category><![CDATA[redi]]></category>
		<category><![CDATA[s-ž]]></category>
		<category><![CDATA[slovenske]]></category>
		<category><![CDATA[sž]]></category>
		<category><![CDATA[vozni]]></category>
		<category><![CDATA[železnice]]></category>
		<category><![CDATA[železniška]]></category>

		<guid isPermaLink="false">http://www.karlosp.net/blog/2007/10/03/karlosp-slovenske-zeleznice-sz/</guid>
		<description><![CDATA[Karlosp Slovenske Železnice
Po zgledu Karlosp LPP vozni redi in
Karlosp KAM-BUS vozni redi sem naredil še
Karlosp Slovenske Železnice
Vse skupaj je narejeno za moje lastne, neprofitne in izobraževalne namene, če pa še komu pride prav pa še toliko bolje  .
]]></description>
			<content:encoded><![CDATA[<h1 style="text-align: left; margin-bottom: 0pt; padding-bottom: 0pt"><a href="http://www.karlosp.net/sz/">Karlosp Slovenske Železnice</a></h1>
<p>Po zgledu <a href="http://www.karlosp.net/blog/2007/09/15/karlos-lpp-vozni-red/">Karlosp LPP vozni redi</a> in<br />
<a href="http://www.karlosp.net/blog/2007/09/27/kam-bus-vozni-redi/">Karlosp KAM-BUS vozni redi</a> sem naredil še<br />
<a href="http://www.karlosp.net/sz/" style="font-size: 14px;">Karlosp Slovenske Železnice</a></p>
<p>Vse skupaj je narejeno za <strong><em>moje </em>lastne, neprofitne in izobraževalne namene,</strong> če pa še komu pride prav pa še toliko bolje <img src='http://www.karlosp.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
			<wfw:commentRss>http://www.karlosp.net/blog/2007/10/03/karlosp-slovenske-zeleznice-vozni-red/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
