2015.9.30(水) 歌舞伎座.tech 番外編「C++11/14コア言語」出版記念
このページはTwitterのログを編集したものです。
アスキードワンゴ編集部 編集長 鈴木嘉平氏 『技術書を出版するには』
| # MS Agent | |
| # https://msdn.microsoft.com/en-us/library/ms695784(v=vs.85).aspx | |
| # Animation Lists for the Characters Available from Microsoft | |
| # https://msdn.microsoft.com/en-us/library/ms695821(v=vs.85).aspx | |
| Alert | |
| CheckingSomething * | |
| Congratulate | |
| DeepIdle1 | |
| EmptyTrash | |
| Explain |
| DEBUG?=1 | |
| SRCS=$(wildcard *.cpp) | |
| OBJS=$(SRCS:.cpp=.o) | |
| DEPENDS=Makefile.depends | |
| BOOST_PATH=$(shell brew --prefix boost) | |
| CXXFLAGS=-std=c++14 -W -Wall -I$(BOOST_PATH) | |
| LDFLAGS=-L$(BOOST_PATH)/lib |
2015.9.30(水) 歌舞伎座.tech 番外編「C++11/14コア言語」出版記念
このページはTwitterのログを編集したものです。
アスキードワンゴ編集部 編集長 鈴木嘉平氏 『技術書を出版するには』
| 更新: | 2022-03-18 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2022.1 |
| URL: | http://voluntas.github.io/ |
| # 原則として開く用語。修正前→修正後 | |
| 敢えて→あえて | |
| 当たって→あたって | |
| 余り→あまり | |
| 予め→あらかじめ | |
| 有り→あり | |
| 或いは→あるいは | |
| 如何→いかが | |
| 幾つか→いくつか | |
| 致し→いたし |
| import java.util.Set; | |
| import java.util.concurrent.ConcurrentHashMap; | |
| public class HelloCovariance { | |
| public static void main(String[] args) { | |
| ConcurrentHashMap<String, String> properties = new ConcurrentHashMap<>(); | |
| Set<String> keySet = properties.keySet(); | |
| } | |
| } |
http://tabelog.com/tokyo/A1310/A131004/13110601/
なんと激ウマな牛丼もあるらしい。
| // Just before switching jobs: | |
| // Add one of these. | |
| // Preferably into the same commit where you do a large merge. | |
| // | |
| // This started as a tweet with a joke of "C++ pro-tip: #define private public", | |
| // and then it quickly escalated into more and more evil suggestions. | |
| // I've tried to capture interesting suggestions here. | |
| // | |
| // Contributors: @r2d2rigo, @joeldevahl, @msinilo, @_Humus_, | |
| // @YuriyODonnell, @rygorous, @cmuratori, @mike_acton, @grumpygiant, |
| fizz = function f() { | |
| fizz = function () { | |
| fizz = function () { | |
| fizz = f | |
| return "Fizz" | |
| } | |
| } | |
| } | |
| buzz = function f() { |
Dear C++ library writer,
If your library forces me to use new all over, I will hate you.
If your library has types with bogus values, I will hate you.
If the documentation for your library gets the terminology of its own domain wrong, I will hate you.
If I say "My God, it's full of stars!" when I see the function signatures in your library, I will hate you.