| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| (function(window, $) { | |
| window.fmpwizard = { | |
| views: { | |
| DropDownMenus: function(){ | |
| var self = this; | |
| self.initDropDown = function(selector, url){ | |
| if ($(selector).attr('class').contains('select2-offscreen')) { | |
| //if we already init'ed this element, exit. | |
| return; | |
| } |
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
| package com.brs; | |
| import org.slf4j.Logger; | |
| import org.slf4j.LoggerFactory; | |
| /** | |
| * Simple class that we use to trigger a log statement. | |
| */ | |
| public class ExampleThatLogs { |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
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
| import java.io.IOException; | |
| import java.net.URISyntaxException; | |
| import java.nio.file.Files; | |
| import java.nio.file.Paths; | |
| import java.security.KeyFactory; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.security.PrivateKey; | |
| import java.security.interfaces.RSAPublicKey; | |
| import java.security.spec.InvalidKeySpecException; | |
| import java.security.spec.PKCS8EncodedKeySpec; |
More on ECDSA
Info on bit length and complexity
From it you may gather that using 256 bit ECDSA key should be enough for next 10-20 years.
To view your available curves
A curated list of AWS resources to prepare for the AWS Certifications
A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.
Most recently tested on macOS Sierra (10.12.6)
- Download the installation script;
curl https://bootstrap.pypa.io/get-pip.py -o ~/Downloads/get-pip.py - Run the installation, appending the
--userflag;python ~/Downloads/get-pip.py --user. pip will be installed to ~/Library/Python/2.7/bin/pip - Make sure
~/Library/Python/2.7/binis in your$PATH. Forbashusers, edit thePATH=line in~/.bashrcto append the local Python path; ie.PATH=$PATH:~/Library/Python/2.7/bin. Apply the changes,source ~/.bashrc. - Use pip! Remember to append
--userwhen installing modules; ie.pip install <package_name> --user
OlderNewer
