tmux Cheat Sheet
Table of Contents
#!/bin/bash | |
#By Nate Flink | |
#Invoke on the terminal like this | |
#curl -s https://gist.github.com/nateflink/9056302/raw/findreplaceosx.sh | bash -s "find-a-url.com" "replace-a-url.com" | |
if [ -z "$1" ] || [ -z "$2" ]; then | |
echo "Usage: ./$0 [find string] [replace string]" | |
exit 1 | |
fi |
/// HttpMethod: | |
/// リクエストのメソッドを定義 | |
/// Enum は Swift っぽくかける Util を使用 | |
class HttpMethod extends Enum<String> { | |
const HttpMethod(String val): super(val); | |
static const HttpMethod GET = const HttpMethod('GET'); | |
static const HttpMethod POST = const HttpMethod('POST'); | |
static const HttpMethod PUT = const HttpMethod('PUT'); | |
static const HttpMethod DELETE = const HttpMethod('DELETE'); |
// function createUser(user) { | |
// user.password = bcryptPassword(user.password) | |
// const userSaved = db.insert(user); | |
// generateConfirmationEmail(user) | |
// } | |
// | |
// | |
// function generateConfirmationEmail(user) { | |
// const key = `${md5(user.email)}.${Random.UUID()}` | |
// db.insertEmailConfirmation(user, key) |
Table of Contents
start new:
tmux
start new with session name:
tmux new -s myname
git log --author="Linus Torvalds" --date=iso | perl -nalE 'if (/^Date:\s+[\d-]{10}\s(\d{2})/) { say $1+0 }' | sort | uniq -c|perl -MList::Util=max -nalE '$h{$F[1]} = $F[0]; }{ $m = max values %h; foreach (0..23) { $h{$_} = 0 if not exists $h{$_} } foreach (sort {$a <=> $b } keys %h) { say sprintf "%02d - %4d %s", $_, $h{$_}, "*"x ($h{$_} / $m * 50); }' | |
const totalTypes = { | |
VIEWS: 2, | |
READS: 3, | |
FANS: 5 | |
}; | |
const getTotal = tableColumn => | |
[ | |
...document.querySelectorAll( | |
`td:nth-child(${tableColumn}) > span.sortableTable-number` |
class MyViewModel: ViewModel() { | |
init { | |
viewModelScope.launch { | |
// Coroutine that will be canceled when the ViewModel is cleared. | |
} | |
} | |
} |
class FriendsFragment : BaseFragment() { | |
override fun layoutId(): Int = R.layout.fragment_friends | |
private lateinit var friendsViewModel: FriendsViewModel | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
appComponent.inject(this) |
class FriendsViewModel @Inject constructor( | |
private val getFriendsUseCase: GetFriendsUseCase | |
) : BaseViewModel() { | |
sealed class FriendsState { | |
object Loading : FriendsState() | |
object Empty : FriendsState() | |
data class Success(val users: List<UserUiModel>) : FriendsState() | |
} |