- Retrieving time zones from :
/usr/share/zoneinfo/
- OS : linux
- Total timezone ids : 608
GMT+00:00 Africa/Abidjan
GMT+00:00 Africa/Accra
GMT+03:00 Africa/Addis_Ababa
package main | |
import ( | |
"fmt" | |
"net/url" | |
"strings" | |
) | |
func main() { | |
dsnStrings := []string{ |
package main | |
import "fmt" | |
const ( | |
BATCH_COUNT = 5 | |
) | |
func loopSum(s []int) int { | |
sum := 0 |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<script> | |
L_NO_TOUCH = false; | |
L_DISABLE_3D = false; | |
</script> |
Dashboard | URL |
---|---|
PVC Metrics | [kubernetes-pvc-metrics.json][1] |
Pods Metrics (Overall) | [kubernetes-pod-metrics-overall.json][2] |
Pods Metrics (Detailed) | [kubernetes-pod-metrics-detailed.json][3] |
Node Metrics (Overall) | [kubernetes-node-metrics-overall.json][4] |
Node Metrics (Detailed) | [kubernetes-node-metrics-detailed.json][5] |
package main | |
import ( | |
"fmt" | |
"regexp" | |
"strings" | |
) | |
func toKebabCase(s string) string { | |
// Regular expression to match non-alphanumeric characters |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
#!/usr/bin/env bash | |
# require: git version > 2.3 | |
# require: `db/letsencrypt` existed in git repo | |
if [[ -z "$CERTBOT_DOMAIN" ]] || [[ -z "$CERTBOT_VALIDATION" ]]; then | |
echo '$CERTBOT_DOMAIN and $CERTBOT_VALIDATION environment variables required.' | |
fi | |
source /etc/letsencrypt/dns-auth.conf |
# | |
# CORS header support | |
# | |
# One way to use this is by placing it into a file called "cors_support" | |
# under your Nginx configuration directory and placing the following | |
# statement inside your **location** block(s): | |
# | |
# include cors_support; | |
# | |
# As of Nginx 1.7.5, add_header supports an "always" parameter which |
import com.sun.net.httpserver.HttpExchange; | |
import com.sun.net.httpserver.HttpHandler; | |
import com.sun.net.httpserver.HttpServer; | |
import java.io.IOException; | |
import java.io.OutputStream; | |
import java.net.InetSocketAddress; | |
public class SimpleHttpServer { | |
public static void main(String[] args) throws IOException { |