
CONFICIENT.WORDPRESS.COM
Conficient Blog | Random bits of tech from @conficientRandom bits of tech from @conficient
http://conficient.wordpress.com/
Random bits of tech from @conficient
http://conficient.wordpress.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Tuesday
LOAD TIME
0.3 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
14
SITE IP
192.0.78.12
LOAD TIME
0.254 sec
SCORE
6.2
Conficient Blog | Random bits of tech from @conficient | conficient.wordpress.com Reviews
https://conficient.wordpress.com
Random bits of tech from @conficient
May | 2015 | Conficient Blog
https://conficient.wordpress.com/2015/05
Random bits of tech from @conficient. TypeScript Module Resolution and requireJs. Step-by-Step Guide to Getting SSL for Free using LetsEncrypt on Windows IIS. RequireJS, TypeScript and Knockout Components. An IT Perspective on Scottish Independence. May 20, 2015. May 20, 2015. I have a HP Microserver N36L edition (one of the first ones) with a couple of 2TB disks mirrored as a backup server. Yesterday one of the drives started to make noises, so after a backup, I checked out what was up. The failed disk ...
June | 2014 | Conficient Blog
https://conficient.wordpress.com/2014/06
Random bits of tech from @conficient. TypeScript Module Resolution and requireJs. Step-by-Step Guide to Getting SSL for Free using LetsEncrypt on Windows IIS. RequireJS, TypeScript and Knockout Components. An IT Perspective on Scottish Independence. June 18, 2014. June 18, 2014. Using Google Drive API with C# – Part 2. Welcome to Part 2 which covers the authorization process. If you have not yet set up your Google API access, please read part 1. In OpenAuth ‘Reception’ is the authentication request that ...
May | 2013 | Conficient Blog
https://conficient.wordpress.com/2013/05
Random bits of tech from @conficient. TypeScript Module Resolution and requireJs. Step-by-Step Guide to Getting SSL for Free using LetsEncrypt on Windows IIS. RequireJS, TypeScript and Knockout Components. An IT Perspective on Scottish Independence. May 24, 2013. Excel Art – The New ASCII Art? Reading my daily CodeProject newsletter. Today, I came across this article. About a Japanese artist who uses the graphic editing tools in Excel to create art. If you know C# this is not a problem. The resulting out...
August | 2013 | Conficient Blog
https://conficient.wordpress.com/2013/08
Random bits of tech from @conficient. TypeScript Module Resolution and requireJs. Step-by-Step Guide to Getting SSL for Free using LetsEncrypt on Windows IIS. RequireJS, TypeScript and Knockout Components. An IT Perspective on Scottish Independence. August 19, 2013. August 19, 2013. ASPNET MVC attribute routing. Our site has customers, and we have different services for these customers. I’ve partitioned everything customer-related into it’s own area, so that the base URL for it is /Customer/. I don’t hav...
February | 2014 | Conficient Blog
https://conficient.wordpress.com/2014/02
Random bits of tech from @conficient. TypeScript Module Resolution and requireJs. Step-by-Step Guide to Getting SSL for Free using LetsEncrypt on Windows IIS. RequireJS, TypeScript and Knockout Components. An IT Perspective on Scottish Independence. February 4, 2014. February 4, 2014. Are you a .NET developer? Got a list of strings you want to join? This is what I and almost every other developer I’ve seen does:. Values.ToArray() ;. This overload takes an IEnumerable string so now you can write:.
TOTAL PAGES IN THIS WEBSITE
20
AngularJS feat. Web API – chsakell's Blog
https://chsakell.com/2015/01/31/angularjs-feat-web-api
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. AngularJS feat. Web API. AngularJS feat. Web API. January 31, 2015. Bull; ( 12. Developing Web applications using AngularJS. What project template to use? How and where to structure AngularJS? What happens in page refreshes? What type of authentication to use and how AngularJS can help with that? We are going to answer all these questions by building a Gadget Store. Web application using AngularJS. Public class Gad...
ASP.NET Web API Unit Testing – chsakell's Blog
https://chsakell.com/2015/05/10/asp-net-web-api-unit-testing
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. ASPNET Web API Unit Testing. ASPNET Web API Unit Testing. May 10, 2015. Bull; ( 9. Web API Unit Testing. ASPNET Web API stack. Has many aspects that firstly must be well understood before writing unit tests against it and that’s what makes it difficult. This post is a full stack. Web API Solution Best Practices. Create a loosely coupled, scalable and testable Web API application. Entity Framework Unit testing.
Christos S. – chsakell's Blog
https://chsakell.com/author/chsakell
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. Chris is a passionate Software Engineer with significant experience in Web applications development using Microsoft technologies and AngularJS. Angular 2 CRUD, modals, animations, pagination, datetimepicker and much more. June 27, 2016. Bull; ( 30. Building REST APIs using ASP.NET Core and Entity Framework Core. June 23, 2016. Bull; ( 24. Migrating ASP.NET 5 RC1 apps to ASP.NET Core. May 21, 2016. Bull; ( 9. Someti...
ASP.NET MVC Session state Performance Issue – chsakell's Blog
https://chsakell.com/2015/02/28/asp-net-mvc-session-state-performance-issue
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. ASPNET MVC Session state Performance Issue. ASPNET MVC Session state Performance Issue. February 28, 2015. Bull; ( 3. I cannot recall any real Web Application that doesn’t make use of the Session State. Feature, the one that is capable to store data that are available across multiple requests from the same browser. More over, in this very modern times, Web Applications tends to make extensive use of Ajax. System...
AngularJS feat. Web API – Enable Session State – chsakell's Blog
https://chsakell.com/2015/03/07/angularjs-feat-web-api-enable-session-state
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. AngularJS feat. Web API – Enable Session State. AngularJS feat. Web API – Enable Session State. March 7, 2015. Bull; ( 6. Have you ever tried to use the Session object while using the Web API? If you did so, you must be dissapointed seeing that. System.Web.HttpContext.Current.Session. You can read the first post here. On a Page refresh, user looses all cart items since they are currently stored in javascript objects.
Web API Custom Routing Constraints – chsakell's Blog
https://chsakell.com/2013/10/13/web-api-custom-routing-constraints
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. Web API Custom Routing Constraints. Web API Custom Routing Constraints. October 13, 2013. Bull; ( 11. Have you ever tried to restrict a Web API route. In the way to allow only certain kind of values for specific segments? You will probably have and the most common restriction someone will find out on the web is the following route:. The above code registers. A route where the id. This one though would work just fine.
Web API powerful Custom Model Validation with FluentValidation – chsakell's Blog
https://chsakell.com/2015/01/17/web-api-powerful-custom-model-validation-with-fluentvalidation
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. Web API powerful Custom Model Validation with FluentValidation. Web API powerful Custom Model Validation with FluentValidation. January 17, 2015. Bull; ( 5. Were introduced, developers found an easy way for setting up their database (especially those who use Code First development) while adding at the same time validation. ModelState.IsValid) { return BadRequest(ModelState); } else { / }. A clean solution to this p...
BrowseDotNET: Manage your .NET Solutions and code snippets – chsakell's Blog
https://chsakell.com/2015/04/18/browsedotnet-manage-your-net-solutions-and-code-snippets
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. BrowseDotNET: Manage your .NET Solutions and code snippets. BrowseDotNET: Manage your .NET Solutions and code snippets. April 18, 2015. Bull; ( 10. Is an open source ASP.NET MVC Web Application. I created, that can help you manage your computer’s .NET solutions and code samples (programming language indepented). In one place. What does it solve? Entity Framework Code First development. From the top menu, select Reg...
All In One – chsakell's Blog
https://chsakell.com/upcoming-events
Anything around ASP.NET MVC,WEB API, WCF, Entity Framework and AngularJS. ASPNET Core 1.0. NET Web Application Development by Chris S. Angular CRUD ops, Modals, Animations, Pagination, DateTimePicker, Directives. REST APIs using ASP.NET Core and Entity Framework Core. ASPNET Core, Angular 2. Migrating ASP.NET 5 RC1 apps to ASP.NET Core. Dynamic templates in AngularJS. Building multi-client APIs in ASP.NET. Cross-platform Single Page Applications with ASP.NET 5, Angular 2 and TypeScript. ADONET, ASP.N...
TOTAL LINKS TO THIS WEBSITE
14
Bucks Research | Professional family and house history in Buckinghamshire and beyond
Professional family and house history research. Carry out research from a quick record check to a full family history report. Provide professional advice if you don’t know where to start or have hit that brick wall. Supply photocopies or digital images of documents held at record offices. Supply a range of family tree packages and gift vouchers. Trace the history of your house to determine when it may have been built and who lived there in the past. Click to load Bucks Research Blog. Council meeting disc...
Conficiency.com
phpinfo()
PHP Version 5.3.29. Linux v36090.2is.nl 4.4.0-042stab120.19 #1 SMP Mon Feb 20 20:05:53 MSK 2017 x86 64. Jun 7 2016 16:33:22. Configuration File (php.ini) Path. Scan this dir for additional .ini files. Additional .ini files parsed. Https, ftps, compress.zlib, compress.bzip2, php, file, glob, data, http, ftp, phar, zip. Registered Stream Socket Transports. Tcp, udp, unix, udg, ssl, sslv3, tls. This program makes use of the Zend Scripting Language Engine:. Bzip2decompress, bzip2.compress. Log errors max len.
Conficiens Technology
Conficient - Home Page
Competitive Advantage Through Systems. Make sure your business isn't losing out to your competitors! Why are some businesses profitable, efficient and well run? Of course there are many possible reasons, but one that can make a major difference is the quality of their systems. Who are we working for right now? Our main client at present is the business telecommunications provider V Networks. Conficient has designed and developed Anvil. A web-based secure customer management and billing platform.
Conficient Blog | Random bits of tech from @conficient
Random bits of tech from @conficient. TypeScript Module Resolution and requireJs. Step-by-Step Guide to Getting SSL for Free using LetsEncrypt on Windows IIS. RequireJS, TypeScript and Knockout Components. An IT Perspective on Scottish Independence. May 16, 2016. TypeScript Module Resolution and requireJs. I have a web project which uses requireJS with TypeScript and the base URL is set as. Most Nuget packaged script libraries (jquery, etc.) install the script into. Folder, e.g. And Knockout components in.
Teaching software - one screencast at a time
Teaching software - one screencast at a time. I love to help people to understand their software. Screencasts are my tool of choice. Wednesday, June 06, 2007. 150 Open Office help topics with screencasts. Copied from our new blog location. Plan-B for OpenOffice.org. Celebrates fast expansion of its help topics supported by screencasts. Within the last two weeks, we were able to grow the number of screencasts by 50%. Most new screencasts deal with paragraph. Define space above paragraphs. OpenOffice.o...
NEW Conficio - home of Plan-B technology
Does Plan-A serve you well? Jul 30th, 2007. Plan-B for OpenOffice.org surpasses 250 screencasts. Plan-B for OpenOffice.org adds new help topics supported by short videos (screencasts). Melrose, MA - Jul. 30, 2007. Has announced that its technical support website Plan-B for OpenOffice.org. Users of OpenOffice.org can explore the growing number of videos at http:/ plan-b-for-openoffice.org/index. Nov 14th, 2006. Plan-B for OpenOffice.org public beta test. Melrose, MA - Nov. 14, 2006. June 20th, 2006. Kaj K...
Home Page
Conficio latin for complete. That’s the type of executive support / advisory service we offer to the small-to-medium sized enterprise (SME) sector. We exist to help business owners save time and make money by giving them access to the expertise they need to. Your business may have reached a point whereby it's too big for you to have your finger on the pulse regarding all of your business's activities. You have a project that needs completion, but don't have the resources at your disposal to do it.
conficio (PIXXXU) - DeviantArt
Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) " class="mi". Window.devicePixelRatio*screen.width 'x' window.devicePixelRatio*screen.height) :(screen.width 'x' screen.height) ". Join DeviantArt for FREE. Forgot Password or Username? Traditional Art / Student. Deviant for 2 Years. This deviant's full pageview. Last Visit: 10 hours ago. This is the place where you can personalize your profile! By moving, adding and personalizing widgets.
conficio.net - Crazy Domains
Search and register domain names. Move your domains to us FREE. Everything you need for your domains. Express cheap domain renewal. Control your CNAME, MX and A records. 700 New global domains. Get the domain name you want. Find who owns a particular domain. Earn points with every purchase. Sell domains under your brand. Get paid commission on referrals. Register your domain and Get Started Online. Fast, reliable space for your website. Web Hosting - Transfer. Move your website and email to us. Activate ...
SOCIAL ENGAGEMENT