- Open the Terminal Application
- Type in
sudo -iand type in your Mac Administrator account password.sudogives you root level or administrator level privileges.
dsconfigad -show
sudo -i and type in your Mac Administrator account password. sudo gives you root level or administrator level privileges.dsconfigad -show
by Jay Baxter (circa 2009)
"This list is for people who want to become Associate Software Engineers at Blizzard. An associate should have skills at the level indicated by these books. Note that this is almost completely focused on C++ programming. This list is incomplete. I need a book on how to become a professional. I've listed several books that give examples of professional behavior, but not one on the actual training."
by Bjarne Stroustrup
| function p(func) { | |
| setTimeout(function() { | |
| console.log("1 second"); | |
| func("Pisit"); | |
| }, 1000); | |
| } |
| pragma solidity ^0.4.2; | |
| contract owned { | |
| address public owner; | |
| /* this function is executed at initialization and sets the owner of the contract */ | |
| function owned() { | |
| owner = msg.sender; | |
| } |