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
| #!/bin/sh | |
| rpm -q --qf "$(rpm --querytags | while read line; do echo "$line: %{$line}"; done)" -p $1 |
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
| <p>Bye</p> |
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
| # /tmp/nodakai/cm01$ ls -R | |
| # .: | |
| # CMakeLists.txt app/ libsrc/ | |
| # | |
| # ./app: | |
| # bow/ wow/ | |
| # | |
| # ./app/bow: | |
| # bow.cpp | |
| # |
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 <iostream> | |
| #include <vector> | |
| #include <vector> | |
| using namespace std; | |
| void pushAll(std::vector<char> &sec, char begin, char end) { | |
| for (char x = begin; x <= end; ++x) | |
| sec.push_back(x); | |
| } |
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
| #!/bin/sh | |
| RSYNC() { | |
| echo rsync -av "$@" | |
| local i | |
| for i in "$@"; do | |
| echo "[$i]" | |
| done | |
| } |
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
| #[repr(i64)] | |
| enum E0 { | |
| A = 18446744073709551615, | |
| B = 18446744073709551614 | |
| } | |
| /* | |
| #[repr(i8)] | |
| enum E1 { | |
| A = 256, |
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
| fn main() { | |
| mod x { | |
| #[cfg(target_pointer_width = "64")] | |
| const X: i32 = 0; | |
| #[allow(dead_code)] | |
| const Y: i32 = X+0; | |
| } | |
| } |
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
| trait Into_<T> { | |
| fn into(self) -> T; | |
| } | |
| impl Into_<i32> for i8 { | |
| fn into(self) -> i32 { self as i32 } | |
| } | |
| impl Into_<i32> for bool { | |
| fn into(self) -> i32 { self as i32 } |
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
| library(stringi) | |
| library(data.table) | |
| library(ggplot2) | |
| library(scales) | |
| Sys.setlocale(category="LC_TIME", "en_US.UTF-8") # strptime | |
| STRPTIME <- "%a %b %d %H:%M:%S EST %Y" | |
| ARGS <- commandArgs(trail = TRUE) |
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
| .PHONY: all clean force | |
| all : app | |
| app : aux.o main.o | |
| $(CC) -o $@ $^ | |
| VPATH=a/aux | |
| aux.o : aux.c |