Mijn digitale aantekeningen & notities
-
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
-
Multi-language search in ASP.NET
Multi-language search in ASP.NET
-
My first jQuery plugin: A simple Accordion
My first jQuery plugin: A simple Accordion
-
Use a non-recursive User Defined Function in SQL Server to get all descendants for an element
Use a non-recursive User Defined Function in SQL Server to get all descendants for an element
-
Find all attributes and their values within a HTML string
Find all attributes and their values within a HTML string
-
Login to MySQL Server from UNIX Shell
Login to MySQL Server from UNIX Shell
-
Extracting a tar file to a specific directory/folder
Extracting a tar file to a specific directory/folder
-
Using regular expressions in C# to adjust the width & height of an embedded YouTube movie
Using regular expressions in C# to adjust the width & height of an embedded YouTube movie
-
Make a nice table with HTML Definition Lists (<dl>)
Make a nice table with HTML Definition Lists (<dl>)
-
Get the inserted ID with Scope_Identity()
Get the inserted ID with Scope_Identity()
-
Get info about columns in a database with SqlDataAdapter.FillSchema
Get info about columns in a database with SqlDataAdapter.FillSchema