Rodhos Soft

備忘録を兼ねた技術的なメモです。Rofhos SoftではiOSアプリ開発を中心としてAndroid, Webサービス等の開発を承っております。まずはご相談下さい。

2019-01-01から1年間の記事一覧

使い方メモ

git

ログをみる git log ログの変更内容をみる git -p ログの変更内容を一つ前のものだけみる git -p -1 数値を増やすと何個前までみるか指定できる。

csvの加工

ちょっと進化した。 import csv import pprint import sys import os import glob # usage # python3 transErrorMessage.py def replaceRet(txt: str): return txt.replace("\n", "\\n") def wrapDQ(txt): return "\""+txt+"\"" surfix = "_SEMISELF" def ma…

csvの加工

import csv import pprint import sys # usage # python3 transErrorMessage.py a.csv def replaceRet(txt:str): return txt.replace("\n","\\n") def wrapDQ(txt): return "\""+txt+"\"" surfix = "_hoge" filename = sys.argv[1] with open("./"+filename)…

express-generator-typescript

```cterm npm install express-generator-typescript ```作成 ```cterm npx express-generator-typescript "hello-app" ```hello-appの中に入って実行 ```cterm cd hello-app npm run start-dev ```

hello express

expressをinstallしておく npm install express typeも npm install @types/express import express from "express"; var app = express(); app.get("/", (req, res) => { return res.send("Hello World!"); }); app.listen(3001, () => { console.log("app …

hello node

nodeのtypeを入れておく。 npm install @types/node import * as http from "http" let server:http.Server = http.createServer((req:http.IncomingMessage, res:http.ServerResponse) => { res.writeHead(200, {'Content-Type':'text/plain'}); res.write(…

abc

バージョン確認 node -v v10.16.0 npm -v 6.9.0 typescriptのコンフィグファイル作成 tsc --init npm開始 npm init typescript実験用にhello.ts作成 console.log("hello") トランスパイル tsc 試しに実行してみる。 node hello.js jsの吐き出し先をdistフォ…

文字横に画像

試行錯誤の結果次のようになった。 + (NSAttributedString *)backSymbol { UIImage *image = [UIImage imageNamed:@"backbutton"]; NSTextAttachment *attachment = [[NSTextAttachment alloc] init]; attachment.image = image; NSMutableAttributedString …

delayする実験

#include <iostream> #include "rx-includes.hpp" class Man { public: Man(); ~Man(); void hello(); private: int age; std::string name; }; template <typename T> class AbstBase { public: T hoge; }; class FuncClass { public: FuncClass() : connectStateOb(std::shared_p</typename></iostream>…

分割コンパイル

cpp

hojo.hpp int hello(); hojo.cpp #include "hojo.hpp" int hello() { return 1000; } hello.cpp #include <iostream> #include "hojo.hpp" using namespace std; int main(){ cout << "Hello world." << endl; int x = hello(); cout << x << endl; return 0; } という</iostream>…

最低限webpackを使う

node package.config { "name": "hoge", "version": "1.0.0", "description": "hoge", "main": "index.js", "scripts": { "build": "webpack", "watch": "webpack -w", "test": "echo \"Error: no test specified\" && exit 1" }, "author": "KatagiriSo", "…

ffmpeg

動画変換 https://ffmpeg.org/ それFFmpegで出来るよ! - Qiita ffmpeg -i input.mp4 output.avi

node for mobile調べ

GitHub - JaneaSystems/nodejs-mobile: Full-fledged Node.js on Android and iOSAndroidはV8 JavaScript engineをつかう。 iOSは略sampleがあるので フレームワークをそのsampleに入れるだけで動く。 NodeRunnerというクラスがあるので、それにjsのソースの…

filterに注意

list[]のfilterに渡すクロージャでreturnを書き忘れてもコンパイルが通ってしまう‥。