-
Recent Posts
- Designing todo app backend using redis and mongodb
- Multicast Firewall Load Sharing on Checkpoint ClusterXL Firewalls with Cisco Devices
- Configure 3-Leg Perimeter (DMZ) using Forefront TMG 2010
- Build Your Own Cheap iSCSI SAN for ESX Server
- VMware (finally) admits that its costs are higher than Microsoft’s
Archives
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- May 2009
- April 2009
- March 2009
- January 2009
- December 2008
- November 2008
- September 2008
- August 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- May 2007
- April 2007
- March 2007
Categories
- Bildbearbeitung
- CheckPoint
- Cisco
- CISCO / NAT / ROUTE-MAP
- Cisco NBAR
- Cisco Private VLAN
- Cisco WebVPN
- Code Snippets
- Configuration Change Tracking
- DMVPN
- Juniper
- Juniper SRX
- Lightroom
- Microsoft Exchange Server
- MySQL
- Network Monitoring Software
- Networking
- NHRP
- nodejs
- Photography
- ppt
- Software
- SQL Server 2005
- SQL Server 2008
- Texte
- The Cable Guy
- Travel
- Uncategorized
- VBasic
- XML / XSL
- Zitate
Meta
Top Posts & Pages
- Why You Should Use XMLHttpRequest Asynchronously
- vbscript - base32/base36 (base62) encoding
- ACL for HSRP, BGP, OSPF, VRRP, GLBP (Cisco IOS)
- Juniper SRX - Route-failover in a typical DUAL ISP scenario
- SQLite COM Wrappers / Visual Basic DLLs
- Checkpoint - Internal ports explained
- Checkpoint - delete all ARP entries on SPLAT
- route-server.he.net
- CheckPoint: Android / iPhone / Windows - L2TP VPN ...
- winrar incremental & differential backup
Top Clicks
Monthly Archives: June 2012
JSON Parser Library for VB6
VB JSON Parser Library for VB6. VB-JSON is a Visual Basic 6 class library for parsing and emitting JSON (Javascript Object Notation) and can handle nested arrays and objects in the data. It does not rely on the JScript engine … Continue reading
Posted in Uncategorized
Leave a comment
Damerau Levenshtein Algorithm by R.G.
Damerau Levenshtein Algorithm by R.G.. ‘************************************** ‘ Name: Damerau Levenshtein Algorithm ‘ Description:This function returns the ‘ Levenshtein distance capped by the limit ‘ parameter. ‘ By: R.G. ‘ ‘ ‘ Inputs:None ‘ ‘ Returns:None ‘ ‘Assumes:None ‘ ‘Side Effects:None … Continue reading
Posted in Uncategorized
Leave a comment
MySQL Levenshtein and Damerau-Levenshtein UDF’s | sam j levy
MySQL Levenshtein and Damerau-Levenshtein UDF’s | sam j levy. Traditional Levenshtein levenshtein.zip The zip file contains two UDF’s, one by Joshua Drew that comes with original C++ source code, a Win32 (compiled on Server 2008 with MySQL 5.5, Windows SDK … Continue reading
Posted in Uncategorized
Leave a comment
FuzzyMatch in VBA/VBScript
FuzzyMatch in VBA/VBScript/VB6. Function FuzzyMatch(ByVal string1 AsString, _ ByVal string2 AsString, _ Optional min_percentage AsLong=70)AsString Dim i AsLong, j AsLong … Continue reading
Posted in Uncategorized
Leave a comment
Levenshtein Distance in VBA
Levenshtein Distance in VBA/Excel Option Explicit PublicFunction Levenshtein(s1 AsString, s2 AsString) Dim i AsInteger Dim j AsInteger Dim l1 AsInteger Dim l2 AsInteger Dim d()AsInteger Dim min1 AsInteger Dim min2 AsInteger l1 = Len(s1) l2 = Len(s2) ReDim d(l1, l2) … Continue reading
Posted in Uncategorized
Leave a comment
Escaping HTML in JavaScript
Escaping HTML in JavaScript function makeSafe(text) { return text.replace(/[&”‘`]/g, function (chr) { return ‘&#’ + chr.charCodeAt(0) + ‘;’; }); }; function makeSafe(text) { return text.replace(/\W/g, function (chr) { return ‘&#’ + chr.charCodeAt(0) + ‘;’; }); }; javascript.
Posted in Uncategorized
Leave a comment