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
// | |
// MixiSampleClass.h | |
// TrainingObjectiveC | |
// | |
// Created by masai on 2015/06/09. | |
// Copyright (c) 2015年 masai. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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
dependencies { | |
... | |
provided 'org.projectlombok:lombok:1.12.2' | |
} |
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
package jp.masazdream.ds; | |
import lombok.Data; | |
/** | |
* Lombokのサンプルクラス | |
* | |
* @author masai | |
* | |
*/ |
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
# brew install htop [/usr/local/Cellar/tbb/4.3-20140724/include/tbb] | |
==> Downloading https://github.com/max-horvath/htop-osx/archive/0.8.2.2.tar.gz | |
######################################################################## 100.0% | |
==> ./autogen.sh | |
==> ./configure --prefix=/usr/local/Cellar/htop-osx/0.8.2.2 | |
==> make install DEFAULT_INCLUDES='-iquote .' | |
==> Caveats | |
htop-osx requires root privileges to correctly display all running processes. | |
You can either run the program via `sudo` or set the setuid bit: |
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
# brew install tbb [/Library/Frameworks] | |
==> Downloading https://www.threadingbuildingblocks.org/sites/default/files/software_releases/source/tbb43_20140724oss_src.tgz | |
######################################################################## 100.0% | |
==> make tbb_build_prefix=BUILDPREFIX compiler=clang arch=intel64 | |
/usr/local/Cellar/tbb/4.3-20140724: 104 files, 1.9M, built in 4.2 minutes | |
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
// | |
// tbb_intro.cpp | |
// CplusplusPractice | |
// | |
// Created by masai on 2015/05/31. | |
// Copyright (c) 2015年 masai. All rights reserved. | |
// | |
#include <iostream> | |
#include <cmath> |
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
// | |
// stringstream.cpp | |
// CplusplusPractice | |
// | |
// Created by masai on 2015/05/30. | |
// Copyright (c) 2015年 masai. All rights reserved. | |
// | |
#include <iostream> | |
#include <string> |
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
// | |
// limits.cpp | |
// CplusplusPractice | |
// | |
// Created by masai on 2015/05/19. | |
// Copyright (c) 2015年 masai. All rights reserved. | |
// | |
#include <iostream> | |
#include <limits> |
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
// | |
// minmax.cpp | |
// CplusplusPractice | |
// | |
// Created by masai on 2015/05/29. | |
// Copyright (c) 2015年 masai. All rights reserved. | |
// | |
#include <iostream> | |
#include <vector> |
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
// | |
// swap.cpp | |
// CplusplusPractice | |
// | |
// Created by masai on 2015/05/28. | |
// Copyright (c) 2015年 masai. All rights reserved. | |
// | |
#include <iostream> | |
#include <string> |