Skip to content

Instantly share code, notes, and snippets.

View Laim's full-sized avatar
😍
.NET

Laim Laim

😍
.NET
View GitHub Profile
@Coding-Koala222
Coding-Koala222 / github-pages-with-tailwind-tutorial.md
Last active April 27, 2026 06:59
GitHub Pages: How to Convert a Temporary CDN-Based Tailwind Site to a Permanent GitHub Actions Workflow-Based Site

GitHub Pages: How to Convert a Temporary cdn.tailwindcss.com or cdn.jsdelivr.net-Based Tailwind Site to a Permanent GitHub Actions Workflow-Based Site

This guide will show you how to permanently set up Tailwind CSS for your static HTML site using a GitHub Actions workflow. It includes configuration and troubleshooting.

Prerequisites

This guide assumes that you already have the following line of code in the <head> section of your HTML file, per the official CDN setup instructions.

<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
@bradtraversy
bradtraversy / laravel_xampp_setup.md
Created April 22, 2022 01:16
Laravel Xampp setup on Mac and Windows

Laravel Xampp Setup (Windows & Mac)

Install Xampp

Install Xampp from https://www.apachefriends.org/index.html

  • Run the Xampp installer and open the Xampp control panel
  • Make sure that you enable the Apache and MySQL services
  • On mac you need to click "Start" on the Home tab, "Enable" on the Network tab and "Mount" on the Location Tab. Click "Explore" on the location tab to open your Xampp/Lampp folder

Install Composer

@dolemite7
dolemite7 / ThumbnailSheet.cs
Last active July 28, 2024 00:13
C# Video Thumbnail Sheet
/*
ThumbnailSheet uses MediaToolkit (https://github.com/AydinAdn/MediaToolkit) and Magick.NET (https://magick.codeplex.com/)
to create a sheet of timestamped thumbnails for a given video file.
Preview: http://imgur.com/a/iLGMs
Use Nuget to Install-Package MediaToolKit, and download a copy of Magick.NET, add it to your project's /bin folder and
create a reference to the .dll.
Usage example:
@define-private-public
define-private-public / HttpServer.cs
Last active February 17, 2026 09:04
A Simple HTTP server in C#
// Filename: HttpServer.cs
// Author: Benjamin N. Summerton <define-private-public>
// License: Unlicense (http://unlicense.org/)
using System;
using System.IO;
using System.Text;
using System.Net;
using System.Threading.Tasks;
@rxaviers
rxaviers / gist:7360908
Last active May 7, 2026 19:28
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: πŸ˜„ :smile: πŸ˜† :laughing:
😊 :blush: πŸ˜ƒ :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
πŸ˜† :satisfied: 😁 :grin: πŸ˜‰ :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: πŸ˜€ :grinning:
πŸ˜— :kissing: πŸ˜™ :kissing_smiling_eyes: πŸ˜› :stuck_out_tongue:
@zenorocha
zenorocha / README.md
Last active March 11, 2026 14:24
A template for Github READMEs (Markdown) + Sublime Snippet

Project Name

TODO: Write a project description

Installation

TODO: Describe the installation process

Usage