Skip to content

Instantly share code, notes, and snippets.

View huksley's full-sized avatar
🐈
Step on no pets

Ruslan Gainutdinov huksley

🐈
Step on no pets
View GitHub Profile
@huksley
huksley / decodeGoogleNewsUrl.ts
Last active April 4, 2025 19:12
This script decodes Google News generated encoded, internal URLs for RSS items
/**
* 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
@huksley
huksley / ISO3166-1.alpha2.json
Last active October 11, 2022 19:22 — forked from ssskip/ISO3166-1.alpha2.json
json of country codes (ISO 3166-1 alpha-2) and corresponding names
{
"AF": "Afghanistan",
"AX": "Aland Islands",
"AL": "Albania",
"DZ": "Algeria",
"AS": "American Samoa",
"AD": "Andorra",
"AO": "Angola",
"AI": "Anguilla",
"AQ": "Antarctica",
<!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;
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 {
import { createRoot } from "react-dom/client";
import React, {
forwardRef,
useImperativeHandle,
useRef,
useState
} from "react";
export type InputRef =
@huksley
huksley / mongo-url.js
Last active July 22, 2022 07:55
Converts MongoDB Atlas connection url (or cluster name) into regular mongo:// URL with initial host randomization.
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) =>
@huksley
huksley / Dockerfile
Last active November 27, 2023 17:28
AWS ECS cluster with CDK for NextJS deployment
#
# 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
@huksley
huksley / cdk.js
Last active July 8, 2022 12:13
Create AWS ECS cluster with CDK (short)
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.
@huksley
huksley / git-bashrc.sh
Last active August 11, 2022 04:49
Add this to bashrc for superpowerful git
# 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() {