- アプリケーション開発の言語でIaCするCDKじゃないやつ
Define infrastructure in JavaScript, TypeScript, Python, Go, or any .NET language, including C#, F#, and VB.
- TypeScript事例が多い
- 個人は無料 https://www.pulumi.com/pricing/
Define infrastructure in JavaScript, TypeScript, Python, Go, or any .NET language, including C#, F#, and VB.
| // (c) https://qiita.com/tasogarei/items/fea4d392dbd4449980f7 | |
| fun main(args: Array<String>) { | |
| (1..100).forEach{ | |
| when { | |
| it % 15 == 0 -> println("fizzbuzz") | |
| it % 3 == 0 -> println("fizz") | |
| it % 5 == 0 -> println("buzz") | |
| else -> println(it) | |
| } | |
| } |
モバイルDBのRealmっていう製品について、最近の動向を調べた
すぐ消えちゃうチャットからカメラを通じた現実拡張+コミュニケーションアプリとして進化している
Snapは上場後、ユーザーインタフェース(UI)を一般向けに大きく変更したが、それが若者離れの原因になっていた。その後UIの改善やサードパーティによるスタンプやLens開発を可能にするSnap KitやSnap Studioの提供などで軌道を修正してきた。性別を変えたり、大人の顔を子どもの顔に変えたりするLensが好評だった。 https://www.itmedia.co.jp/news/articles/1907/24/news051.html
拡張現実(AR)に活路見出すソーシャル、それは「SnapChat」 – BRIDGE(ブリッジ)
ARと5Gでワンチャンを狙っているというアナリストの記事
活発なRubyユーザーのコミュニティ
高まる中国のRuby熱---上海で初のRuby会議,まつもと氏も講演 | 日経 xTECH(クロステック)
2009年。日本のRubyコミュニティと近い時期に中国コミュニティも活発だった
中国を代表する企業であるECサイトのタオバオ(淘宝網)からは、2名のスピーカーが講演した。タオバオは、社内管理システムでRubyを使っているという。上海近郊の日本企業は、製品のプロトタイプの開発にRubyを使用して、実装はC系の言語で行っている。この会社からは新幹線で1時間以上かけて10名以上のエンジニアが参加した。 https://tech.nikkeibp.co.jp/it/article/COLUMN/20120115/378501/?ST=govtech
| FROM php:fpm-alpine | |
| RUN set -eux && \ | |
| apk update && \ | |
| apk add dpkg && \ | |
| curl -L https://download.newrelic.com/php_agent/release/newrelic-php5-9.2.0.247-linux-musl.tar.gz | tar -C /tmp -zx && \ | |
| NR_INSTALL_USE_CP_NOT_LN=1 NR_INSTALL_SILENT=1 /tmp/newrelic-php5-*/newrelic-install install | |
| # + curl -L https://download.newrelic.com/php_agent/release/newrelic-php5-9.2.0.247-linux-musl.tar.gz |
| signInSuccessWithAuthResult: (authResult, redirectUrl) => { | |
| authResult.user | |
| .getIdToken(false) | |
| .then(idToken => { | |
| // idToken をサーバーへ送ってdecodeしてuserを取り出す!!!! | |
| }); | |
| return false; | |
| } |
| import java.io.{File, PrintWriter} | |
| import org.jsoup.Jsoup | |
| import scalaj.http.BaseHttp | |
| object Main extends App { | |
| def dumpToFile(text: String) = { | |
| val writer = new PrintWriter(new File("dump.md")) | |
| writer.write(text) | |
| } |
| pod 'Firebase' | |
| pod 'FirebaseCore', '~> 5.1.0' | |
| pod 'FirebaseFirestore', '~> 0.16.1' | |
| pod 'FirebaseInAppMessagingDisplay' | |
| pod 'FirebaseInAppMessaging', '~> 0.12.1' |
| 1章 はじめに | |
| 1.1 この本で説明する内容 | |
| 1.1.1 どういうデータを扱うのか | |
| 1.2 なぜPythonをデータ分析に使うのか | |
| 1.2.1 「糊(グルー)」としてのPython | |
| 1.2.2 「2つの言語」問題を解決する | |
| 1.2.3 Pythonを使うべきではないケース | |
| 1.3 必須のPythonライブラリ | |
| 1.3.1 NumPy | |
| 1.3.2 pandas |