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
| How to reopen a pull-request from github? | |
| Precodinitions | |
| You need the rights to reopen pull requests on the repository. | |
| The pull request hasn't been merged, just closed. | |
| Go to Pull requests add filter `is:closed` choose PR you want to reopen. Select from checkbox and mark as Open. | |
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
| #!/bin/sh -x | |
| set -e | |
| SIZES=" | |
| 16,16x16 | |
| 32,16x16@2x | |
| 32,32x32 | |
| 64,32x32@2x | |
| 128,128x128 |
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
| #include <stdint.h> | |
| /** | |
| * Encode a code point using UTF-8 | |
| * | |
| * @author Ondřej Hruška <ondra@ondrovo.com> | |
| * @license MIT | |
| * | |
| * @param out - output buffer (min 5 characters), will be 0-terminated | |
| * @param utf - code point 0-0x10FFFF |
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
| #include <stdio.h> | |
| #include <locale.h> | |
| #include <X11/Xlib.h> | |
| #include <X11/keysym.h> | |
| int main(void){ | |
| setlocale(LC_ALL, ""); | |
| Display* dpy = XOpenDisplay(NULL); |
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
| Note for newcomers: | |
| In the shortcuts below, "C" stands for CTRL and "A" stands for "ALT". This is a convention | |
| used in the Midnight Commander documentation and was kept here. | |
| You can also use "ESC" instead of "ALT", which is useful on Macbooks. | |
| Main View | |
| --------------------------------------------------------------- | |
| - File/directory operations |
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
| { | |
| "name": "securehelloworld", | |
| "version": "1.0.0", | |
| "description": "", | |
| "main": "server.js", | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1" | |
| }, | |
| "author": "", | |
| "license": "ISC", |
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
| NSString *const PSPDFApplicationDidReceiveMemoryWarningNotification = @"PSPDFApplicationDidReceiveMemoryWarningNotification"; | |
| // Test with sudo memory_pressure -l critical. Don't forget to re-set afterwards! | |
| __attribute__((constructor)) static void PSPDFInstallLowMemoryNotificationWarningMac(void) { | |
| static dispatch_source_t source; | |
| static dispatch_once_t onceToken; | |
| dispatch_once(&onceToken, ^{ | |
| source = dispatch_source_create(DISPATCH_SOURCE_TYPE_MEMORYPRESSURE, 0, DISPATCH_MEMORYPRESSURE_WARN|DISPATCH_MEMORYPRESSURE_CRITICAL, dispatch_get_main_queue()); | |
| dispatch_source_set_event_handler(source, ^{ | |
| dispatch_source_memorypressure_flags_t pressureLevel = dispatch_source_get_data(source); |
(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.
NewerOlder