Saturday, May 30, 2009
Friday, May 29, 2009
Wednesday, May 20, 2009
Run Php in command window
Monday, May 18, 2009
glut.h
Thursday, May 14, 2009
Connect to University Of Auckland Terminal Server
Wednesday, May 13, 2009
Backbone(vertical) cabling vs Horizontal Cabling
This is from Cisco:
Similarity: both connects from telecommunication room.
Difference:
Backbone = vertical: connect to equipment room(where servers are).
Horizontal: connects to work area( where individual pcs and desktops are).
Telecommunications Room:
The telecommunications room is where connections to intermediary devices take place. These rooms contain the intermediary devices - hubs, switches, routers, and data service units (DSUs) - that tie the network together. These devices provide the transitions between the backbone cabling and the horizontal cabling.
Similarity: both connects from telecommunication room.
Difference:
Backbone = vertical: connect to equipment room(where servers are).
Horizontal: connects to work area( where individual pcs and desktops are).
Telecommunications Room:
The telecommunications room is where connections to intermediary devices take place. These rooms contain the intermediary devices - hubs, switches, routers, and data service units (DSUs) - that tie the network together. These devices provide the transitions between the backbone cabling and the horizontal cabling.
Understanding University of Auckland Terminal Server
Saturday, May 9, 2009
Administrator disabled display control panel
Problem:
Screen resolution was changed by itself.
Administrator account was not able to open "screen settings" (right click->property)
Error message: "Administrator disabled display control panel"
Fix:
open group policy object editor:
start->run->gpedit.msc
then
user settings->control pannel-> displayplay-> double click "delete display control panel"->click disable.
Screen resolution was changed by itself.
Administrator account was not able to open "screen settings" (right click->property)
Error message: "Administrator disabled display control panel"
Fix:
open group policy object editor:
start->run->gpedit.msc
then
user settings->control pannel-> displayplay-> double click "delete display control panel"->click disable.
Extract data from myob through php
# connect to a DSN "mydb" with a user and password
#DSN is a system wide in this case. user or document wide systems could be possible
$connect = odbc_connect("TEST2", "Administrator", "");
# query the users table for name and surname
$query = "SELECT * FROM Employees";
# perform the query
$result = odbc_exec($connect, $query) or die ("cannot find table");
# fetch the data from the database
while($row = odbc_fetch_array($result)){
$name = $row['LastName'];
$surename = $row['FirstName'];
print("$name $surename
\n");
}
?>
#DSN is a system wide in this case. user or document wide systems could be possible
$connect = odbc_connect("TEST2", "Administrator", "");
# query the users table for name and surname
$query = "SELECT * FROM Employees";
# perform the query
$result = odbc_exec($connect, $query) or die ("cannot find table");
# fetch the data from the database
while($row = odbc_fetch_array($result)){
$name = $row['LastName'];
$surename = $row['FirstName'];
print("$name $surename
\n");
}
?>
Tuesday, May 5, 2009
Personalized webpage
Some application allow internet users to make notes on any kind of webpages. Eg http://www.emilstefanov.net/Projects/NeuralNetworks.aspx is a good website, I added to my bookmarks. But I want to make notes on this website and would be able to edit the information.
Michael
Michael
Sunday, May 3, 2009
Link MYOB with Access
Create empty Access DB
file->get external data->link tables
Choose File of type: ODBC Database
file->get external data->link tables
Choose File of type: ODBC Database
Subscribe to:
Posts (Atom)