<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
 "http://my.netscape.com/publish/formats/rss-0.91.dtd">

<rss version="0.91">

<channel>
<title>Project Oriented Computer Science - Georgi Todorov</title>
<link>http://joro.geodar.com/POCS/</link>
<description>PHP-Nuke Powered Site</description>
<language>en-us</language>

<item>
<title>Security Scanners</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=26</link>
<description>nmap:
nmap -sT -sR -P0 127.0.0.1

nessus:
www.nessus.org -&gt; requires nessusd plus nessus client</description>
</item>

<item>
<title>Text wrap at 80th colum:</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=25</link>
<description>
#include
using namespace std;

int main(void){
string input;
int count = 0;
while(!cin.eof()){
cin &gt;&gt; input;
if (count + input.length()&lt;= 80 &amp;&amp; count==0){
cout &lt;&lt; input;
count +=input.length();
}else if(count+input.length()&lt;=79&amp;&amp;count!=0){
cout &lt;&lt; &quot; &quot; &lt;&lt; input;
count 1+=input.length();
}else{
cout &lt;&lt; endl;
count=input.length();
cout &lt;&lt; input;
}
}
cout &lt;&lt; endl;
}</description>
</item>

<item>
<title>List + Info</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=24</link>
<description>Slagz now supports list of installed packages plus info for particular package(swaret). Thanks to QTSwaret for the hints.
Here is how I parse the name of tha packages to extract the version:
while ( (fi = it.current()) != 0 )
{
QString *myFileName = new QString( fi-&gt;fileName() );
for(int a=0;alength();a++)
{
QString temp = myFileName-&gt;section('-',0,a);
if (temp.find('.')&gt;0){
newPacket = myFileName-&gt;section('-',0,a-1);
break;
}
}
QString PacketVer = myFileName-&gt;section('-', -3, -3);
QString Installed = &quot;yes&quot;;
if(! myFileName-&gt;startsWith( &quot;.&quot; ) &amp;&amp; ! myFileName-&gt;startsWith( &quot;..&quot; ) )
new QListViewItem(listPackages,newPacket,PacketVer,Installed);
++it;

</description>
</item>

<item>
<title>Slagz redesigned</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=23</link>
<description> Looking at some projects available I decided to go with a slightly different approach for slagz. Instead of a bunch of menus on the window in Advanced mode, right click will be used. To override the right click the rightButtonPressed signal is used from the listPackages widget with the showMenu() slot(custom widget) . The connect looks like this:
connect( listPackages, SIGNAL( rightButtonPressed(QListViewItem*,const QPoint&amp;,int) ), this, SLOT( showMenu() ) );</description>
</item>

<item>
<title>18 October 2005</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=22</link>
<description>for N nodes n*(n-1)/2 wires are required (bidirectional wires) - started with IBM - not very good solution&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now days packet switching is used. Using a ring, for n nodes n wires are used.&lt;strong&gt;&lt;br /&gt;
-----------&lt;br /&gt;
&lt;/strong&gt;scheduling:&lt;br /&gt;
with multiple people working on multiple tasks it is better for each
person to work on a separate task instead of more people working on a
single task.&lt;br /&gt;</description>
</item>

<item>
<title>Updated System Design &amp; Updated Time Table</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=21</link>
<description>In the downloads section you can now find the Updated System Design
&amp;amp; Updated Time Table presentation in the typical 4 formats. HTML
version is available &lt;a href=&quot;files/presentation4&quot; target=&quot;_self&quot;&gt;here.&lt;/a&gt;&lt;br /&gt;</description>
</item>

<item>
<title>Preliminary System Design + Timetable</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=20</link>
<description>First timetable for the project + Preliminary System Design presentation was added in the Downloads section. &lt;br /&gt;

&lt;br /&gt;

The project is rolling...</description>
</item>

<item>
<title>Java and C++ compared</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=18</link>
<description>Java and C++ are both very similar and very different depending on the situation.&lt;br /&gt;
On the basic programming level of for loops, if-else statements etc, both languages follow the same structure. &lt;br /&gt;
&lt;br /&gt;
On a higher level, things are different.&lt;br /&gt;
In C++ we can have stand along functions, but in Java they must be part
of a class. In C++ multiple inheritance is available, in Java not. C++
allows for operator overloading and Java does not.&lt;br /&gt;
&lt;a href=&quot;http://www.cs.wustl.edu/%7Elevine/courses/cs342/c++/javaVcpp-special.html&quot; target=&quot;_self&quot;&gt;&lt;/a&gt;&lt;br /&gt;</description>
</item>

<item>
<title>Java vs C++ Notes &amp; Time management</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=17</link>
<description>not that important to overload an operator&lt;br /&gt;
&lt;br /&gt;
Main differance - manual return of memory space in C++ against Garbage
collector in Java. There is no precise timing in Java because of the
GC. To solve : put native code on the important places in Java program.
But than have to be compiled platform by platform.&lt;br /&gt;
&lt;br /&gt;
---------------------&lt;br /&gt;
&lt;br /&gt;
Time management&lt;br /&gt;
&lt;br /&gt;
What are the jobs to do! The real ones. Prioritize and follow the priorities.&lt;br /&gt;
How would computer deal with ...&lt;br /&gt;</description>
</item>

<item>
<title>Project is aprooved!</title>
<link>http://joro.geodar.com/POCS//modules.php?name=News&amp;file=article&amp;sid=16</link>
<description>After dealing a little with SF they have aprooved the project and now the infrastructure is ready. &lt;br /&gt;
The url is: &lt;a href=&quot;http://www.sf.net/projects/slagz/&quot; target=&quot;_self&quot;&gt;http://www.sf.net/projects/slagz/&lt;/a&gt;&lt;br /&gt;
Fist two presentations are done, Next week a design will be created and tasks will be assigned. &lt;br /&gt;</description>
</item>

</channel>
</rss>