Skip to content

Andreas Plahn Blog

My bookmarks and blogposts regarding Software Development in .NET, C#, Angular, JavaScript, CSS, Html

AngularJS Tutorial: a comprehensive 10,000 word guide

http://www.airpair.com/angularjs

Author Andreas PlahnPosted on October 11, 2014Categories UncategorizedLeave a comment on AngularJS Tutorial: a comprehensive 10,000 word guide

Simple bat script for keeping site up and running

keepsitealive.bat:

@echo off
:start
cls
echo This is a loop
wget http://mysite.localhost --spider
timeout /t 60 /nobreak
goto start

The script runs a get request against the url given every 60 seconds.
–spider indicates wget should not download anything.
Script above uses wget

Author Andreas PlahnPosted on October 7, 2014Categories Tips & Tricks, Uncategorized, Useful toolLeave a comment on Simple bat script for keeping site up and running

Plunker online js html css editor

Smart online editor for testing out and sharing js, html and css. E.g. try out angular.js, jQuery etc.

http://plnkr.co/

Author Andreas PlahnPosted on September 29, 2014Categories UncategorizedLeave a comment on Plunker online js html css editor

Getting Started with Mustache.js in ASP.NET MVC

http://www.itorian.com/2013/09/getting-started-with-mustachejs-in-mvc.html

Author Andreas PlahnPosted on September 29, 2014Categories UncategorizedLeave a comment on Getting Started with Mustache.js in ASP.NET MVC

c# – Check if ‘T’ inherits or implements a class/interface – Stack Overflow

typeof(IEmployee).IsAssignableFrom(typeof(T))

via c# – Check if ‘T’ inherits or implements a class/interface – Stack Overflow.

Author Andreas PlahnPosted on September 27, 2014Categories C#, UncategorizedLeave a comment on c# – Check if ‘T’ inherits or implements a class/interface – Stack Overflow

MVC5 + EF6 ContosoUniversity code first approach using MySQL

How to, see link below.
Blogs View.

Author Andreas PlahnPosted on September 24, 2014Categories .NET, Entity Framework, MySQL, UncategorizedLeave a comment on MVC5 + EF6 ContosoUniversity code first approach using MySQL

On Writing Maintainable Code | Jeremy D. Miller

http://codebetter.com/jeremymiller/2006/12/06/on-writing-maintainable-code/

Author Andreas PlahnPosted on September 12, 2014Categories UncategorizedLeave a comment on On Writing Maintainable Code | Jeremy D. Miller

Introducing Gulp, Grunt, Bower, and npm support for Visual Studio – Scott Hanselman

http://www.hanselman.com/blog/IntroducingGulpGruntBowerAndNpmSupportForVisualStudio.aspx

Author Andreas PlahnPosted on September 7, 2014Categories UncategorizedLeave a comment on Introducing Gulp, Grunt, Bower, and npm support for Visual Studio – Scott Hanselman

Continuous Tests – Mighty Moose

http://continuoustests.com/

Author Andreas PlahnPosted on September 6, 2014Categories UncategorizedLeave a comment on Continuous Tests – Mighty Moose

Get date from 60 days ago in SQL

Like this:
SELECT * FROM MyTable
WHERE myTable.Created > DATEADD(day, -60, GETDATE())

via DATEADD (Transact-SQL).

Author Andreas PlahnPosted on September 3, 2014Categories SQL, UncategorizedLeave a comment on Get date from 60 days ago in SQL

Posts navigation

Previous page Page 1 … Page 96 Page 97 Page 98 … Page 111 Next page

Recent Posts

  • Testing Components with children – Testing Angular
  • “Expression has changed after it was checked” – error in Angular
  • Angular Testing Library | Testing Library
  • Alpine.js
  • API rate limiter in .NET Core 8
  • .NET (70)
  • .NET Core (27)
  • Agile (1)
  • AI (1)
  • Ajax (3)
  • Angular (64)
  • AngularJS (6)
  • Api (1)
  • Architecture (11)
  • ASP.NET (35)
  • ASP.NET Core (7)
  • Azure (17)
  • Blazor (2)
  • C# (34)
  • Css (30)
  • Data access (5)
  • Elasticsearch (1)
  • Entity Framework (3)
  • EPiServer (66)
    • Commerce (15)
    • Find (1)
  • Error (22)
  • Frontend (34)
  • GIT (17)
  • Html (6)
  • Html5 (7)
  • IDE (6)
  • IIS (12)
  • JavaScript (64)
  • jQuery (14)
  • Linux (3)
  • Mobile (1)
  • MVC (4)
  • MySQL (2)
  • Node.js (2)
  • Octopus (1)
  • Open Source (2)
  • Optimization (11)
  • PowerShell (3)
  • ReSharper (5)
  • Responsive (1)
  • Security (2)
  • Selenium (7)
  • SEO (2)
  • Software Practises (3)
  • SQL (19)
  • TeamCity (2)
  • Testing (26)
  • TFS (2)
  • Tips & Tricks (116)
  • Troubleshooting (5)
  • TypeScript (7)
  • Uncategorized (737)
  • Upgrade (1)
  • Useful tool (134)
  • Useful website (9)
  • Visual Studio (79)
    • Visual Studio Extensions (21)
  • VS Code (13)
  • VSTS (1)
  • Web Services (5)
  • Webforms (4)
  • WebStorm (10)
  • What? Why? How? (1)
  • Windows (16)
Andreas Plahn Blog Proudly powered by WordPress