移動しました!
This file contains 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 "runtime/exceptions.hpp" | |
#include "runtime/global_io.hpp" | |
#include "runtime/global_json.hpp" | |
#include "runtime/global_symbol.hpp" | |
#include "runtime/js_value.hpp" | |
#include <coroutine> | |
int prog() { |
This file contains 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
.text | |
.def @feat.00; | |
.scl 3; | |
.type 0; | |
.endef | |
.globl @feat.00 | |
.set @feat.00, 0 | |
.file "fib.11100cec-cgu.0" | |
.def _ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17ha71540ff8e38b0edE; | |
.scl 3; |
This file contains 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
const std = @import("std"); | |
const expect = std.testing.expect; | |
const cell = struct { | |
v1: ?*Variant, | |
v2: ?*Variant, | |
}; | |
const Variant = union(enum) { | |
int: i32, |
This file contains 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
<style> | |
#container { | |
display: inline-block; | |
margin-left: 200px; | |
margin-top: 200px; | |
} | |
#container img { | |
margin: 50px; | |
} | |
</style> |
This file contains 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 <stdlib.h> | |
#include <memory.h> | |
#include <time.h> | |
#include "genann.h" | |
static void | |
bin(int n, double* d) { | |
int i; | |
memset(d, 0, sizeof(double)*10); |
This file contains 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
package main | |
import ( | |
"fmt" | |
"log" | |
. "gorgonia.org/gorgonia" | |
"gorgonia.org/tensor" | |
) |
This file contains 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
using System; | |
namespace foo | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Console.WriteLine("Hello World!"); | |
} |
This file contains 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
set -g default-terminal "xterm-256color" | |
set-option -ga terminal-overrides ",xterm-256color:Tc" | |
set -g mouse on | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
run -b '~/.tmux/plugins/tpm/tpm' | |
set -g @plugin 'odedlaz/tmux-onedark-theme' |
This file contains 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
runtime/doc/todo.txt:5820:- Add an option to whitelist options that are allowed in a modeline. This | |
runtime/syntax/gnash.vim:84:syn match GnashKeyword '\<whitelist\>' | |
runtime/syntax/muttrc.vim:429: \ mailto_allow mime_lookup my_hdr pgp-hook push score sidebar_whitelist source | |
runtime/syntax/muttrc.vim:432: \ unsidebar_whitelist | |
runtime/syntax/neomuttrc.vim:639: \ setenv sidebar_whitelist source subjectrx subscribe-to tag-formats | |
runtime/syntax/neomuttrc.vim:642: \ unmy_hdr unscore unsetenv unsidebar_whitelist unsubjectrx unsubscribe-from | |
runtime/syntax/pfmain.vim:390:syntax keyword pfmainConf postscreen_dnsbl_whitelist_threshold | |
runtime/syntax/pfmain.vim:413:syntax keyword pfmainConf postscreen_whitelist_interfaces | |
runtime/syntax/pfmain.vim:1183:syntax match pfmainRef "$\<postscreen_dnsbl_whitelist_threshold\>" | |
runtime/syntax/pfmain.vim:1206:syntax match pfmainRef "$\<postscreen_whitelist_interfaces\>" |