Skip to content

Instantly share code, notes, and snippets.

View andreichernov's full-sized avatar

andreichernov andreichernov

View GitHub Profile
@venkataravuri
venkataravuri / Kubernetes-K8s-Articles-Videos-Slides.md
Last active November 26, 2020 11:20
K8s Articles, Videos & Slides

🎡 Kubernetes (K8s) Articles, Videos & Slides

Docker & Kubernetes Introduction

📺 Videos

Docker & Kubernetes Troubleshooting Guides & Internals

📃 Articles

@pnbrown
pnbrown / May the 4th Developer's Introduction to Kubernetes.md
Last active March 5, 2021 08:49
May the 4th Developer's Introduction to Kubernetes
@raysan5
raysan5 / custom_game_engines_small_study.md
Last active October 12, 2025 19:14
A small state-of-the-art study on custom engines

CUSTOM GAME ENGINES: A Small Study

a_plague_tale

WARNING: Article moved to separate repo to allow users contributions: https://github.com/raysan5/custom_game_engines

A couple of weeks ago I played (and finished) A Plague Tale, a game by Asobo Studio. I was really captivated by the game, not only by the beautiful graphics but also by the story and the locations in the game. I decided to investigate a bit about the game tech and I was surprised to see it was developed with a custom engine by a relatively small studio. I know there are some companies using custom engines but it's very difficult to find a detailed market study with that kind of information curated and updated. So this article.

Nowadays lots of companies choose engines like [Unreal](https:

@satishchennu1
satishchennu1 / Tips to pass Certified Kubernetes Application Developer (CKAD) exam
Last active July 15, 2022 12:08
Tips to pass Certified Kubernetes Application Developer (CKAD) exam
Tips to pass Certified Kubernetes Application Developer (CKAD) exam
Getting started Kubernetes :-
a) Book : Kubernetes: Up & Running
b) Practice practice & practice with CKAD Exercises
the Best Kubernetes CKAD sample exercises which cover all parts of the exam https://github.com/dgkanatsios/CKAD-exercises.
c) Again, the best practice is use kubectl command well. Use kubectl to create resources (such as deployment, service, cronjobs, secret, configmap…) instead of creating them from manifest files.
Incase you have to edit manifest, use dry-run and -o yamlto save yaml file then edit manifest files.
d) Kubernetes in Action by Mario Luksa. The book is the holy bible of Kubernetes, and it basically answer all questions you may have ;
e) Whether or not you use Kubernetes at work, you should still provision your own cluster somewhere and play with it.
@rubenhorn
rubenhorn / YTranslate.cs
Created October 16, 2019 09:08
Unity script for machine translation using the Yandex Translate API
using System.Collections;
using System;
using System.Xml;
using UnityEngine.Networking;
/*
Requirement:
Yandex Translate API key (https://tech.yandex.com/translate/)
Usage:
@bradtraversy
bradtraversy / node_nginx_ssl.md
Last active September 18, 2025 21:06
Node app deploy with nginx & SSL

Node.js Deployment

Steps to deploy a Node.js app to DigitalOcean using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt

1. Sign up for Digital Ocean

If you use the referal link below, you get $10 free (1 or 2 months) https://m.do.co/c/5424d440c63a

2. Create a droplet and log in via ssh

I will be using the root user, but would suggest creating a new user

@TimothyJones
TimothyJones / getSsmConfig.js
Created August 28, 2019 04:44
Example showing a promisified SSM config reader for SecureString parameters
const AWS = require('aws-sdk');
const ssm = new AWS.SSM();
const configFeatures = {
'/path/to/your/config/option': 'someOption',
'/path/to/your/config/something_else': 'somethingElse'
};
const getConfig = () =>
@chikeo
chikeo / DevOps Key Points.md
Last active August 18, 2019 11:48
DevOps Key Points