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
<div className="w-full text-justify"> | |
<strong>PaDi UMKM</strong> (selanjutnya disebut "PaDi UMKM" atau | |
"Layanan" atau "Kami") merupakan platform digital untuk pencarian | |
produk berkualitas yang ditawarkan dan dijual, utamanya oleh Usaha | |
Mikro Kecil dan Menengah, kepada BUMN, Kementerian, Lembaga, | |
Pemerintah Daerah, dan Korporasi dengan konsep <em>marketplace</em> | |
yang di dalamnya terdapat transaksi B2B (<em>Business to Business</em> | |
) dan <em>retail</em> serta dilengkapi dengan fitur pengadaan | |
elektronik (<em>e-Procurement</em>) yang dikelola oleh Perusahaan | |
Perseroan (Persero) PT Telekomunikasi Indonesia Tbk (selanjutnya |
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
tasklist | find "node.exe" | |
taskkill /PID 18836 /F | |
#find port in local | |
netstat -ano | findstr :6379 | |
kill all go | |
taskkill /f /im go.exe |
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
version: '3' | |
# this name will be useful for (e.g.) "docker compose -p" | |
name: redis-local | |
services: | |
redis: | |
image: redis:6.2-alpine | |
restart: always | |
ports: | |
- '6379:6379' |
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
version: '3' | |
name: es_kibana | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:8.3.2 | |
container_name: elasticsearch | |
restart: always | |
volumes: | |
- ./es_data:/usr/share/elasticsearch/data |
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
{"version":1,"resource":"file:///Users/fdn-damar/Desktop/fdn-profile/src/config/database.ts","entries":[{"id":"Ycky.ts","timestamp":1652708009131},{"id":"17PU.ts","source":"undoRedo.source","timestamp":1652708269904}]} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="/static/style.css"> | |
<title>Pub Chat</title> | |
</head> | |
<body> |
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
ERROR Error: certificate has expired | |
at TLSSocket.onConnectSecure (_tls_wrap.js:1498:34) | |
at TLSSocket.emit (events.js:315:20) | |
at TLSSocket.EventEmitter.emit (domain.js:485:12) | |
at TLSSocket._finishInit (_tls_wrap.js:940:8) | |
at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:698:12) { | |
code: 'CERT_HAS_EXPIRED', | |
check this link | |
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
Why would you use this? | |
Promise.any() lets you run a list of promises | |
Concurrently, ignoring any that reject unless all of the promises reject | |
Promise.any([ | |
fetch("https://google.com/").then(() => "google"), | |
fetch("https://apple.com").then(() => "apple"), | |
fetch("https://microsoft.com").then(() => "microsoft"), | |
]) |