Skip to content

Instantly share code, notes, and snippets.

View thearyanahmed's full-sized avatar

Aryan Ahmed thearyanahmed

View GitHub Profile
@Artistan
Artistan / Appendable.md
Created November 5, 2018 16:21
Make a model dynamically appendable.
@vicgonvt
vicgonvt / deployment_guide.md
Last active February 17, 2025 19:29
Deployment Guide for Ubuntu Server from Scratch with Laravel
@sazid
sazid / DBUtils.kt
Created August 30, 2021 06:59
Database utilities for JDBC
package io.github.sazid
import java.sql.Connection
import java.sql.Date
import java.sql.PreparedStatement
import java.sql.ResultSet
import java.time.LocalDate
import javax.sql.DataSource
typealias RowMapper<T> = (ResultSet) -> T