This file contains 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
import SwiftUI | |
// isActive of NavigationLink is not work when using List with empty container. | |
struct ContentView: View { | |
@State var isSubviewDisplayed: Bool = false | |
@State var array: [String] = [] | |
var body: some View { | |
NavigationView { | |
List(array, id: \.self) { _ in | |
NavigationLink( |
This file contains 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
/* | |
* Change from https://gist.github.com/unki2aut/4ac81c33be2e8f121e80a26eba1735d7 | |
* - Use top level await (Node.js v14.8.0+) | |
* - To use top level await, you need to write a script as ES Modules | |
* - Set chokidar options to avoid duplicate building | |
* - Define NODE_ENV (For React) | |
* - Add API proxy setting by using proxy-middleware | |
*/ | |
import chokidar from "chokidar"; | |
import esbuild from "esbuild"; |
This file contains 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
select time || ':00' as time, name, value | |
from ( | |
values | |
(timestamptz '2020-07-22 09:00:00 UTC', 'b', 3) | |
, (timestamptz '2020-07-22 10:00:00 UTC', 'a', 1) | |
, (timestamptz '2020-07-22 10:00:00 UTC', 'b', 2) | |
) as t (time, name, value) | |
; |
This file contains 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
select * | |
from ( | |
values | |
(timestamptz '2020-07-22 09:00:00 UTC', 3) | |
, (timestamptz '2020-07-22 10:00:00 UTC', 1) | |
, (timestamptz '2020-07-22 08:00:00 UTC', 2) | |
) as t (time, value) | |
; |
This file contains 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
# -*- coding: utf-8 -*- | |
# I made it because below related libraries doesn't work with python 3.7. | |
# | |
# - https://github.com/zcmarine/powerkube | |
# - https://github.com/so0k/powerline-kubernetes | |
# | |
# NOTE: I don't understand completely how to use powerline watcher. | |
from kubernetes_py import K8sConfig |
This file contains 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
# -*- coding: utf-8 -*- | |
def helloworld(pl): | |
return [{ | |
'contents': 'こんにちは、世界', | |
'highlight_groups': ['information:regular'] | |
}] |
This file contains 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://www.scala-sbt.org/1.x/docs/Launcher-Configuration.html | |
# https://storage-download.googleapis.com/maven-central/index.html | |
[repositories] | |
local | |
maven-central: https://maven-central-asia.storage-download.googleapis.com/repos/central/data/ | |
lightbend-ivy-releases: https://dl.bintray.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly | |
#typesafe-ivy-releases: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly | |
sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots |
This file contains 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://www.scala-sbt.org/release/docs/Proxy-Repositories.html | |
# http://www.scala-sbt.org/release/docs/Launcher-Configuration.html | |
# https://storage-download.googleapis.com/maven-central/index.html | |
[repositories] | |
local | |
typesafe-ivy-releases: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly | |
google-maven-central: https://maven-central-asia.storage-download.googleapis.com/repos/central/data/ | |
maven-central | |
sonatype-snapshots: https://oss.sonatype.org/content/repositories/snapshots |
This file contains 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
# WARNING: This script has an enormous vulnerability!!!!!! | |
require 'sinatra' | |
get '/' do | |
erb <<"HTML" | |
<form action="upload" method="POST" enctype="multipart/form-data"> | |
<input type="file" name="file" /> | |
<input type="submit" value="Upload" /> | |
</form> |
This file contains 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
curl -I http://search.yahoo.co.jp/ | |
HTTP/1.1 500 Internal Server Error | |
Server: nginx | |
Date: Mon, 13 Oct 2014 11:50:27 GMT | |
Content-Type: text/html | |
Content-Length: 186 | |
Connection: close |
NewerOlder