git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| class Fail2banNotifier | |
| def initialize(options) | |
| @default_options = options | |
| @default_options[:logfile] ||= Rails.root.join('log', 'fail2ban.log') | |
| # Roll over every 30M, keep 10 files | |
| @logger ||= Logger.new(@default_options[:logfile], 10, 30*1024*1024) | |
| end | |
| def call(exception, options={}) |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| root /var/www/wordpress; | |
| index index.php index.html index.htm index.nginx-debian.html; | |
| server_name _; |
| #include "stm32f1xx_hal.h" | |
| UART_HandleTypeDef UartHandle; /* UART 핸들러 */ | |
| __IO ITStatus UartReady = RESET; /* UART 상태 지시자 */ | |
| #define RXBUFFERSIZE 10 | |
| uint8_t aRxBuffer[RXBUFFERSIZE]; /* UART 수신 버퍼 */ | |
| int main(void) |
| /** | |
| * @file lv_conf.h | |
| * | |
| */ | |
| #ifndef LV_CONF_H | |
| #define LV_CONF_H | |
| /*=================== | |
| Dynamic memory | |
| *===================*/ |
| strace: [ Process PID=27942 runs in 32 bit mode. ] | |
| strace: Process 27943 attached | |
| strace: Process 27944 attached | |
| strace: [ Process PID=27944 runs in 64 bit mode. ] | |
| [pid 27944] stat("/home/seyyah", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
| [pid 27944] stat(".", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 | |
| strace: Process 27945 attached | |
| [pid 27945] stat("/usr/lib/jvm/java-8-oracle/bin/../lib/amd64/jli/tls/haswell/x86_64", 0x7ffc6a28e060) = -1 ENOENT (No such file or directory) | |
| [pid 27945] stat("/usr/lib/jvm/java-8-oracle/bin/../lib/amd64/jli/tls/haswell", 0x7ffc6a28e060) = -1 ENOENT (No such file or directory) | |
| [pid 27945] stat("/usr/lib/jvm/java-8-oracle/bin/../lib/amd64/jli/tls/x86_64", 0x7ffc6a28e060) = -1 ENOENT (No such file or directory) |
| [ | |
| { "keys": ["ctrl+shift+r"], "command": "toggle_comment", "args": { "block": false } }, | |
| { "keys": ["ctrl+shift+t"], "command": "toggle_comment", "args": { "block": true } }, | |
| { "keys": ["ctrl+shift+8"], "command": "fold" }, | |
| { "keys": ["ctrl+shift+9"], "command": "unfold" }, | |
| ] |
lv_label_set_text(label, "Welcome");
lv_label_set_text(label, t("Hello world!");
lv_label_set_text(label, t("There are %d errors");
lv_label_set_text(label, t("Missing translation");| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Documentation </title> | |
| <style>/*! | |
| * Bootstrap v3.3.7 (http://getbootstrap.com) | |
| * Copyright 2011-2016 Twitter, Inc. |