- Two of the most useful shortcuts utilize the Fn (function) keys. It is therefore recommended that you enable the "Use all F1, F2, etc. keys as standard function keys" option [System Preferences > Keyboard].
- Be sure to enable the Mac OS X 10.5+ keymap in Android Studio [Preferences > Keymap].
- A fairly complete shortcut list can be found here.
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
| // FaceServer::handle_post does all the pre processing before handing the right image format to the Openface function below this one. | |
| void FaceServer::handle_post(http_request message) { | |
| pplx::task<json::value> img_extract = message.extract_json(); | |
| packet = new FaceDataPacket(); | |
| img_extract.then([=](json::value value) { |
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 longest(strarr,k){ | |
| var start = 0; | |
| var end = k; | |
| var superstring=''; | |
| while(end !== strarr.length+1){ | |
| var temp = strarr.slice(start,end).join(''); | |
| if(temp.length >= superstring.length){ | |
| superstring = temp; | |
| } |