"Implement a feature XXXX, otherwise I'll use another project."
-
No.
-
Feel free to.
"Without that functionality this project is useless."
It's your personal opinion.
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use 5.010; | |
| use JSON qw( decode_json ); # isn't default module, must be installed via CPAN or your system package manager | |
| use Time::HiRes qw ( usleep ); # for simple delays | |
| my $outputfile = shift || die "use $0 outputfile.png"; # getting output filename from command-line params |
"Implement a feature XXXX, otherwise I'll use another project."
No.
Feel free to.
"Without that functionality this project is useless."
It's your personal opinion.
| user nginx; | |
| worker_processes 2; | |
| error_log logs/error.log; | |
| pid logs/nginx.pid; | |
| events { | |
| worker_connections 1024; | |
| } |
| #ifndef _TAIHEN_HPP_ | |
| #define _TAIHEN_HPP_ | |
| #include <taihen.h> | |
| template<typename type, typename... Args> type tai_continue(tai_hook_ref_t hook, Args... args) { | |
| struct _tai_hook_user *cur, *next; | |
| cur = (struct _tai_hook_user *)(hook); | |
| next = (struct _tai_hook_user *)cur->next; | |
| return (next == NULL) ? |
| /* | |
| * SceKermit (MIPS side): | |
| * - https://gist.github.com/TheOfficialFloW/4fdec09e53a7c93a0d07d9e3e982dff4#file-kermit-c-L145 | |
| * - https://github.com/Total-Noob/kermit_reverse/blob/master/main.c | |
| */ | |
| /* | |
| * Initial state: | |
| * MIPS ARM | |
| * Consumer ready = true Producer ready = true |