2015.9.30(水) 歌舞伎座.tech 番外編「C++11/14コア言語」出版記念
このページはTwitterのログを編集したものです。
アスキードワンゴ編集部 編集長 鈴木嘉平氏 『技術書を出版するには』
2015.9.30(水) 歌舞伎座.tech 番外編「C++11/14コア言語」出版記念
このページはTwitterのログを編集したものです。
アスキードワンゴ編集部 編集長 鈴木嘉平氏 『技術書を出版するには』
| 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 |
| # 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 |
| the 285850 | |
| of 82114 | |
| is 79278 | |
| a 78948 | |
| to 74413 | |
| this 61625 | |
| if 52123 | |
| in 36277 | |
| and 35898 | |
| be 35465 |
Chrome ExtensionのLive HTTP Headersを調査した。Firefox用のものではない。Firefox用のものではない。
11/7追記
Summary in english.
| // ==UserScript== | |
| // @name :don: - スラングにabbrつけるやつ | |
| // @namespace https://github.com/unarist/ | |
| // @version 0.21.1 | |
| // @author unarist | |
| // @match https://mstdn.maud.io/* | |
| // @grant none | |
| // @downloadURL https://gist.github.com/unarist/ce93c77eee6ff9bf51491ff06a3109d3/raw/mastodon-add-abbr.user.js | |
| // @noframes | |
| // ==/UserScript== |
| /** | |
| * @file endianness.h | |
| * @brief Convert Endianness of shorts, longs, long longs, regardless of architecture/OS | |
| * | |
| * Defines (without pulling in platform-specific network include headers): | |
| * bswap16, bswap32, bswap64, ntoh16, hton16, ntoh32 hton32, ntoh64, hton64 | |
| * | |
| * Should support linux / macos / solaris / windows. | |
| * Supports GCC (on any platform, including embedded), MSVC2015, and clang, | |
| * and should support intel, solaris, and ibm compilers as well. |