Database Development
|
|
17 Dec 2010
Updated: 19 Feb 2015
Rating: 5.00/5
Votes: 2
Popularity: 1.51
Licence: CPOL
Views: 22,664
Bookmarked: 6
Downloaded: 0
Generate large data series by using Cartesian Product and small data table
|
|
17 Dec 2010
Updated: 19 Feb 2015
Rating: 5.00/5
Votes: 9
Popularity: 4.77
Licence: CPOL
Views: 56,572
Bookmarked: 10
Downloaded: 0
Technique to extend capability of standard SQL by adding the Aggregate Product Function
|
General Programming
|
Algorithms |
11 Feb 2011
Updated: 15 Feb 2011
Rating: 5.00/5
Votes: 2
Popularity: 1.51
Licence: CPOL
Views: 23,981
Bookmarked: 2
Downloaded: 0
The computational efficiency of the Euclid's algorithm is much higher that the alternatives
|
|
26 Feb 2011
Updated: 5 Mar 2011
Rating: 4.89/5
Votes: 4
Popularity: 2.94
Licence: CPOL
Views: 32,531
Bookmarked: 4
Downloaded: 0
Algorithms extending the System.Globalization.TextInfo.ToTitleCase Method
|
High Performance Computing
|
Parallel Processing |
24 Feb 2011
Updated: 19 Apr 2011
Rating: 4.71/5
Votes: 10
Popularity: 4.50
Licence: CPOL
Views: 53,785
Bookmarked: 14
Downloaded: 0
.NET/C# managed code implementation of 2 core algorithms of integer arithmetic: GCD and LCM (used in "3 Fraction Calculator", best on Google)
|
Internet of Things
|
|
23 Jun 2015
Updated: 23 Jun 2015
Rating: 5.00/5
Votes: 3
Popularity: 2.39
Licence: CPOL
Views: 12,691
Bookmarked: 7
Downloaded: 0
Computational algorithms pertinent to finding the great-circle distance between 2 points on Earth
|
Productivity Apps and Services
|
Microsoft Office |
21 Jun 2011
Updated: 23 Mar 2019
Rating: 4.89/5
Votes: 7
Popularity: 4.14
Licence: CPOL
Views: 87,689
Bookmarked: 7
Downloaded: 0
Statistical Outliers detection in Microsoft Excel worksheet using Median() and array formula
|
|
15 Aug 2012
Updated: 15 Aug 2012
Rating: 5.00/5
Votes: 1
Popularity: 0.00
Licence: CPOL
Views: 16,382
Bookmarked: 6
Downloaded: 0
Portable solution encapsulated in single SQL query allows to select N rows offsetting M records
|
Programming Languages
|
C# |
11 Feb 2011
Updated: 11 Feb 2011
Rating: 5.00/5
Votes: 2
Popularity: 1.51
Licence: CPOL
Views: 5,941
Bookmarked: 3
Downloaded: 0
Interesting finding in regards to the Case Toggle Algorithm by Robert (see the following code snippet): protected string ToggleCaseByRobert(string s){ var sb = new StringBuilder(s.Length); foreach (char c in s) sb.Append(char.IsUpper(c) ? char.ToLower(c) :...
|
|
10 Feb 2011
Updated: 14 Feb 2011
Rating: 5.00/5
Votes: 2
Popularity: 1.51
Licence: CPOL
Views: 10,301
Bookmarked: 3
Downloaded: 0
This is an alternative for "How to Toggle String Case in .NET"
|
|
14 Feb 2011
Updated: 14 Feb 2011
Rating: 5.00/5
Votes: 1
Popularity: 0.00
Licence: CPOL
Views: 5,120
Bookmarked: 2
Downloaded: 0
|
|
22 Feb 2011
Updated: 22 Feb 2011
Rating: 5.00/5
Votes: 2
Popularity: 1.51
Licence: CPOL
Views: 8,821
Bookmarked: 1
Downloaded: 0
Following two Toggle Case Algorithms, implemented as "pure" .NET solution (no "unsafe" coding technique, all managed code) demonstrate the best performance, tested against a variety of text strings, containing: ASCII, Unicode, all Low case, all Upper case, long numeric strings
|
C# 4.0 |
12 May 2011
Updated: 12 May 2011
Rating: 5.00/5
Votes: 1
Popularity: 0.00
Licence: CPOL
Views: 6,710
Bookmarked: 3
Downloaded: 0
Hello Steven,As FYI: recently I have published on CodeProject a short article (tip) on rather efficient implementation of GCD/LCM based on Euclid algorithm. They use iteration instead of recursion, because re-cursive algorithms in general and in this particular case are relatively...
|
|
4 Jul 2011
Updated: 4 Jul 2011
Rating: 5.00/5
Votes: 2
Popularity: 1.51
Licence: CPOL
Views: 7,091
Bookmarked: 0
Downloaded: 0
AsFYI: In addition to my previous comments, here is the link to an excellent article published by Aron Weiler on CodeProject addressing the same issue of Multi-Key Dictionary Object: C# Multi-key Generic Dictionary[^]
|
Web Development
|
|
8 Feb 2011
Updated: 22 Jun 2015
Rating: 4.83/5
Votes: 42
Popularity: 7.73
Licence: CPOL
Views: 204,832
Bookmarked: 9
Downloaded: 0
Computer mouse triple-click is a convenient feature
|
ASP.NET |
8 Feb 2011
Updated: 3 Jul 2015
Rating: 4.88/5
Votes: 22
Popularity: 6.45
Licence: CPOL
Views: 72,882
Bookmarked: 29
Downloaded: 0
Serial and Parallel implementation of efficient Prime Factoriing algorithms
|
|
27 May 2011
Updated: 29 Jun 2015
Rating: 4.72/5
Votes: 10
Popularity: 4.26
Licence: CPOL
Views: 43,210
Bookmarked: 13
Downloaded: 0
Web app to find geographical coordinates and apply them to the Bing Map
|
|
21 Jun 2011
Updated: 2 Jul 2015
Rating: 4.90/5
Votes: 13
Popularity: 5.29
Licence: CPOL
Views: 110,584
Bookmarked: 15
Downloaded: 0
DropDownList Data Binding to Array (1D/2D), Enum and Dictionary objects in .NET
|
HTML |
12 May 2011
Updated: 12 May 2011
Rating: 5.00/5
Votes: 2
Popularity: 1.51
Licence: CPOL
Views: 7,370
Bookmarked: 1
Downloaded: 0
Hi,As FYI: You could refer to my article published on CodeProject, which describes the similar solution and has been tested to work with all major browsers: How to Detect Browser Capabilities in ASP.NET[^]Kind regards,Alex B.
|
|
20 Mar 2011
Updated: 16 Feb 2015
Rating: 5.00/5
Votes: 3
Popularity: 2.39
Licence: CPOL
Views: 18,871
Bookmarked: 4
Downloaded: 0
Essentially the same code snippet with just a little bit cleaner and more efficient code1. setTimeout() is replaced with setInterval() function2. The interval is correctly set to 333 msec to produce 3 updates per second as specifiedRelated application (as FYI): Inflation...
|
HTML5 |
13 Jul 2011
Updated: 30 Oct 2011
Rating: 4.90/5
Votes: 8
Popularity: 4.43
Licence: CPOL
Views: 91,342
Bookmarked: 19
Downloaded: 0
ASP.NET GridView control hosting another GridView in data-centric web applications
|
|
13 Jul 2011
Updated: 11 Feb 2015
Rating: 4.75/5
Votes: 17
Popularity: 5.59
Licence: CPOL
Views: 119,123
Bookmarked: 25
Downloaded: 0
3 different techniques of adding hyperlinked image to ASP.NET GridView in data-centric RIA
|
|
16 Apr 2015
Updated: 8 May 2015
Rating: 4.59/5
Votes: 10
Popularity: 4.38
Licence: CPOL
Views: 41,724
Bookmarked: 15
Downloaded: 0
CSS3 technique utilizes HTML5 div elements to produce compact pseudo-graphics
|
|
9 Sep 2011
Updated: 3 Oct 2011
Rating: 4.92/5
Votes: 7
Popularity: 4.16
Licence: CPOL
Views: 96,049
Bookmarked: 8
Downloaded: 0
Make DIV element stretch vertically 100%. Works in all HTML5-compatible browsers
|
|
16 Mar 2015
Updated: 16 Mar 2015
Rating: 4.74/5
Votes: 8
Popularity: 4.28
Licence: CPOL
Views: 55,801
Bookmarked: 8
Downloaded: 0
This is an alternative for "Using CSS to Style a CheckboxList/RadioButtonList Control in ASP.NET"
|
|
2 Feb 2011
Updated: 14 Feb 2015
Rating: 4.75/5
Votes: 21
Popularity: 6.18
Licence: CPOL
Views: 100,611
Bookmarked: 26
Downloaded: 0
Customize YouTube® video playback by adding web query parameters
|
|
10 Jun 2011
Updated: 15 Feb 2015
Rating: 4.84/5
Votes: 32
Popularity: 7.21
Licence: CPOL
Views: 276,352
Bookmarked: 51
Downloaded: 0
Make entire table row clickable/selectable by adding "onclick" event and formatting features via JavaScript and CSS3.
|
|
14 Feb 2011
Updated: 23 Feb 2015
Rating: 4.86/5
Votes: 101
Popularity: 9.63
Licence: CPOL
Views: 852,998
Bookmarked: 171
Downloaded: 4,722
Aesthetic enhancement of HTML5 web elements via pure CSS3; no image files required
|
|
6 Oct 2012
Updated: 26 Feb 2015
Rating: 4.72/5
Votes: 13
Popularity: 5.26
Licence: CPOL
Views: 161,847
Bookmarked: 40
Downloaded: 0
Tip describes CSS3 formatting technique that allows to create web Table header, which always stays atop the table regardless of scrolling
|
|
24 Mar 2015
Updated: 25 Apr 2015
Rating: 4.95/5
Votes: 15
Popularity: 5.67
Licence: CPOL
Views: 154,732
Bookmarked: 33
Downloaded: 0
Pure CSS3 styling solution applicable to HTML5 SELECT element and ASP.NET DropDownList control
|
|
17 Mar 2011
Updated: 13 Jun 2015
Rating: 4.78/5
Votes: 27
Popularity: 6.76
Licence: CPOL
Views: 235,262
Bookmarked: 55
Downloaded: 0
Pure HTML5 modal pop-up box ("darkbox") implemented via CSS 3
|
|
16 Mar 2011
Updated: 15 Jun 2015
Rating: 4.97/5
Votes: 42
Popularity: 8.07
Licence: CPOL
Views: 292,178
Bookmarked: 62
Downloaded: 111
SAY IT WITH CSS3! - Online slide show implements "darkbox" pop-up using pure CSS3/HTML5 features
|
|
30 Sep 2011
Updated: 16 Jun 2015
Rating: 4.94/5
Votes: 29
Popularity: 7.15
Licence: CPOL
Views: 216,813
Bookmarked: 58
Downloaded: 0
HTML5/CSS3 advanced formatting of web Tables and ASP.NET GridView
|