TypeScript and Playground練習問題集更新情報
WIP
#!/usr/bin/env python | |
from argparse import ArgumentParser | |
import os | |
import subprocess | |
def run(): | |
usage = 'Usage: pretty-output <command_name> [...argv]' | |
argparser = ArgumentParser(usage=usage) | |
argparser.add_argument('command_name', help='Execute command', nargs="*") |
TypeScript and Playground練習問題集更新情報
WIP
日時: | 2024-02-01 |
---|---|
作: | 時雨堂 |
資料 バージョン: | 2024.1 |
GitHub URL: | https://github.com/shiguredo/momo |
製品 URL: | https://momo.shiguredo.jp/ |
更新: | 2018-08-20 |
---|---|
作者: | @voluntas |
バージョン: | 18.8.3 |
URL: | https://voluntas.github.io/ |
import React, { Component } from 'react' | |
import { | |
ART, | |
AppRegistry, | |
StyleSheet, | |
View, | |
Text, | |
Dimensions, | |
Button | |
} from 'react-native' |
If you ever need a mobile application, you probably have an API endpoint to talk to. And if you're doing it right, you should have different environment for your API, usually it'll be: dev, staging, production.
We dont' want to perform test againts the production API. We need a way to teach our app to talk to different API environment. But what is the switch?
The naive way:
日時: | 2023-01-15 |
---|---|
作: | @voluntas |
バージョン: | 2023.1 |
url: | https://voluntas.github.io/ |
この資料は以下の製品の宣伝を含みます。
module.exports = { | |
plugins: ['stylelint-order', 'stylelint-scss'], | |
rules: { | |
indentation: 2, | |
'color-hex-case': 'lower', // hex値は小文字指定(大文字を禁止) | |
'color-hex-length': 'short', // hex値は短い表記(冗長な表記は禁止) | |
'color-named': 'never', // 名前付きカラー指定を禁止 | |
'color-no-invalid-hex': true, // 無効な16進数の色指定を禁止 | |
'function-comma-space-after': 'always-single-line', // 単一行のカンマ後には空白が必要 | |
'function-comma-space-before': 'never', // カンマ前の空白を禁止 |