Quantcast
Channel: Maris Labs
Browsing all 19 articles
Browse latest View live

xstdlib 1.7.2

I added a bunch of code updates to the library: linked list implementation vector implementation code clean ups and whatever What’s next? I’m finally going to create a makefile for this project since...

View Article


New Theme

Simple, clean.

View Article


Matching uri query strings, regex…

1"\?((?:[^0-9][-a-z0-9_]+=[-a-z0-9_.!~*'()%#+]*(?:&|;)?)+)?$"

View Article

Concaving Strings in C

Ever want to shorten a string if it’s too long but do not want to cut off the beginning or end of it? Concave the string. 1234567891011121314151617181920212223242526272829303132333435363738#include...

View Article

Dynamic object attributes (properties) Python (DOAP)

12345678910111213141516171819202122232425262728293031323334#!/usr/bin/python ################################################################ # Name: dynamic_class.py # Version: <version> #...

View Article


str_pad() new to xstdlib

I added a new function for the xstdlib, “str_pad()”. It’s similar to PHP’s str_pad. Pad a string to a certain length with another string. Definition: 123456789101112131415161718192021222324252627char...

View Article

Fixed file() memory leak and access violations

New function definition: 123456789101112131415161718192021222324252627282930313233343536int file(const char * filename, char *elements[], unsigned char flags) {     int line_count = 0;         FILE...

View Article

str_replace at the low level

It uses strpos from the eXtended Standard C Library. 1234567891011121314char *str_replace(const char *find, const char *replace, const char *source, char *buffer) {     int i = 0, p = 0, c = 0;...

View Article


Source Maker 2000

I’ve reprogrammed a simple tool to create source files with coding templates in the command line. It now executes faster and it’s easier to install. Download Source Maker 2000 For systems that are...

View Article


Source make code drop….

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103...

View Article

xstdlib Update v188

readfile function has been added to the library. The function will read an entire file and write its contents to another opened file stream. Definition and usage example: 1long int readfile(const char...

View Article

Image may be NSFW.
Clik here to view.

Deal With it

View Article

Hyperlinking Tracking Numbers in Magento

In: <magento_root>/app/design/frontend/base/default/template/email/order/shipment 1234567891011121314151617181920212223242526272829303132333435363738394041424344<?php /**  * ... all that...

View Article


Simple Hash Table

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103...

View Article

Concaving Strings in C

Ever want to shorten a string if it’s too long but do not want to cut off the beginning or end of it? Concave the string. 1234567891011121314151617181920212223242526272829303132333435363738#include...

View Article


Python Dictionary Implosion

Parameters: glue – The string that sits between each dictionary element in the output string. kv_glue – The key/value glue. quote_keys – By default, if the key is of the str type it will auto-quote. If...

View Article

Ouroboros update 039

I’m releasing an unfinished version of the Ouroboros_Email class. For version 039 it will only feature sending emails to primary recipients, cc, and bcc; send html or plain text content type emails....

View Article


New Chapter

Today is an exciting day for me as I will start at my new position as a lead developer–leading a team of designers and programmers, wish me luck!.

View Article

Ouroboros project update!

Ouroboros–the python 3000 framework with emphasis on simplicity in installation, setup, and development, will get back on track in beta developments week of 8/18/2013! I’m going to work on… * Fixing...

View Article
Browsing all 19 articles
Browse latest View live