Skip to content

Andreas Plahn Blog

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

Category: Uncategorized

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

.NET Concepts Simplified For Interviews: Shallow Copy and Deep Copy in C#

http://seesharpconcepts.blogspot.se/2012/05/shallow-copy-and-deep-copy-in-c.html

Author Andreas PlahnPosted on August 29, 2014Categories UncategorizedLeave a comment on .NET Concepts Simplified For Interviews: Shallow Copy and Deep Copy in C#

Posts navigation

Previous page Page 1 … Page 60 Page 61 Page 62 … Page 75 Next page

Recent Posts

  • Setup Tailwind in Angular
  • Seamless data fetching with httpResource | Angular Blog
  • How to list Azure environment variables in a release job step for debugging
  • Getting started with Azure Devops MCP in VS Code
  • All About Angular 21 New Signal Forms
  • .NET (71)
  • .NET Core (27)
  • Agile (1)
  • AI (2)
  • Ajax (3)
  • Angular (70)
  • AngularJS (6)
  • Api (1)
  • Architecture (13)
  • ASP.NET (35)
  • ASP.NET Core (7)
  • Azure (19)
  • Bicep (yaml) (1)
  • 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 (20)
  • TeamCity (2)
  • Testing (26)
  • TFS (2)
  • Tips & Tricks (120)
  • Troubleshooting (5)
  • TypeScript (7)
  • Uncategorized (746)
  • Upgrade (1)
  • Useful tool (136)
  • Useful website (10)
  • Visual Studio (79)
    • Visual Studio Extensions (21)
  • VS Code (14)
  • VSTS (1)
  • Web Services (5)
  • Webforms (4)
  • WebStorm (10)
  • What? Why? How? (1)
  • Windows (17)
Andreas Plahn Blog Proudly powered by WordPress