vscodeのprettierプラグインのURL

https://esbenp.gallery.vsassets.io/_apis/public/gallery/publisher/esbenp/extension/prettier-vscode/1.5.0/assetbyname/Microsoft.VisualStudio.Services.VSIXPackage

aws上にopenshift originを立てる

この記事を参考に構築 https://registry.terraform.io/modules/literalice/openshift/aws/0.0.10 github.com この手順通りやってるとmake installでエラーがでた module.openshift_platform.null_resource.openshift (remote-exec): ERROR! the playbook: /u…

concourseのresource-type

https://concourse-ci.org/included-resources.html

アプリストアのURL

support.google.com

キャプチャをとってgifを作りたい

qiita.com

react-native run-androidでエラー

windowsで実施 こんなエラーが出る Building and installing the app on the device (cd android && gradlew.bat installDebug)...エラー: メイン・クラスorg.gradle.wrapper.GradleWrapperMainが見つからなかったかロードできませんでしたCould not install…

react nativeアプリをwindowsでandroidシミュレータで動かしたらエラーが出た

こんな感じのエラー unable to load script from assets index.android.bundle 解決策 https://stackoverflow.com/questions/44648466/unable-to-load-script-from-assets-index-android-bundle $ mkdir android/app/src/main/assets $ react-native bundle …

Reduxを学ぶ

http://basic-redux.axlight.com/html/ 電卓アプリで学ぶReact/Redux入門(実装編) - Qiita

jenkinsとgitlabを連携させたい

blog.duck8823.com

Concourse CI を学ぶ

・公式https://concourse.ci/ 公式のチュートリアルはなぜかうまく動かなかった ・このチュートリアルがとても勉強になる https://github.com/starkandwayne/concourse-tutorial

docker-compose

Macでdocker-compose upするまで | hacknote

faviconを取得する

https://www.google.com/s2/favicons?domain=URL

Spring開発環境整備

checkstyle eclipseのプラグインを入れる build.gradleにapplyを追記 以下のファイルの内容をconfig/checkstyle/checkstyle.xmlに配置 https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/sun_checks.xml gradle test の中で自動で実…

pythonをブラウザで書く

macでの話 jupyter notebook これを実行して localhost:8888 にアクセス

Python2系とAnacondaをオンプレ環境でインストール

追記 AnacondaにPythonが含まれていることを知らない時に書いた記事でした PythonはAnacondaの中に含まれているためPythonを個別にインストールする必要はありません Python2系とAnacondaをオンプレ環境でインストール やりたいこと 特殊な事情により以下の…

springbootをサービスとして動かしたい

ishiis.net 59. Installing Spring Boot applications

githubとjenkinsの連携メモ

qiita.com qiita.com

EC2でjenkinsを動かす

これの通りにやったらできた Amazon EC2 に Jenkins をインストールする | まくまく いろいろ ノート

herokuでjavaのバージョン指定

古いplayアプリを動かしたかったんだけどjdkは1.7でないと動かないでもデフォルトで1.8で動いてしまう system.properties というファイルを作ってそこに java.runtime.version=1.7 って書けばOK https://devcenter.heroku.com/articles/java-support#specify…

stylesheetのドキュメント

cssのドキュメントを作りたい stylesheetガイドで検索するといろいろと出てきた どれが今時なのかいまいちわからない ・styledoccohttps://jacobrask.github.io/styledocco/ ・ksshttp://warpspire.com/kss/ ・hologramhttp://trulia.github.io/hologram/ ・…

springbootをproductionで起動

mvn package java -jar target/springboot_sample-1.0.0-SNAPSHOT.jar こんなエラーが出たら target/springboot_sample-1.0.0-SNAPSHOT.jarにメイン・マニフェスト属性がありません pom.xmlにmainメソッドがあるクラスを指定する <properties><start-class>your.package.App</start-class></properties>

javaでファイルをダウンロードしようとしたら日本語ファイル名が文字化ける

headerのContent-Dispositionにいろいろセットする response.addHeader("Content-Disposition", "attachment; filename*=UTF-8''" + URLEncoder.encode(file.getName(), StandardCharsets.UTF_8.name())); Spring Bootで日本語ファイル名のファイルダウンロ…

ios bundle

node node_modules/react-native/local-cli/cli.js bundle --entry-file='index.ios.js' --bundle-output='./ios/myHome/main.jsbundle' --dev=false --platform='ios' --assets-dest='./ios

iosでhttp接続できない

type error network request failedっていうエラーが出てた Info.plistを編集 NSAppTransportSecurityのNSAllowsArbitraryLoadsをtrueにする <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key><true/> </dict>

React Native初心者向けに

この記事がすごくいい ES6の書き方に対応してないけど初心者向けにはとてもいい https://www.raywenderlich.com/126063/react-native-tutorial

http://www2.myhomenavi.com/ http://moneykit.net/visitor/info/info090109_01.html http://iewokau34.com/post-1015

jpaのメソッド名

http://docs.spring.io/spring-data/jpa/docs/current/reference/html/

emacsで行番号を出す

M-x linum-mode

springbootでgroovyを起動する時にポートを指定したい

/usr/local/bin/spring run app.groovy -- --server.port=8090

springbootメモ

いろいろ載ってて参考になりそう Spring Boot 使い方メモ - Qiita Java: Spring Boot で REST なアプリを作ってみる - rakugakibox.net Getting Started · Building a RESTful Web Service with Spring Boot Actuator Spring Boot をはじめてみるよ(Maven …