Skip to content

Instantly share code, notes, and snippets.

View antmrdevlabs's full-sized avatar

antmrdevlabs antmrdevlabs

  • DE
View GitHub Profile
@antmrdevlabs
antmrdevlabs / xampp_php7_xdebug.md
Created January 24, 2020 15:55 — forked from odan/xampp_php7_xdebug.md
Installing Xdebug for XAMPP
@antmrdevlabs
antmrdevlabs / mysql.php
Created March 4, 2019 20:49 — forked from mloberg/mysql.php
Simple PHP MySQL Class
<?php
class Mysql{
static private $link = null;
static private $info = array(
'last_query' => null,
'num_rows' => null,
'insert_id' => null
);
@antmrdevlabs
antmrdevlabs / ID.js
Created December 22, 2017 08:23
ID - a unique ID/name generator for JavaScript
// Generate unique IDs for use as pseudo-private/protected names.
// Similar in concept to
// <http://wiki.ecmascript.org/doku.php?id=strawman:names>.
//
// The goals of this function are twofold:
//
// * Provide a way to generate a string guaranteed to be unique when compared
// to other strings generated by this function.
// * Make the string complex enough that it is highly unlikely to be
// accidentally duplicated by hand (this is key if you're using `ID`
@antmrdevlabs
antmrdevlabs / parse-ionic2.md
Last active December 4, 2016 12:53 — forked from alexciesielski/parse-ionic2.md
Ionic 2 Beta + Backendless
@antmrdevlabs
antmrdevlabs / TemplateParser.cs
Created May 16, 2016 09:06
C# TemplateParser
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using App.Infrastructure;
using System.Reflection;
using System.IO;
namespace App.ServiceModule.Internal
@antmrdevlabs
antmrdevlabs / DynamicAssemblyLoader.cs
Created May 13, 2016 05:35
DynamicAssemblyLoader.cs
public class DynamicAssemblyLoader
{
public Dictionary<string, Assembly> Assemblies = new Dictionary<string, Assembly>();
private void InitalLoadAssemblies()
{
DirectoryInfo dir = new DirectoryInfo(_ExtPath);
foreach (FileInfo f in dir.GetFiles("*ServiceModule.dll"))
{
@antmrdevlabs
antmrdevlabs / jquery.layout-manager.js
Created February 24, 2014 21:20
Simple jQuery Layout Manager
/**
* jqLaMa - jQuery Layout Manager
*
* @author Antmr
* @version 1.0
*
* USAGE:
*
* layout-mgr-Attributes:
* -------------------------------------------------------------------