- Chrome
- AppCleaner
- Dashlane
- Alfred
- Sublime Text
- iTerm2
- Boxy
- Bartender 2
- RescueTime
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BLUE HUSKY LICENSE 0 - PUBLIC DOMAIN - OPUS 7 | |
0: LAYMAN'S TERMS | |
This section is meant to explain the purpose of this License in Layman's | |
terms, and should thusly never be seen as legally binding. This disclaimer does | |
not apply to further sections of this License. | |
1. This is no one's product and is in the public domain | |
2. You're not responsible for any bad things that might happen because someone | |
used this product |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CustomRootCAAPIClient.h | |
// | |
// Created by Roman Tomjak on 19/12/14. | |
// Copyright (c) 2014 Roman Tomjak. All rights reserved. | |
// | |
#import <AFHTTPSessionManager.h> | |
@interface CustomRootCAAPIClient : AFHTTPSessionManager |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Primitive Type Comparison | |
var a = 1; | |
var b = 1; | |
var c = a; | |
console.log(a == b); //true | |
console.log(a === b); //true | |
console.log(a == c); //true | |
console.log(a === c); //true |