Skip to content

Instantly share code, notes, and snippets.

View izumin5210's full-sized avatar
🐇

Masayuki Izumi izumin5210

🐇
View GitHub Profile
#include <iostream>
#include <string>
int main()
{
const std::string id = "#3";
std::cout << "id // => " << id << std::endl;
std::cout << "id[0] // => " << id[0] << std::endl;
std::cout << "id.c_str() // => " << id.c_str() << std::endl;
std::cout << "(id.c_str() + 1) // => " << (id.c_str() + 1) << std::endl;
@izumin5210
izumin5210 / file0.txt
Last active December 31, 2016 14:59
趣味Electronアプリの(?:dev)?Dependenciesを晒してみる ref: http://qiita.com/izumin5210/items/e8fd447682c93b629f2b
{
"dependencies": {
"axios": "^0.15.3",
"babel-polyfill": "^6.16.0",
"dexie": "^1.5.1",
"font-awesome": "^4.7.0",
"fuse.js": "^2.6.1",
"immutable": "^3.8.1",
"menubar": "^5.1.0",
"moment": "^2.16.0",
package main
import (
"context"
"fmt"
"reflect"
"sort"
"sync"
"time"
)
require "join_detector_ext"
ActiveRecord::Relation.prepend JoinDetectorExt