- Create a new branch and add all of my requirements
- Make a pull request to master
- All of the new requirements are easily shown in the gitlab pull request
- Reviewers would add their comments in gitlab to specific lines.
- Developers would be able to comment back and forth in the comment section of the pull request and then make fixes
- Reviewers can then verify once a fix has been made (Add a new comment to the line saying it is fixed?)
- All changes have been accepted so the branch is merged into master
This file contains 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
% platexで文字の置換 https://ja.stackoverflow.com/questions/53898/platex%E3%81%A7%E6%96%87%E5%AD%97%E3%81%AE%E7%BD%AE%E6%8F%9B をexpl3でやってみる。 | |
% おそらくenvironの制限で、この書き方だとinstead環境のネストには対応していない。 | |
% xparseの新しい引数指定オプションbを使うと環境の本体がとれて、これだとうまくいくかもしれない。 | |
\documentclass[uplatex]{jsarticle} | |
\usepackage{xparse} | |
\usepackage{environ} | |
\ExplSyntaxOn |
This file contains 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
<?php | |
ini_set('mbstring.language', 'Russian'); | |
function db(){ | |
static $db = null; | |
if(!$db){ | |
$db = new SQLite3(__DIR__.'/contacts2.db'); | |
$db->busyTimeout(60*60*1000); |
This file contains 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
:: Name: mycygwininst.cmd | |
:: Purpose: Downloads and Installs Cygwin with custom packages | |
:: Author: [email protected] | |
:: Revision: 20161106 - initial version | |
@ECHO OFF | |
SETLOCAL ENABLEEXTENSIONS | |
SET _script=%~n0 | |
SET _parentdir=%~dp0 |
This file contains 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
require "fiddle/import" | |
require 'fiddle/types' | |
# オリジナル(Win32APIライブラリを使う版)はこちら | |
# https://rubyist.g.hatena.ne.jp/edvakf/20110405/1301973681 | |
module WIN32API | |
extend Fiddle::Importer | |
dlload 'C:\\Windows\\System32\\kernel32.dll' | |
include Fiddle::Win32Types | |
extern 'DWORD GetCurrentProcessId()' |
This file contains 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
@ECHO OFF | |
REM Cygwin automatic installer | |
REM Copyright (c) 2013-2015 Koichi OKADA. All rights reserved. | |
REM This script is distributed under the MIT license. | |
REM http://www.opensource.org/licenses/mit-license.php | |
SETLOCAL | |
CD %~dp0 | |
This file contains 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
require 'cgi' | |
class String | |
def extract( token ) | |
self.scan( /#{token}:(.*)/ ).flatten.first | |
end | |
end | |
puts "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\" ?>\n<smses>\n" |
This file contains 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
RewriteEngine On | |
# If the user is asking for the fullsite, set a cookie, remove the query, and stop. | |
RewriteCond %{QUERY_STRING} ^fullsite$ | |
RewriteRule ^/?(.*)$ http://domain.com/$1? [L,CO=fullsite:yes:.domain.com] | |
# If the user is asking for the mobilesite, set a cookie, remove the query, redirect and stop. | |
RewriteCond %{QUERY_STRING} ^mobilesite$ | |
RewriteRule ^/?(.*)$ http://m.domain.com/$1? [L,CO=fullsite:no:.domain.com] |
This file contains 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
# RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com | |
# defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below) | |
module Player | |
describe MovieList, "with optional description" do | |
it "is pending example, so that you can write ones quickly" | |
it "is already working example that we want to suspend from failing temporarily" do | |
pending("working on another feature that temporarily breaks this one") |
This file contains 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
ASM= asx8051 | |
CC= sdcc | |
BOOTLOADER_ADDRESS=0x3000 | |
OUTPUT_DIR= build | |
.PHONY: $(OUTPUT_DIR) | |
.SUFFIXES: | |
.SUFFIXES: .asm .c .ihx .hex .rel |
NewerOlder