Skip to content

Instantly share code, notes, and snippets.

View yakimka's full-sized avatar
💭
import __hello__

yakimka

💭
import __hello__
View GitHub Profile
@yakimka
yakimka / README.md
Created December 13, 2018 11:42 — forked from genomics-geek/README.md
Setting up a Dockerized web application with Django REST APIs, ReactJS with Redux pattern, and Webpack Hot Reloading! Mouthful.

Guide on how to create and set up a Dockerized web app using Django REST APIs and ReactJS

Hopefully this will answer "How do I setup or start a Django project using REST Framework and ReactJS?"

This is a guide to show you step by step how this can be setup. If you just want to get started, use the cookiecuter I set up cookiecutter-django-reactjs. It basically is a fork of pydanny's cookiecutter, just added the front-end stuff :).

I created this because it was SUCH a pain in the ass setting up a project using all the latest technologies. After some research, I figured it out and have it working. The repo that implements this is located here. Feel free to use it as a boilerplate ;)

Main features:

  • Django REST APIs
@yakimka
yakimka / redis_cheatsheet.bash
Created December 12, 2018 12:31 — forked from LeCoupa/redis_cheatsheet.bash
Redis Cheatsheet - Basic Commands You Must Know --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
# Redis Cheatsheet
# All the commands you need to know
redis-server /path/redis.conf # start redis with the related configuration file
redis-cli # opens a redis prompt
# Strings.
@yakimka
yakimka / arch-linux-install
Last active October 9, 2021 17:08
Instructions for installing Arch Linux on an UEFI system with LUKS and systemd-boot
# Connect to the internet
dhcpcd # или wifi-menu
# Create partitions
cgdisk /dev/sdX
1 550MiB Boot partition # Set type EFI system
2 100% size partiton # (to be encrypted) Hex code 8300
mkfs.vfat -n BOOT -F32 /dev/sdX1
# Setup the encryption of the system