$(SolutionDir)build\bin-$(PlatformName)\
$(SolutionDir)build\lib-$(PlatformName)\
| find . -type f \( -name "*.cpp" -o -name "*.c" -o -name "*.cxx" -o -name "*.h" \) -print | xargs -n 32 cat | wc -l |
| $script_dir = Split-Path -parent $MyInvocation.MyCommand.Path | |
| $embedded_dir = Join-Path $(Split-Path -parent $script_dir) "embedded" | |
| $ruby = Join-Path $embedded_dir "bin/ruby" | |
| $vagrant_executable = Join-Path $embedded_dir "gems/bin/vagrant" | |
| $processStartInfo = New-Object System.Diagnostics.ProcessStartInfo | |
| $processStartInfo.FileName = $ruby | |
| $processStartInfo.WorkingDirectory = (Get-Location).Path |
| /* | |
| * paths.cpp: | |
| * | |
| * Author(s): objectx | |
| */ | |
| #include "common.h" | |
| #include "../paths.h" | |
| std::string GetBaseName (const std::string &s) { | |
| auto pos = s.find_last_of ('\\') ; |
| $mydir = Split-Path -parent $MyInvocation.MyCommand.Path | |
| $work_dir = [Environment]::GetFolderPath("MyDocuments") | |
| function start_process () { | |
| $veracity = Join-Path $(Get-Item HKLM:\Software\Sourcegear\Veracity).GetValue("InstallPath") "vv.exe" | |
| $processStartInfo = New-Object System.Diagnostics.ProcessStartInfo | |
| $processStartInfo.FileName = $veracity | |
| $processStartInfo.WorkingDirectory = $work_dir |
| blob | |
| mark :1 | |
| data 0 | |
| reset refs/heads/master | |
| commit refs/heads/master | |
| mark :2 | |
| author Masashi Fujita <objectxtreme@gmail.com> 1351756400 +0900 | |
| committer Masashi Fujita <objectxtreme@gmail.com> 1351756400 +0900 | |
| data 16 |
| A revolution broke out. And everything became to an end. The troubled country seemed to be finished by the death of the wicked machines. But the peace did not come. Because The NINJA WARRIORS, they are the immortal murder machines. |
| [objectx] | |
| # Scheme version | |
| VERSION=21 | |
| # Associated symbol coloring | |
| ASSOCIATED_SYMBOL_SCHEME=object_symbols | |
| # | |
| # suffixes: | |
| # fg: Foreground Color | |
| # bg: Background Color | |
| # ff: Font Flags |
| #include <sys/types.h> | |
| void copy (char *dst, char *src, size_t size) { | |
| if (size == 0) { | |
| return ; | |
| } | |
| size_t sz = size / 4 ; | |
| switch (size % 4) { | |
| while (sz-- != 0) { | |
| default: |