Keyword research:
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
// app/(dashboard)/journals/new/pages.tsx | |
import { | |
ResizableHandle, | |
ResizablePanel, | |
ResizablePanelGroup, | |
} from "@/components/ui/resizable"; | |
const NewJournal = () => { | |
return ( |
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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: nginx-deployment | |
labels: | |
app: nginx | |
spec: | |
replicas: 10 | |
selector: | |
matchLabels: |
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 url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap'); | |
*, | |
*::before, | |
*::after { | |
margin: 0; | |
padding: 0; | |
outline: 0; | |
box-sizing: border-box; | |
text-decoration: none; | |
list-style: none; |
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 url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap'); | |
*, | |
*::before, | |
*::after { | |
margin: 0; | |
padding: 0; | |
outline: 0; | |
box-sizing: border-box; | |
text-decoration: none; |
I hereby claim:
- I am davidshare on github.
- I am davidessien (https://keybase.io/davidessien) on keybase.
- I have a public key ASAHz1FqtTa4qUwjpIBGO5Np6KcusJS8fNoNM9pgirHLHAo
To claim this, I am signing this object:
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
#!/bin/bash | |
input="env_file_path" | |
secret_name="my-secret_name" | |
rm ./deployment_env.yaml ./secret_pair.txt | |
while IFS='=' read -r key value | |
do | |
if [[ ! -z "$key" && ! -z "$value" && "$key" != "#"* ]] | |
then | |
encoded=$(echo -n "$value" | base64 -w0) |
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
```#!groovy | |
// define the images and resources to be used in running the pipeline | |
pipeline { | |
agent { | |
kubernetes { | |
label 'proj-backend-agent' | |
defaultContainer 'jnlp' | |
yaml """ | |
apiVersion: v1 |