Skip to content

Instantly share code, notes, and snippets.

@jtunnicliff
jtunnicliff / slider.html
Last active September 3, 2024 08:00
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"
@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 \
@Daniyal-Javani
Daniyal-Javani / docker-compose.yml
Last active July 3, 2024 16:34
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:
@joshuabaker
joshuabaker / languages.json
Last active October 15, 2024 22:22
List of languages with ISO 639-1 Alpha-2 codes in JSON.
[
{
"code": "aa",
"name": "Afar",
"native": "Afar"
},
{
"code": "ab",
"name": "Abkhazian",
"native": "Аҧсуа"
@berkorbay
berkorbay / github_desktop_ubuntu.md
Last active November 14, 2024 08:31
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.

@vicgonvt
vicgonvt / deployment_guide.md
Last active October 22, 2024 21:47
Deployment Guide for Ubuntu Server from Scratch with Laravel