blog.denouter.net
denouter.net: Debug a Visual Studio solution in Visual Studio Code on OSX
http://blog.denouter.net/2015/05/in-my-previous-post-i-showed-how-to.html
Under construction . . . Wednesday, May 06, 2015. Debug a Visual Studio solution in Visual Studio Code on OSX. In my previous post. I showed how to compile a .NET solution with Visual Studio Code with Mono on a Mac. This post shows how to set up debugging with Visual Studio Code with Mono on a Mac. Version": "0.1.0",. Name of configuration;. Workspace relative or absolute path to the program. Program": "bin/Debug/Hello.exe",. Automatically stop program after launch. Cwd": ".",. Port to attach to. I put T...
blog.denouter.net
denouter.net: April 2015
http://blog.denouter.net/2015_04_01_archive.html
Under construction . . . Thursday, April 30, 2015. Compile a Visual Studio solution in Visual Studio Code on OSX. Microsoft has launched Visual Studio Code. An IDE for C#, Javascript, Typescript and many more. It is a shell over Atom and runs also on OSX and Linux! I wanted to see if it is possible to compile a Visual Studio solution (.sln file from Windows) in Visual Studio Code on my Mac (using Mono). As you can see in the screenshot below; it worked! All I had to do is add a task. Command" : "xbuild",.
blog.denouter.net
denouter.net: March 2015
http://blog.denouter.net/2015_03_01_archive.html
Under construction . . . Tuesday, March 10, 2015. HUAWEI HG659 5G WLAN with iPad, iMac and MacBook Pro. Recently I received an HUAWEI HG695 router. It has a dual band wireless for 2.4 and 5 Ghz. But even the 5G was enabled on the router it did not show up on my wifi-list on my iMac, iPad and MacBook. The answer lies in one advanced WLAN setting:. Change the bandwidth from 20Mhz to 20/40Mhz and all works like a charm. Friday, March 06, 2015. JSON serialized object in NHibernate. I derived the mapping from...
blog.denouter.net
denouter.net: February 2010
http://blog.denouter.net/2010_02_01_archive.html
Under construction . . . Monday, February 08, 2010. Snow Leopard takes too long to sleep (not anymore). Usually it takes my iMac about 1 or 2 seconds to sleep (hibernate). Today it took about 25 seconds. I turned off my mac, started it again, but still it took about 25 seconds to sleep. You can use the command pmset -g log. Subscribe to: Posts (Atom). View my complete profile. Vind de goedkoopste LEGO! Snow Leopard takes too long to sleep (not anymore). LinqPad. Microsoft Access. Yet Another IT Blog.
blog.denouter.net
denouter.net: August 2012
http://blog.denouter.net/2012_08_01_archive.html
Under construction . . . Monday, August 13, 2012. NHibernate Linq force join. NHibernate uses lazy loading, so to prevent a 1-n query, you have to tell NHibernate to fetch associations as well. With Linq to NHibernate this is done with Fetch and FetchMany. In the example below you see a call to get an Order with the forced join with the associations I needed in a view. Subscribe to: Posts (Atom). View my complete profile. Vind de goedkoopste LEGO! NHibernate Linq force join. LinqPad. Microsoft Access.
blog.denouter.net
denouter.net: May 2012
http://blog.denouter.net/2012_05_01_archive.html
Under construction . . . Wednesday, May 23, 2012. CTRL and SHIFT key in jqGrid. I made a small snippet which allows you to use CTRL an SHIFT keys for multi-selecting rows in a jqGrid. Please note the custom function handleMultiSelect. Which is called by the beforeSelectRow. Event from the jqGrid extension. Click here for the demo and source. Inspired by the solution of Byron Cobb. Friday, May 04, 2012. CSS jQuery Mobile table. See here for the source and the demo : jQuery mobile table CSS.
blog.denouter.net
denouter.net: May 2015
http://blog.denouter.net/2015_05_01_archive.html
Under construction . . . Wednesday, May 27, 2015. Run PHP from Visual Studio Code. In my previous posts I explained examples using a solution file to compile and debug .NET (mono) in Visual Studio Code. This post shows how to set up a task to run PHP using the build in Development Server of PHP. In Visual Studio Code open the folder with the php file(s). Then start the Command Palette and choose Configure Task Runner. This creates a tasks.son file. Clear all and replace with the settings below:. Program"...
blog.denouter.net
denouter.net: November 2013
http://blog.denouter.net/2013_11_01_archive.html
Under construction . . . Wednesday, November 27, 2013. MS Access in LinqPad. Once in a while a legacy MS Access database passes my way. And for some reason these databases have made themselves indispensable and can not be ignored. Most of the time they provide in some core business data and I am being asked to extend reports or even extend the datamodel and application. Being very used to c# and linq/lambda and a huge fan of Joseph Albahari's LinqPad. LinqPad. Microsoft Access. Subscribe to: Posts (Atom).
blog.denouter.net
denouter.net: Compile a Visual Studio solution in Visual Studio Code on OSX
http://blog.denouter.net/2015/04/compile-visual-studio-solution-in.html
Under construction . . . Thursday, April 30, 2015. Compile a Visual Studio solution in Visual Studio Code on OSX. Microsoft has launched Visual Studio Code. An IDE for C#, Javascript, Typescript and many more. It is a shell over Atom and runs also on OSX and Linux! I wanted to see if it is possible to compile a Visual Studio solution (.sln file from Windows) in Visual Studio Code on my Mac (using Mono). As you can see in the screenshot below; it worked! All I had to do is add a task. Command" : "xbuild",.
blog.denouter.net
denouter.net: May 2014
http://blog.denouter.net/2014_05_01_archive.html
Under construction . . . Monday, May 19, 2014. NHibernate logging in Visual Studio output window. NHibernate 'show sql=true' does not log the generated queries to the output window of Visual Studio when working in ASP.NET MVC 4. I made a simple implementation for logging NHibernate queries in Visual Studio's output window, without use of third party loggers. Create an interceptor class, and override one method. Then create an instance of it in the OpenSession of the Factory. Subscribe to: Posts (Atom).