Why and How To: Grunt and Gulp The following articles will give you a very good overview on Grunt and Gulp. Grunt and Gulp are package managers for front end development. npm (node package managers is another alternative, some prefer to stick to npm than using grunt and gulp). Grunt and gulp also needs npm. …
Category: C# – Misc
Jul 26
3rd part write a c# tool to create HTML to PDF #CSS #Root #By Sayed Ahmed
3rd part write c sharp tool to create HTML/CSS to pdf [youtube http://www.youtube.com/watch?v=LlYtJtiDu14?list=UUHrtq0pV8mEuTLGd2-Lp9ig&w=854&h=510] From: http://sitestree.com/?p=1684 Categories:CSS, Root, By Sayed AhmedTags: Post Data:2014-11-18 21:58:08 Shop Online: https://www.ShopForSoul.com/ (Big Data, Cloud, Security, Machine Learning): Courses: http://Training.SitesTree.com In Bengali: http://Bangla.SaLearningSchool.com http://SitesTree.com 8112223 Canada Inc./JustEtc: http://JustEtc.net (Software/Web/Mobile/Big-Data/Machine Learning) Shop Online: https://www.ShopForSoul.com/ Medium: https://medium.com/@SayedAhmedCanada
Jul 11
Creating and Consuming XML Web Services #Misc .Net
Brought from our old-site (this short note can be as old as 2007): http://salearningschool.com/displayArticle.php?table=Articles&articleID=1120&title=Creating%20and%20Consuming%20XML%20Web%20Services visual studio .net -> File Menu -> new project -> Visual Basic/C# projects ->ASP.Net Web Service -> The project will get created Some Files as created: AssemblyInfo.cs/vb: sharing and reuse in the CLR, Web.config, service1.asmx, service1.asmx.cs/vb Create web service methods in …
Jul 10
Overview of XML programming in Dot Net #Misc .Net
Brought from our old-site (a very old short-note): http://salearningschool.com/displayArticle.php?table=Articles&articleID=625&title=%3Ch2%3EOverview%20of%20XML%20programming%20in%20Dot%20Net%3C/h2%3E Overview of XML programming in Dot Net XML DOM (Document Object Model) Three ways to read XML documents in dot net are: XML DOM, SAX, XMLReader. DOM loads entire XML data into memory for processing, it is both read-write, I mean you can change XML data …
Jul 10
XML Related Classes in .Net #Misc .Net
Brought from our old site (yes, very old short-note): http://salearningschool.com/displayArticle.php?table=Articles&articleID=633&title=XML%20Related%20Clasees%20in%20.Net XML in ADO.net VB.NET C#.NET XML is the foundation of .NET. .NET internally represents data as XML and hence can provide inter-operability and interaction among applications written in different platforms and languages [.Net compatible]. XmlReader In .Net you can use XML with SqlCommand object. You …
Jul 09
What is Monotouch? #Mobile Development #Root #By Sayed Ahmed
What is Monotouch? A mobile development platform [to develop applications for mobile devices] The apps can run on multiple platforms including Windows, Mac and Android platforms Based on .Net and C# A good choice for .Net developers to develop mobile applications. Faster application development Can be seen as an alternative to Objective-C Advantage over Objective …
Apr 09
C#: Handling Multiple Keyboards and Multiple Microphones in the Same Software #Root
Brought from our old-site: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1048&title=C#:%20Handling%20Multiple%20Keyboards%20and%20Multiple%20Microphones%20in%20the%20Same%20Software I was working for software that needed multiple keyboards support along with multiple microphones support; sure in C#, Visual Studio, and MS Access Database. Multiple keyboards Support: Detecting multiple keyboards/devices: GetRawInputDeviceList( IntPtr.Zero, ref deviceCount, (uint)dwSize ) returns the number of devices detected You can get a project that detects multiple …
Apr 09
Attributes of a Web Method (.Net, XML Programming) #Root
Brought from: http://salearningschool.com/displayArticle.php?table=Articles&articleID=1118&title=Advanced%20XML%20Web%20Services%20Programming Attributes of a web method. Using attributes, you can define the behavior of the methods exposed. Syntax VB.net Public Function …. C# [WebMethod (BufferResponse=false)] public int HelloWorld(){ …… } We just used BufferResponse attribute in the method declaration above. Some other attributes: Attributes: BufferResponse: Should the response be buffered? CacheDuration: Number of …
Mar 25
Visual Studio, C# : Why should or should not you use Code Contracts #Root #By Sayed Ahmed
http://programmers.stackexchange.com/questions/211337/why-would-i-use-code-contracts Why Use? To avoid null reference exceptions To avoid critical and costly failure of code/software However, code may look over crowded, and can be difficult to maintain and extend if you use Contracts. If yours is not a critical application, and in general, failures can never be that costly for you: then you …
Mar 24
Some C# Stuff (or similar) as I used #Root #By Sayed Ahmed
Sayed Ahmed Some C# Stuff (or similar) as I used HP var_dump in C# to dump array or objects? http://stackoverflow.com/questions/23824899/php-var-dump-in-c-sharp-to-dump-array-or-objects How to pass an object array from javascript to server http://stackoverflow.com/questions/12229530/how-to-pass-an-object-array-from-javascript-to-server How to Convert JSON object to Custom C# object? http://stackoverflow.com/questions/2246694/how-to-convert-json-object-to-custom-c-sharp-object The following did work for me JavaScriptSerializer serializer = …