-
WordPress – Custom username validation
Ever wanted to use a Gmail alias e-mailaddress as a username in Wordpress?
-
Decompile an .mo into a .po file using POEdit’s msgunfmt.exe
C:\Program Files\Poedit\bin\msgunfmt.exe gravityforms-nl_NL.mo > gravityforms-nl_NL.po
-
Javascript blueprint class for WordPress w. jQuery
A blueprint for a javascript class to be used in Wordpress development.
-
Some SQL script i used to detect/remove double entries
DECLARE @MinID int; DECLARE @MaxID int; DECLARE @ID int; SELECT @MinID = MIN(ProductID) from Product; SELECT @MaxID = MAX(ProductID) from Product; SELECT @ID = ProductID from Product WHERE FK_ProductTypeID=’4′; SELECT TOP 1 Title FROM Product WHERE ProductID < @ID OR @ID=@MinID ORDER BY ProductID DESC; SELECT TOP 1 Title FROM Products WHERE ProductID > @ID [...]
-
Flash-achtige intro en navigatie met jQuery
Voor DJ & Producer Michael More heb ik deze Flash-achtige intro en navigatie met jQuery gemaakt
-
nl2li – WordPress template tag
A wordpress function that outputs a textarea to (a) (un)ordered html list(s).
-
SQL Queries to find double entries
3 possible SQL Queries to retrieve double entries in a table
-
T-SQL Split function
T-SQL Split function
-
Dynamic Stored Procedure with Count, Filter & Paging
Dynamic Stored Procedure with Count, Filter & Paging
-
SQL Query to drop all FK constraints
SQL Query to drop all FK constraints