Skip to content

Instantly share code, notes, and snippets.

View 0angelic0's full-sized avatar

0angelic0 0angelic0

View GitHub Profile
@0angelic0
0angelic0 / macs-on-active-directory.md
Created June 30, 2018 07:30 — forked from bzerangue/macs-on-active-directory.md
Binding and Unbinding to Active Directory from Mac OS via Command Line

Binding and Unbinding to Active Directory from Mac OS via Command Line

  • Open the Terminal Application
  • Type in sudo -i and type in your Mac Administrator account password. sudo gives you root level or administrator level privileges.

To View current Active Directory Settings

dsconfigad -show

To Unbind a Computer from an Active Directory Domain

@0angelic0
0angelic0 / gist:ac89f5aaec0cec523860fb42921a69b0
Created December 5, 2017 14:55 — forked from vrinek/gist:bda51f6fc8b22b5df301
Blizzard Software Engineering Reading

Blizzard Software Engineering Reading

by Jay Baxter (circa 2009)

Associate developer

"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."

Programming: Principles and Practice Using C++

by Bjarne Stroustrup

@0angelic0
0angelic0 / promise.js
Last active November 9, 2017 12:26
javascript promise
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;
}