The library tag has no wiki summary.
15
votes
2answers
812 views
Small PHP Viewer/Controller template
I have written a small template Viewer/Controller esque library that I would like some critiques on.
The library is located here
If you are looking for where to start, check out App.php and ...
9
votes
4answers
787 views
Thoughts on PHP Autoloader Library
Basically, I had written this class a little while ago to ease autoloading of our local libraries.
The premise is that everything's split by packages into multiple layers of sub-packages. Classes ...
7
votes
3answers
310 views
I'm working on my own JS-lib and I need someone to help.
My own CMS is currently using J-Query but as one of the goals is to have the whole project to be very small, so I've decided to write my own basic library, I only really need to select elements and ...
7
votes
2answers
231 views
Usability of API to declare modules in JavaScript
Edit: I updated the JavaScript modules in http://enlargeyourpassword.com to use scope(). You can see the result in the source of the page, and get an idea of the process by looking at the commit ...
6
votes
1answer
161 views
Thoughts on my little javascript library?
just wanted to gather your opinion on my little javascript library.
It features Math, String, Array, canvas and location extensions, aswell as some useful animation and timing classes I came up with:
...
6
votes
1answer
2k views
Small PHP MVC Template
The following is a new question based on answers from here: Small PHP Viewer/Controller template
I have written a small MVC template library that I would like some critiques on.
The library is ...
6
votes
1answer
566 views
High level file structure and library structure
I'm working on a DOM-shim project.
For a small subset of the DOM4 specification (Actually a subset of the Node interface) I already have 400+ lines of functions.
I presume keeping this up will ...
4
votes
2answers
69 views
Using standard library to simplify pairwise iteration of container values
I came up with this code whilst answering this question.
Is there a simpler way of doing this using standard library?
I want to iterate over every object and do something with every other object.
...
4
votes
1answer
60 views
Code review for a collection manipulation tool in Javascript
As I was working with .NET, I started wondering how I would implement the LINQ methods syntax in Javascript. So here is my first try; is there a more elegant, or more performant, way to write this ...
3
votes
2answers
2k views
Small MVC for PHP
The following is a new question based on answers from here: Small PHP MVC Template
I have written a small MVC template library that I would like some critiques on.
The library is located here
...
2
votes
1answer
475 views
A library written in CoffeeScript
So, I wrote this small library for fast DOM building with API tailored for CoffeeScript
I feel like the code overall can be made better/smaller/faster.
I am also not particularly happy about a few ...
2
votes
1answer
174 views
Review my JavaScript cookie library
I wrote a small JavaScript libary that aims to simplify JavaScript cookies. You can find the code on Github:
https://github.com/js-coder/cookie.js
I tested it in various browsers and it seems to work ...
2
votes
1answer
123 views
Makefile Magic on Simple Linux C Project
I am in the early stages of learning to write makefiles for larger projects where all the source will be spread across multiple directories. Instead of posting all the source, I have provided a link ...
2
votes
0answers
173 views
Writing SIMD libraries for C++ on FASM in x86-64 Linux
I have recently started a project of SIMD libraries development for C++ on FASM for x86-64 Linux.
I would be glad to hear any opinion or feedback about the project, cleanness of the code and ...
1
vote
3answers
280 views
Critique my parsing library interface
Update: I've realized that I've missed the goal of fluency completely. I have added another configuration interface now, which more closely meets what I originally desired. I've added this. Comments ...