Skip to content

Instantly share code, notes, and snippets.

View htuzel's full-sized avatar
👨‍💻
I solve problems

Hayreddin Tüzel htuzel

👨‍💻
I solve problems
View GitHub Profile
# Flalingo Brand Guidelines & Design System
**Version:** 1.0
**Last Updated:** January 2026
**Purpose:** Claude Code skill reference for premium onboarding design
---
## 1. Design Philosophy
'use strict';
var GlobalMock = require('../../../../../mocks/global');
var ProductMock = require('../../../../../mocks/dw/catalog/Variant');
global.empty = GlobalMock.empty;
global.request = new GlobalMock.RequestMock();
jest.mock('dw/system/Site', () => {
return {
@htuzel
htuzel / fullstack_assignment.md
Created June 28, 2023 20:51 — forked from robertmogos/fullstack_assignment.md
Algolia AppX team - Fullstack assignment

Fullstack assignment

Welcome! We're glad you are applying to the fullstack position in the Application Experience team! 🚀

Goal

The goal of this assignment is to evaluate:

  • ability to solve problems
  • ability to architect a (small) fullstack application
  • communicate the solution and justify decisions

To that purpose, we expect you to create an app comprised of 2 parts:

@htuzel
htuzel / django_deploy.md
Created August 16, 2020 06:51 — forked from bradtraversy/django_deploy.md
Django Deployment - Digital Ocean

Django Deployment to Ubuntu 18.04

In this guide I will go through all the steps to create a VPS, secure it and deploy a Django application. This is a summarized document from this digital ocean doc

Any commands with "$" at the beginning run on your local machine and any "#" run when logged into the server

Create A Digital Ocean Droplet

Use this link and get $10 free. Just select the $5 plan unless this a production app.

@htuzel
htuzel / node_nginx_ssl.md
Created August 16, 2020 06:49 — forked from bradtraversy/node_nginx_ssl.md
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

var vehicles = [new Car(), new Truck()];
for (var i = 0; i < vehicles.length; i++) {
vehicles.horn();
}
// Biip!
// Daaat!
Install decorator plugins
npm i --save-dev @babel/plugin-proposal-class-properties @babel/plugin-proposal-decorators
change babel.config.js
/* eslint-disable prettier/prettier */
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
@htuzel
htuzel / Dockerfile
Last active December 16, 2019 18:55
[Dockerize Simple Nodejs] #docker #nodejs
#Base image
FROM node:alpine
WORKDIR /usr/app
#To optimize npm install and docker rebuilds
COPY ./package.json ./
RUN npm install