Skip to content

Instantly share code, notes, and snippets.

View yuki-kimoto's full-sized avatar

Yuki Kimoto yuki-kimoto

View GitHub Profile

pjaxのメモ

window.history

  • go()
  • back()
  • forward()
  • pushState()
@jehiah
jehiah / git-branch-status
Last active March 21, 2024 12:39
show git ahead/behind info for branches
moved to github --> https://github.com/bill-auger/git-branch-status/
#!/usr/bin/env perl
use Mojolicious::Lite;
use EV;
use AnyEvent;
# Simple delayed rendering
get '/' => sub {
my $self = shift;
my $w;
$w = AE::timer 3, 0, sub {