こちらはStyled-componentsの使い方、ユースケースを集めた端的なページです。
なにかの問題解決、参考になりましたらスターを押してくださいませ。励みになります。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ perl -MJSON -e 'my $t={test=> 1};warn objToJson($t);warn "$t->{test}";warn objToJson($t);' | |
{"test":1} at -e line 1. | |
1 at -e line 1. | |
{"test":1} at -e line 1. | |
$ perl -MJSON::XS -e 'my $t={test=> 1};warn encode_json($t);warn "$t->{test}";warn encode_json($t);' | |
{"test":1} at -e line 1. | |
1 at -e line 1. | |
{"test":"1"} at -e line 1. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var express = require('express') | |
, http = require('http') | |
, path = require('path') | |
, io = require('socket.io') | |
, connect = require("express/node_modules/connect") | |
, Session = express.session.Session | |
, app = express(); | |
//メモリストアかRedisのどちらかでセッションを保存 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
太郎屋 | |
京のおばんざい | |
http://tabelog.com/kyoto/A2602/A260201/26000639/ | |
醪音 | |
「英勲」の酒蔵の直営店 | |
http://tabelog.com/kyoto/A2602/A260201/26017974/ | |
ななたに | |
地鶏ローストチキン |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
# generate server.xml with the following command: | |
# openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
# run as follows: | |
# python simple-https-server.py | |
# then in your browser, visit: | |
# https://localhost:4443 | |
import BaseHTTPServer, SimpleHTTPServer | |
import ssl |
- ネットーワーク機器のマーケ担当をしてる妻から聞いた、Wi-Fiルータのオススメ(「同僚のメーカー担当ごとに己の”最強”を選んでもらった」とのこと)です
- 「ルーターにはWi-Fiルータだけじゃなく他にもいろいろあるんだよ!これはWi-Fiルータのことね」と言われたのでタイトルを変えました
- 「AXほにゃらら」は規格(AX = Wi-Fi 6)+速度の参考値とのことです
- もともとの文脈: 家庭内の雑談をツイートしたところ( https://twitter.com/__gfx__/status/1464084908091920387 )知人が反応したので妻に「ルータのおすすめ教えてと知人がいってるのでなんか教えて」といって教えてもらったのが元です
- 下にあるv1.md が最初のやつ(2021/11/26)で、このv2.md がホッテントリ入りしたあとの改訂版(2021/11/27)です
追記(2022/05/24):
- TP-Linkはちょいちょいやらかしがあります
OlderNewer