Skip to content

Instantly share code, notes, and snippets.

@vicgonvt
vicgonvt / deployment_guide.md
Last active February 17, 2025 19:29
Deployment Guide for Ubuntu Server from Scratch with Laravel
@berkorbay
berkorbay / github_desktop_ubuntu.md
Last active April 27, 2025 20:16
To install Github Desktop for Ubuntu

IMPORTANT

See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)

For the sake of "maintaining the tradition" here is the updated version.

@joshuabaker
joshuabaker / languages.json
Last active December 6, 2024 02:10
List of languages with ISO 639-1 Alpha-2 codes in JSON.
[
{
"code": "aa",
"name": "Afar",
"native": "Afar"
},
{
"code": "ab",
"name": "Abkhazian",
"native": "Аҧсуа"
@Daniyal-Javani
Daniyal-Javani / docker-compose.yml
Last active December 30, 2024 13:54
Laravel sail with phpMyAdmin
version: '3'
services:
laravel.test:
build:
context: ./vendor/laravel/sail/runtimes/8.0
dockerfile: Dockerfile
args:
WWWGROUP: '${WWWGROUP}'
image: sail-8.0/app
environment:
@pablodz
pablodz / install_docker_in_ubuntu_21-10.sh
Last active June 17, 2023 20:58
Install Docker in Ubuntu 21.10, Install Dockercompose on Ubuntu 21.10
# [🟨OPTIONAL] Uninstall old docker versions
sudo apt-get remove docker docker-engine docker.io containerd runc
# Refresh latest version
sudo apt-get update
# Install pre-req
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg \
@jtunnicliff
jtunnicliff / slider.html
Last active January 9, 2025 23:59
Image slider using alpine.js and tailwind CSS
<div class="flex flex-col justify-center items-center w-10/12 max-w-6xl mx-auto">
<div class="relative"
x-data="{
activeImage: 1,
images: [ '/media/slider1.jpg', '/media/slider2.jpg', '/media/slider3.jpg']
}">
<!-- Image slides -->
<template x-for="(image,index) in images" :key="index">
<div x-show="activeImage === index + 1"