apt install php7.2-mysql php7.2-dom php7.2-curl
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar
php wp-cli.phar --info
chmod +x wp-cli.phar
sudo mv wp-cli.phar /usr/local/bin/wp
wp --info
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 { NextResponse } from 'next/server' | |
import type { NextRequest } from 'next/server' | |
import { verifyToken } from '@clerk/backend' | |
interface JwtPayload { | |
exp: number; | |
fva?: [number, number] | undefined; | |
iat: number; | |
iss: string; | |
nbf: number; |
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
export const TypeColor = [ | |
'low', | |
'info', | |
'high', | |
'critical', | |
undefined, | |
] as const; | |
export type TypeColor = (typeof TypeColor)[number]; | |
// Guard 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
type BatchFunc func(start, end int) error | |
const ( | |
MaxBulkDelete = 1000 | |
MaxBatchSize = 25 | |
) | |
func (s service) BulkDelete(ctx context.Context, businessMetrics []*vanalytics_v1.DeleteBusinessMetricRequest) (*vanalytics_v1.DeleteMultiBusinessMetricsResponse, error) { | |
response := &vanalytics_v1.DeleteMultiBusinessMetricsResponse{} |
I had a machine crash, and needed to setup another one with SSH access. I got the console login ok, but no way to paste my public key there. Just spent a whole day trying to find a way to do this.
My solution, finally was to put the public key on a public dropbox folder, then in the console, use:
curl 'https://dl.dropbox.....' > temp1
cat temp1 >> .ssh/authorized_keys
- Python 3.7+
- VirtualEnv
- Poetry (https://poetry.eustace.io/) // Package and dependency manager
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
image: google/cloud-sdk:latest | |
stages: | |
- deploy | |
#################################################################################################### | |
# DEPLOY | |
# | |
.deploy_template: &deploy_template_def | |
stage: deploy |
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
// { | |
// "id": 4, | |
// "name": "Nikola Tesla", | |
// "branch": "0001", | |
// "branchVerificationDigit": "string", | |
// "account": "1256720", | |
// "accountVerificationDigit": 3, | |
// "phone": "11 95555-5555", | |
// "email": "[email protected]", | |
// "apiMetadata": { |
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
export default function productList(products) { | |
const element = document.getElementById('product-list'); | |
// map of products | |
let productItem = products.map(product => ` | |
<div class="product-item"> | |
<h1 class="product-title">${product.productVariants[0].title}</h1> | |
<img class="product-image" src="${product.productVariants[0].imageUrl}" alt="${product.productVariants[0].title}"> | |
<p class="product-price">${product.productVariants[0].price}</p> |
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 { NgModule } from '@angular/core'; | |
import { | |
MatButtonModule, | |
MatSnackBarModule, | |
MatCardModule, | |
MatInputModule, | |
MatCheckboxModule, | |
MatIconModule, | |
MatSidenavModule, | |
MatSelectModule, |
NewerOlder