Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!
openssl genrsa -des3 -out rootCA.key 4096
apiVersion: bootstrap.cluster.x-k8s.io/v1beta1 | |
kind: KubeadmConfigTemplate | |
metadata: | |
name: byoh-cluster-md-0 | |
namespace: default | |
spec: | |
template: | |
spec: {} | |
--- | |
apiVersion: cluster.x-k8s.io/v1beta1 |
{"lastUpload":"2020-09-25T18:59:16.175Z","extensionVersion":"v3.4.3"} |
npm install selenium-webdriver | |
npm install selenium-server-standalone-jar | |
npm install phantomjs |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
//------------------------------------------------------------------------------ | |
// | |
// kLineCount is number of line in truncated mode | |
-(NSString *)thumbnailString:(NSString*)string { | |
NSInteger lenght = [string length]; | |
NSString *showMoreString = @"see more"; | |
UIFont* displayFont = <your font>; | |
Some investigation and tests on how to upgrade Mint machine.
Tests performed on Mint Cinnamon 14/15/16, on physical machine 14->15 and VirtualBox VMs for 14->15->16 and 14->16.
As usual you could break your machine, so please do backups before and cross fingers.
NSURLConnection | NSURLSession | |
------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------- | |
NSURLConnectionDelegate connectionShouldUseCredentialStorage: | | |
------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------- | |
NSURLConnectionDelegate connection:willSendRequestForAuthenticationChallenge: | NSURLSessionDelegate URLSession:didReceiveChallenge:completionHandler: | |
| N |
After wresting the traditional git submodule + static library dependency chain, it became a giant headache. I tried to get it all to work for a long time. You must:
A much better way is to use submodules to include the child projects into the parent project and then use cocoapods to include those child projects (instead of linking them in statically and dealing with the millions of headaches that brings).
For example, I've added my dependency tree as a series of git submodules and then I have a Podfile that looks like this: