Skip to content

Instantly share code, notes, and snippets.

View pgmot's full-sized avatar
🏠
Working from home

mot pgmot

🏠
Working from home
View GitHub Profile
@komiyake
komiyake / nageru.rb
Last active October 31, 2015 08:13
大学生協(https://mp.seikyou.jp/mypage/) の購買履歴をMoneyForwardに投げる.nkfコマンド必要です
#!/usr/bin/ruby
# coding: utf-8
require 'mechanize'
require 'openssl'
require 'nokogiri'
require 'io/console'
class MoneyForward
def initialize
@agent = Mechanize.new{|a| a.ssl_version, a.verify_mode = "SSLv23", OpenSSL::SSL::VERIFY_NONE}
@ryosms
ryosms / GitLab4.1onUbuntu12.04.md
Last active December 11, 2015 17:09
さくらのVPSにUbuntu12.04を突っ込んでGitLab 4.1を入れる手順

1. Ubuntuのインストール

  • さくらの [VPSコントロールパネル][vps_home] から OS再インストールカスタムOSインストールへ

  • カスタムOSインストールOS選択Ubuntu 12.04 amd64 を選択

  • 注意事項を読んで 確認 ボタン → 実行 ボタン

  • VNCコンソールでインストーラーが起動するので [インストールガイド][install_guid] を参考にインストールを進める

@uasi
uasi / git-svn.markdown
Last active January 16, 2025 09:28
git-svn の使い方メモ

git-svn の使い方メモ

git-svn の使い方をメモする。他によいプラクティスがあれば指摘していただけるとありがたい。

用語

SVN のブランチと git のブランチが混在しているため、ここではブランチという語を以下のように区別する。

  • ブランチ、 SVN ブランチ:$SVN_REPO/branches 以下にあるディレクトリ
  • ローカルブランチ:git のローカルブランチ
  • リモートブランチ:git のリモートブランチ