Skip to content

Instantly share code, notes, and snippets.

View rainbyte's full-sized avatar

Alvaro Fernando García rainbyte

View GitHub Profile
@rainbyte
rainbyte / Base64.hs
Last active August 29, 2015 14:09 — forked from igstan/Base64.hs
module Base64 (encode) where
import Data.Bits (shiftL, shiftR, (.|.))
import Data.List (replicate)
import Data.Maybe (fromJust)
import Data.Word (Word8)
import Data.ByteString (ByteString, append, pack)
import qualified Data.ByteString as ByteString
import qualified Data.ByteString.Char8 as Char8
;; Step 1
(defn fact1 [n]
(if (< n 2) 1 (* n (fact1 (- n 1)))))
(println (fact1 5))
;; Step 2
(def fact2
((fn [f]
@rainbyte
rainbyte / QuickStart.fs
Created November 25, 2019 16:50 — forked from pizycki/QuickStart.fs
MySQL, Dapper and F#
// Place this in .fsproj
// <ItemGroup>
// <PackageReference Include="Dapper.Contrib" Version="1.60.1" />
// <PackageReference Include="MySqlConnector" Version="0.56.0" />
// </ItemGroup>
open Dapper
open MySql.Data.MySqlClient
// CREATE TABLE `8833_rw_dev`.`Releases` (
@rainbyte
rainbyte / Git Subtree basics.md
Created August 6, 2024 01:33 — forked from SKempin/Git Subtree basics.md
Git Subtree basics

Git Subtree Basics

If you hate git submodule, then you may want to give git subtree a try.

Background

When you want to use a subtree, you add the subtree to an existing repository where the subtree is a reference to another repository url and branch/tag. This add command adds all the code and files into the main repository locally; it's not just a reference to a remote repo.

When you stage and commit files for the main repo, it will add all of the remote files in the same operation. The subtree checkout will pull all the files in one pass, so there is no need to try and connect to another repo to get the portion of subtree files, because they were already included in the main repo.

Adding a subtree

Let's say you already have a git repository with at least one commit. You can add another repository into this respository like this:

@rainbyte
rainbyte / ss_ps_fil_to_orca_fil.py
Created August 12, 2024 16:23 — forked from samwiseg0/ss_ps_fil_to_orca_fil.py
Convert SuperSlicer/PrusaSlicer filament profiles to OrcaSlicer
# -*- coding: utf-8 -*-
import argparse
import configparser
import json
import os
def sanitize_value(value):
# Remove leading and trailing whitespaces, including newline characters
value = value.strip()
# Remove any extra quotes or escape characters