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> | |
int main(void){ | |
(*********printf)("Hello world!!\n"); | |
} |
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
:black_square_for_stop::black_square_for_stop::black_square_for_stop::black_square_for_stop::black_square_for_stop::black_square_for_stop::black_square_for_stop::black_square_for_stop::black_square_for_stop::black_square_for_stop::black_square_for_stop: | |
:black_square_for_stop::joy::white_large_square::white_large_square::package::package::package::white_large_square::white_large_square::white_large_square::black_square_for_stop: | |
:black_square_for_stop::white_large_square::black_square_for_stop::package::black_square_for_stop::package::black_square_for_stop::package::black_square_for_stop::white_large_square::black_square_for_stop: | |
:black_square_for_stop::white_large_square::white_large_square::package::package::package::white_large_square::package::white_large_square::package::black_square_for_stop: | |
:black_square_for_stop::package::black_square_for_stop::white_large_square::black_square_for_stop::white_large_square::black_square_for_stop::package::black_square_for_stop::white_large_square::black_square_for_st |
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
/* | |
* https://folio-sec.com/mypage/history/balance を開いて開発者ツールを開いてこのスクリプトをコピペしてください | |
*/ | |
function waitMottoMiru(completion) { | |
setTimeout(function() { | |
var mottoMiru = document.querySelectorAll("div[class*=\"More__more\"] > button") | |
if (mottoMiru.length == 0) { | |
completion(); | |
return; |
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
struct Hoge<T> { | |
let t: T | |
init(t: T) { | |
self.t = t | |
} | |
} | |
protocol FooProtocol { | |
} |
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
import UIKit | |
class Counter { | |
let manager = UndoManager() | |
var count = 0 | |
@objc func increment() { | |
count += 1 | |
manager.registerUndo(withTarget: self, selector: #selector(Counter.decrement), object: nil) | |
} |
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
# .github/workflows/main.yml | |
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: macOS-10.14 | |