- アプリケーション開発の言語でIaCするCDKじゃないやつ
Define infrastructure in JavaScript, TypeScript, Python, Go, or any .NET language, including C#, F#, and VB.
- TypeScript事例が多い
- 個人は無料 https://www.pulumi.com/pricing/
import { ref, inject, Ref } from 'vue'; | |
export const CounterKey = Symbol() | |
export type Counter = { | |
count: Ref | |
increment(): void | |
} | |
export function useCounter(initialValue: number): Counter { | |
const count = inject(CounterKey, ref(initialValue)); | |
return { | |
count, |
import {shallowMount} from '@vue/test-utils' | |
import {useCounter} from "@/composables/counter"; | |
const Example = { | |
setup() { | |
return { | |
...useCounter(0), | |
} | |
}, | |
template: `example`, | |
} |
#!/bin/sh | |
# $ ./findlist.bash jack | |
id=$1 | |
COUNTER="" | |
while [ true ] | |
do | |
name="list${COUNTER}" | |
curl -s "https://mobile.twitter.com/search?q=list%3A%40${id}%2F${name}&src=typed_query" | grep -s timeline > /dev/null && echo "list:@${id}/${name} HIT" || echo "list:@${id}/${name} MISS" | |
let COUNTER++ |
第1章 Dockerの復習と「Hello, Kubernetes」 | |
第2章 なぜKubernetesが必要なのか? | |
第3章 Kubernetes環境の選択肢 | |
第4章 APIリソースとkubectl | |
第5章 Workloads APIsカテゴリ | |
第6章 Service APIsカテゴリ | |
第7章 Config&Storage APIsカテゴリ | |
第8章 Cluster APIsカテゴリとMetadata APIsカテゴリ | |
第9章 リソース管理とオートスケーリング | |
第10章 ヘルスチェックとコンテナのライフサイクル |
import Vapor | |
struct MyResponse: Content { | |
let name: String | |
} | |
func routes(_ app: Application) throws { | |
app.get { req in | |
return MyResponse(name: "popo") | |
} | |
} |
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