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
| (setq xwid (make-xwidget | |
| 'webkit | |
| "Title" | |
| 200 ; width | |
| 300 ; height | |
| nil ; args | |
| "aaa" | |
| nil)) | |
| (with-current-buffer "aaa" |
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
| require 'formula' | |
| # INSTRUCTIONS FROM MK | |
| # You can download the file and run `brew install ./dblatex.rb` | |
| # BEFORE INSTALLING THIS FORMULA: | |
| # 1.) Install MacTex or BasicTex from https://www.tug.org/mactex/ | |
| # 2.) Make yourself the owner of the tex installation directory: | |
| # $ sudo chown -R "$(id -un):$(id -gn)" /usr/local/texlive | |
| # 3.) Update tlmgr and install required packages |
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> | |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <xmmintrin.h> // SSE | |
| #include <immintrin.h> // AVX | |
| #ifdef _WIN32 | |
| #include <intrin.h> // for __movsb, __movsd, __movsq |
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
| commit 2496d0d4a4d084f7f2c66790379edf2a2940aec0 | |
| Author: Abutalib Aghayev <[email protected]> | |
| Date: Mon Feb 27 13:24:04 2017 -0500 | |
| ext4-lazy | |
| diff --git a/fs/ext4/balloc.c b/fs/ext4/balloc.c | |
| index fe1f50f..dcef4ba 100644 | |
| --- a/fs/ext4/balloc.c | |
| +++ b/fs/ext4/balloc.c |
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 <unistd.h> | |
| #include <stdlib.h> | |
| #define LOG(fmt, ...) printf("[%d] %s: " fmt, getpid(), __func__, ##__VA_ARGS__) | |
| void do_exec() | |
| { | |
| char *prog = "/bin/echo"; | |
| char *newargv[] = { prog, "echo", "I am echo!", NULL }; |