Update bios for gigabyte motherboards

1) κατεβαζουμε το προγραμμα bios update ver.2.2 απο εδω : http://www.gigabyte.com.tw/Support/M…lity_List.aspx

2) στην συνεχεια απο το site της gigabyte κατεβαζετε το τελευταιο bios αρχειο για την μητρικη σας. (π.χ οπως το δικο μου εδω) :http://www.gigabyte.com.tw/Support/M…ProductID=2740
και το σωζετε σε καποιον δισκο. (ξεζιπαρετε το σε φακελο να το εχετε ετοιμο για αργοτερα). Continue reading “Update bios for gigabyte motherboards”

20 Linux System Monitoring Tools Every SysAdmin Should Know

Need to monitor Linux server performance? Try these built-in command and a few add-on tools. Most Linux distributions are equipped with tons of monitoring. These tools provide metrics which can be used to get information about system activities. You can use these tools to find the possible causes of a performance problem. The commands discussed below are some of the most basic commands when it comes to system analysis and debugging server issues such as:

  1. Finding out bottlenecks.
  2. Disk (storage) bottlenecks.
  3. CPU and memory bottlenecks.
  4. Network bottlenecks.

http://www.cyberciti.biz/tips/top-linux-monitoring-tools.html Continue reading “20 Linux System Monitoring Tools Every SysAdmin Should Know”

flash external xml into array

flash external xml into array
im attempting to take data in from an xml file and make it into an array in flash… below is the code im using- the problem i am having is that it dosent trace anything

Code:

var xmlDoc:XML = new XML();
System.useCodepage = true;
xmlDoc.ignoreWhite = true;

xmlDoc.onLoad = function(ok:Boolean) {
if (ok) {
doMenu(this);
} else {
trace(“XML did not load”);
}
};

xmlDoc.load(“myImages.xml”);

function doMenu(xml:XML) {
var num:Number = xml.firstChild.childNodes.length;
pics = new Array();
for (var i = 0; i < num; i++) {
pics[i] = xml.firstChild.childNodes[i].attributes.image;
}
trace(pics);
}

here is my xml file
Code:

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

<MENU>
   <ITEM image="image1.jpg" />
   <ITEM image="image2.jpg" />
   <ITEM image="image3.jpg" />
   <ITEM image="image4.jpg" />
</MENU>

thanks http://www.webdeveloper.com/forum/showthread.php?t=72067