Skip to content

Instantly share code, notes, and snippets.

View MayMeow's full-sized avatar
🌙
Moonlit Coding Session 🌌

May MayMeow

🌙
Moonlit Coding Session 🌌
View GitHub Profile
@MayMeow
MayMeow / .gitlab-ci.yml
Created May 25, 2016 17:42
Full Latex Image and Gitlab CI file to generate books with Mathgen.
image: latex-full:latest
variables:
GIT_SSL_NO_VERIFY: "true"
cache:
paths:
- vendor
pages:
@MayMeow
MayMeow / NumberConverter.php
Last active January 15, 2022 08:16
I found this on internet when i need something to shorten link... This is class but its not problem to create cakephp component... (i can post this one too if anyone want it)
<?php
class Converter {
public function convert ($number = null) {
$codeset = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
$base = strlen($codeset);
$n = $number;
$converted = "";