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
/** | |
* This magically uses batchexecute protocol. It's not documented, but it works. | |
* | |
* Licensed under: MIT License | |
* | |
* Copyright (c) 2024 Ruslan Gainutdinov | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the "Software"), to deal | |
* in the Software without restriction, including without limitation the rights |
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
{ | |
"AF": "Afghanistan", | |
"AX": "Aland Islands", | |
"AL": "Albania", | |
"DZ": "Algeria", | |
"AS": "American Samoa", | |
"AD": "Andorra", | |
"AO": "Angola", | |
"AI": "Anguilla", | |
"AQ": "Antarctica", |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>Locofy element select demo</title> | |
<style type="text/css"> | |
.design-element { | |
border: 1px dashed #8a6dc0; |
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
const IMAGE_EXTENSIONS = ["jpg", "jpeg", "png", "svg", "gif", "ico", "webp", "jp2", "avif"]; | |
/** | |
* Send images as URL over certain threshould. You don't need this for next/Image component. | |
* Alternative to next-images package. | |
* | |
* @type {import('next').NextConfig} | |
**/ | |
module.exports = config => () => { | |
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
import { createRoot } from "react-dom/client"; | |
import React, { | |
forwardRef, | |
useImperativeHandle, | |
useRef, | |
useState | |
} from "react"; | |
export type InputRef = |
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
const dns = require("dns"); | |
/** | |
* Converts MongoDB Atlas connection url (or cluster name) into regular URL, | |
* with initial host randomization. | |
* | |
* Uses so-called DNS Seed List Connection Format | |
* @see https://www.mongodb.com/docs/manual/reference/connection-string/#dns-seed-list-connection-format | |
**/ | |
const convertMongoAtlasConnectionUrl = (url) => |
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
# | |
# Based on offical image from https://nextjs.org/docs/deployment#docker-image | |
# See dockerfile: https://github.com/vercel/next.js/blob/canary/examples/with-docker/Dockerfile | |
# | |
FROM node:16-alpine AS deps | |
RUN apk add --no-cache libc6-compat git curl python3 make g++ | |
WORKDIR /opt/app | |
RUN addgroup --system --gid 1001 app | |
RUN adduser --system --uid 1001 app -h /opt/app |
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
class CdkStack extends Stack { | |
constructor(scope, id, hostname) { | |
super(scope, id, props); | |
const vpc = ec2.Vpc.fromLookup(this, "vpc", { vpcId: process.env.VPC_ID }); | |
const cluster = new ecs.Cluster(this, "cluster", { vpc, enableFargateCapacityProviders: true }); | |
const repository = ecr.Repository.fromRepositoryName(this, "images", image); | |
const lb = new patterns.ApplicationLoadBalancedFargateService(this, "service", { | |
cluster, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# Default globals for git | |
git config --global user.name "My name" | |
git config --global user.email "[email protected]" | |
git config --global credential.helper 'cache --timeout 360000' | |
git config --global push.default current | |
git config --global pull.default current | |
# If you have multiple GitHub accounts that you use for different repositories | |
git config --global credential.useHttpPath true | |
function git() { |