This file contains hidden or 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
| % LANG=C stow -d /home/don/local/stow -S mono-git --verbose=3 | |
| stow dir is /usr/home/don/local/stow | |
| stow dir path relative to target /home/don/local is ../../../usr/home/don/local/stow | |
| cwd now /home/don/local | |
| cwd restored to /usr/home/don/src/mono-git/_build_ | |
| cwd now /home/don/local | |
| stow: ERROR: The stow directory ../../../usr/home/don/local/stow does not contain package mono-git (No such file or directory) | |
| [1] 62559 exit 2 LANG=C stow -d /home/don/local/stow -S mono-git --verbose=3 |
This file contains hidden or 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
| # GitHubからcloneする | |
| git clone git://github.com/mono/mono.git | |
| # submoduleを更新する (これを忘れるとmakeの途中でエラーになる) | |
| git submodule init | |
| git submodule update | |
| # configureを生成する | |
| NOCONFIGURE=1 ./autogen.sh |
This file contains hidden or 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
| #include <fstream> | |
| int main() | |
| { | |
| static const char data[1] = {0x0a}; | |
| std::ofstream ofs; | |
| ofs.open("out.bin"); | |
| ofs.write(data, sizeof data); | |
| ofs.close(); |
This file contains hidden or 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
| @namespace url(http://www.w3.org/1999/xhtml); | |
| @-moz-document domain("mruby-master-changes.hatenablog.com") { | |
| div.entry-content > h1 { | |
| font-size: 100%; | |
| } | |
| } |
This file contains hidden or 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
| --- sysdep.h Sun Aug 29 18:24:57 2010 | |
| +++ sysdep.h Tue Mar 11 21:34:56 2014 | |
| @@ -19,7 +19,7 @@ | |
| #define MSGPACK_SYSDEP_H__ | |
| -#ifdef _MSC_VER | |
| +#if _MSC_VER <= 1600 | |
| typedef __int8 int8_t; | |
| typedef unsigned __int8 uint8_t; |
This file contains hidden or 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
| --- ext/fiddle/extconf.rb~ 2014-06-30 01:59:36.000000000 +0900 | |
| +++ ext/fiddle/extconf.rb 2014-11-21 11:57:08.361740300 +0900 | |
| @@ -11,6 +11,10 @@ | |
| $defs.push(%{-DRUBY_LIBFFI_MODVERSION=#{ '%d%03d%03d' % ver }}) | |
| end | |
| +if enable_config('static-libffi', false) | |
| + $defs.push('-DFFI_BUILDING') | |
| +end | |
| + |
This file contains hidden or 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
| using UnityEngine; | |
| using System.Collections; | |
| public class AudioObjectController : MonoBehaviour | |
| { | |
| public AudioClip _audioClip; | |
| // Use this for initialization | |
| void Start() | |
| { |
This file contains hidden or 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
| Homebrew build logs for subversion on macOS 10.11.6 | |
| Build date: 2017-06-18 19:19:19 |
This file contains hidden or 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
| using System; | |
| class Base | |
| { | |
| public int i; | |
| public Action act; | |
| } | |
| class A : Base | |
| { |
This file contains hidden or 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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <x68k/dos.h> | |
| #include <x68k/iocs.h> | |
| static int count = 0; | |
| static void print_key_info(unsigned int keysns, unsigned int mod, unsigned char *buf, int len) | |
| { | |
| ++count; |