News in the Category: Regex Subscribe to the rss of this category.

Total posts: 759 | Sort by Views | Sort by Hits

Authentication in Web APIs. Keys, OAuth or HMAC

Pablo M. Cibraro (aka Cibrax), May 21, 2013
Views: 166 | Hits 32

Most of the Web APIs available out there in the web nowadays use some kind of authentication for identifying client applications. Although they implement authentication in different ways, they can be ...

AngularJS Abstractions: Filters

K. Scott Allen, May 20, 2013
Views: 146 | Hits 12

Filters in AngularJS can form a pipeline to format and adapt model data inside a view. The built-in filters for AngularJS are date (format a date), filter (select a subset of an array), currency (form...

AngularJS Abstractions: Scope

K. Scott Allen, May 16, 2013
Views: 187 | Hits 20

Continuing from the controllers post, the parameter to the controller function is named $scope. var AboutController = function($scope) { // ... }; The name $scope is important since it allo...

Adding secondary tiles to your app

the telerik blogs, May 9, 2013
Views: 170 | Hits 4

Secondary tiles enable users to promote specific content and deep links. It enables you to personalize your app experience and give user the power on how they want to access data within their app. Con...

Continuous integration for databases using Red Gate tools

Simple Talk, May 7, 2013
Views: 66 | Hits 2

Once databases are placed in source control, it is possible to integrate them into the existing build automation process.  This will ensure that the whole development project, including the database, ...

Avoid Failing Tests When Automating Dynamic Ajax Requests

the telerik blogs, April 22, 2013
Views: 197 | Hits 4

A practical example featuring RadComboBox for ASP.NET AJAX Asynchronous delays are the second biggest automation issue you need to nail down in your environment—locators/find logic being the ...

De Correspondent - future of journalism?

QuirksBlog, April 15, 2013
Views: 182 | Hits 6

One of the things I’ve been following closely these past few weeks is an initiative for a new kind of journalism here at home. To me it’s not so much about the journalism as it is about the business m...

New Hash-based Sharding Feature in MongoDB 2.4

The MongoDB NoSQL Database Blog, April 10, 2013
Views: 245 | Hits 11

shell$ wget http://en.wikipedia.org/wiki/Web_crawler -O web_crawler.htmlshell$ mongo connecting to: /test> use mydbswitched to db mydb> cat("web_crawler.html").split("\n").forEach( function(...

DtPad, the C# based text editor that's ++

MSDN: Coding4Fun, March 20, 2013
Views: 357 | Hits 37

Recently we highlighted a control that you could use to create your own text editor, if you applied a good bit of elbow grease, Creating your own Text Editor with AvalonEditToday's project by Marco Ma...

AngularJS - Controllers, Dependencies, and Minification

K. Scott Allen, March 13, 2013
Views: 276 | Hits 34

In working through a series of posts with AngularJS I've been using a controller function like so:var VideoController = function($scope, Video) { // ... stuff }; The problem is that the function...

A Leopard Cant Change Its Spots

Peter Brombergs UnBlog, March 6, 2013
Views: 207 | Hits 8

You have often heard the expression ""a leopard cant change its spots"" when talking about someone elses behavior. We know it is impossible for anyone to change someone else, but it is ok to poin...

Dynamic LINQ Queries with Expression Trees

Simple Talk, February 25, 2013
Views: 99 | Hits 7

It's possible to build up dynamic LINQ queries or queries with several conditional criteria. In fact there are several options for doing this, including the use of expression trees....

Expressions In AngularJS

K. Scott Allen, February 25, 2013
Views: 213 | Hits 20

The last feature I need to add for the video sample is the ability to edit and delete videos. One approach with Angular is to bind edit and delete button click events to the model using the ng-click c...

JustMock Release History : Q1 2013 (version 2013.1.220.3)

Telerik News RSS Feed, February 20, 2013
Views: 212 | Hits 1

What's new: New: Automocking with fully profiled mode New: Memorize the "Enable/Disable JustMock" setting and change wording to "Enable/Disable Profiler" New: Video of how to deploy JustMock test...

Analyzing Your MongoDB Data with Analytica

The MongoDB NoSQL Database Blog, January 29, 2013
Views: 328 | Hits 9

This is a guest post by Nosh Petigara, president of AnalyticaAnalyticais an analytics platform built for rich document type data. You use Analytica Script, a declarative expression language tailored f...

Async Lambdas

youve been HAACKED, January 24, 2013
Views: 313 | Hits 45

Today I learned something new and I love that! I was looking at some code that looked like this: try { await obj.GetSomeAsync(); Assert.True(false, "SomeException was not thrown");...

I don't like Regex...

The Code Project Latest Articles, January 18, 2013
Views: 328 | Hits 71

This article will introduce you with a set of 3 simple extension methods that can help you getting rid of Regex in many situations...

Uploading Captured Canvas Images

K. Scott Allen, January 7, 2013
Views: 237 | Hits 8

In "Capturing HTML 5 Video To An Image", Chris asked if we could upload a captured image to the server. Yes we can! We will use the same markup from the previous post, but make a simple change to th...

JustMock Release History : Q3 2012 SP1 (version 2012.3.1220)

Telerik News RSS Feed, December 21, 2012
Views: 266 | Hits 3

What's new: New: Improved Mock.Replace support to mock mscorlib methods under a private member in SUT New: Mocking of LINQ query for non-public methods using ReturnsCollection New: Mock.Initialize...

Google and Bing Map APIs Compared

The Code Project Latest Articles, December 10, 2012
Views: 381 | Hits 46

At one of the local golf courses I frequent, there is an open grass field next to the course. It is about eight acres in size and mowed regularly. It is permissible to hit golf balls thereyou bring an...

Understand Lambda Expressions in 3 minutes

The Code Project Latest Articles, December 4, 2012
Views: 297 | Hits 57

Lambda expressions short tutorial....

Transform between IEEE, IBM or VAX floating point number formats and bytes expressions

The Code Project Latest Articles, November 12, 2012
Views: 341 | Hits 7

This is an alternative for "Transform between IEEE, IBM or VAX floating point number formats and bytes expressions"...

Planet MongoDB

The MongoDB NoSQL Database Blog, October 17, 2012
Views: 139 | Hits

To read up on the most up-to-date blog posts on MongoDB check out Planet MongoDB, a newly-released aggregator of the best blogs on MongoDB. MongoDB community members share tips, ticks and best practic...

Extract inner text from Html using Regex

The Code Project Latest Articles, October 17, 2012
Views: 422 | Hits 27

How to extract the inner text from Html using Regular expression...

RegularExpressionValidator In ASP.NET

The Code Project Latest Articles, October 9, 2012
Views: 383 | Hits 24

ASP.NET RegularExpressionValidator...

Writing a ContinueAfter method for Rx

youve been HAACKED, October 8, 2012
Views: 353 | Hits 7

With Reactive Extensions you sometimes need one observable sequence to run after another observable sequence completes. Perhaps the first one has side effects the second one depends on. Egads! I know,...

Windows Development in C++, working with menus

The Code Project Latest Articles, October 6, 2012
Views: 461 | Hits 6

Windows API, menus, c++ lambda expressions, std::enable_shared_from_this...

The Art of Unit Testing Reviewed

Steven Smith, October 1, 2012
Views: 436 | Hits 15

I recently finished reading Roy Osheroves The Art of Unit Testing.  I was kind of splitting my time reading it and Growing Object Oriented Software Guided by Tests, which I just recently reviewed...

Flexpressions

The Code Project Latest Articles, September 9, 2012
Views: 325 | Hits 18

An intuitive-fluent API for generating Linq Expressions....

Accessing Your Model's Data from a Controller

ASP.NET Daily Articles, August 28, 2012
Views: 155 | Hits 2

.auto-style1 { font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif; } In this section, you'll create a new MoviesController c...

Looking Back; or How to Improve Your Team with Retrospectives

Simple Talk, August 23, 2012
Views: 276 | Hits 1

Instead of waiting until the end of a project to ask 'what worked and what didn't, why not use regular retrospective analysis as part of the development process to find out what is, and isn't, workin...

Add the Promote MDN WordPress Plugin to your site !

MS-Joe, August 21, 2012
Views: 341 | Hits 3

Luke Crouch is one of the sharpest young guys I know. I’ve followed his work since I joined Mozilla almost a year ago and he is, as we say in the start-up world, “in my life boat”. (If you’re not fami...

Static analysis should be used regularly

The Code Project Latest Articles, August 20, 2012
Views: 341 | Hits 15

Why static analysis should be used regularly....

LINQ Query Workaround for Comparing Dates (EF, LINQ2SQL,CodeFirst)

peterkellner.net, July 26, 2012
Views: 578 | Hits 27

I seem to always get this error all the time (kind of like I never learn).   Or, for you search engines reading:LINQ to Entities does not recognize the method ‘System.DateTime Subtract(System.TimeSpan...

Simple and Useful JavaScript Regular Expression Tutorial

The Code Project Latest Articles, July 16, 2012
Views: 453 | Hits 25

This post discusses some simple and useful JavaScript Regular Expressions...

Life as a Doctoral Student

Keyvan Nayyeri, July 10, 2012
Views: 407 | Hits 9

There are certain things in the world that are hard to comprehend for us no matter how much we study about them and try to learn from others' experiences, and one of these vague things in wor...

VexCL: Vector expression template library for OpenCL

The Code Project Latest Articles, July 3, 2012
Views: 480 | Hits 2

This article is an introduction to VexCL. VexCL is vector expression template library created for ease of C++ based OpenCL development....

Splitting Pascal/Camel Case with RegEx Enhancements

The Code Project Latest Articles, July 3, 2012
Views: 426 | Hits 5

Splitting Pascal/Camel Case with RegEx Enhancements...

Using RegEx with JavaScript

The Code Project Latest Articles, July 2, 2012
Views: 431 | Hits 11

Using a Regular Expression within a Javascript to validate user input...

Using RegEx with Javascripts

The Code Project Latest Articles, July 1, 2012
Views: 440 | Hits 19

Using a Regular Expression within a Javascript to validate user input...

Understanding a Simple Async Program

C# Frequently Asked Questions, June 26, 2012
Views: 511 | Hits 37

by Alan Berman The Async feature in Visual Studio 2012 RC makes it easy to invoke asynchronous methods. If you mark a method with or async modifier, you can use the await operator in the method. When ...

A Tiny Javascript Framework for common validation scenarios.

The Code Project Latest Articles, June 20, 2012
Views: 375 | Hits 28

This article describes some reusable JavaScript functions that can be used to create the input fields which accept some specific type of data. It also provides functions to validate the data based on ...

RadGrid for ASP.NET AJAX boosted with new features in Q2 2012

the telerik blogs, June 8, 2012
Views: 503 | Hits 4

Telerik's ASP.NET AJAX Grid control has grown with two new long-awaited members. Starting with the Q2 2012 Beta release we have introduced the option to add MultiColumn headers to RadGrid and a new fl...

The Telerik WinForms suite boasts RadAutoCompleteBox, a tokenized Outlook-like control out of the box

the telerik blogs, June 1, 2012
Views: 1,522 | Hits 2

Q2 2012 is coming close, so we decided that its time to gear you up for all the great goodies that are on their way. Today, we are going to show off one highly requested control in our Public Issue Tr...

10 Tips for Better Meditation

Bipin Joshi.com :: Thoughts on .NET, Life, Yoga and more, May 23, 2012
Views: 122 | Hits 1

Meditation is an art as well as science. A proper meditation session not only gives satisfaction to a Yoga aspirant but also gives better benefits. The quality of meditation depends on many factors, s...

Strong Password Validation

The Code Project Latest Articles, May 17, 2012
Views: 555 | Hits 23

Regular Expression for a strong password using jQquery AJAX....

The Regular Expression Skidmarklet

The Code Project Latest Articles, May 12, 2012
Views: 430 | Hits 8

From Pins to Poops, your bookmark bar can do more. Read about the Skidmarklet... a JavaScript Bookmarklet and lessons in RegEx....

Eye Dropper control in WPF

The Code Project Latest Articles, May 5, 2012
Views: 566 | Hits 22

Eye dropper control, used to pick color from the environment like the one in Expression Blend or Visual Studio Designer....

Validating gender dynamically using REGEX

The Code Project Latest Articles, April 19, 2012
Views: 431 | Hits 9

Validating gender dynamically using REGEX...

The Real Pain of Software Development [part 2]

youve been HAACKED, April 16, 2012
Views: 610 | Hits 24

Around eight years ago I wrote a blog post about Repetitive Strain Injury entitled The Real Pain of Software Development [part 1]. I soon learned the lesson that its a bad idea to have Part 1 in any b...