Posts

Defensive Programming Approach - A developer must have this skill

Image
Defensive programming is a form of defensive design intended to ensure the continuing function of a piece of software under unforeseen circumstances. Defensive programming practices are often used where high availability, safety or security is needed — Wikipedia Defensive programming techniques are used especially when a piece of software could be misused mischievously or inadvertently to catastrophic effect. # Defensive programming is an approach to improve software and source code, in terms of: # General quality – reducing the number of software bugs and problems. # Making the source code comprehensible – the source code should be readable and understandable so it is approved in a code audit. # Making the software behave in a predictable manner despite unexpected inputs or user actions Key points in order to achieve a Defensive Programming approach.These are as follows. 1.Don’t trust developers 2.Never trust user input 3.Use database abstraction 4.Don’t

Zepline - Minimise the gap between UX/UI Designer and Developer(Web,Mobile)

Image
Designers and developers(Web,Mobile) should always work together to build products that delight users all the way from idea to production. Zeplin automatically generates accurate specs, assets and code snippets from designs—tailored for the platform(Web,Android,iOS) you’re developing for. No more getting lost in design files. No need to change how you design, just export your file in one click using our Sketch, Adobe XD CC, Figma, Adobe Photoshop CC plugins. References :- Zeplin :- https://zeplin.io/why-zeplin Quick Demo :- https://www.youtube.com/watch?v=tHmzAytSgpI Downloads :- https://support.zeplin.io/quick-start/downloading-mac-and-windows-apps Photoshop :- https://support.zeplin.io/quick-start/exporting-designs-from-photoshop

Test & Feedback was never so easy as with Test & Feedback extension

Image
Anyone can now test web apps and give feedback, all directly from the browser on any platform: Windows, Mac, or Linux. The Test & Feedback extension helps teams perform exploratory testing and provide feedback. Everyone in the team, such as developers, product owners, managers, UX or UI engineers, marketing teams, early adopters, and other stakeholders can use the extension to submit bugs or provide feedback and contribute to the quality of your product. https://marketplace.visualstudio.com/items?itemName=ms.vss-exploratorytesting-web&utm_source=vsts%20XT&utm_medium=referral&utm_campaign=vsts%20XT%20tip

Available Technology Stack to Create Apps for Mobile

Image
Since the impact of mobile applications is ubiquitous in the whole IT industry, there are numerous ways to create an app. There are various ways to build mobiles/handheld device apps into different technologies and within those those clusters into actual products or implementations. 1.Native Technology Stack Apple Xcode (iOS): With everything you need to create amazing apps for Apple platforms, Xcode is unbelievably quick and consistently smooth while editing even the largest files. It also understands your code better than ever, so you can select and edit the structure or even transform the selection directly in the editor. Powerful new refactoring tasks happen in place, renaming symbols across Swift, Objective-C, and even user interface files without skipping a beat. IntelliJ AppCode (iOS): It is Smart IDE for iOS mobile App development.Appcode provide Intelligent code assistance feature(Smart editor,Refactorings & and code generation,Code analysis),Built-in tools &am

failed to access iis metabase asp.net

http://www.blogger.com/img/blank.gif set the userName to SYSTEM in the processModel of the machine.config file, the http://www.blogger.com/img/blank.gifappliaction works just fine. Omitting the userName attribute gives me the error. From reading other posts, this is indicative of a permissions problem. So, without specifying the userName, I tried the application while running filemon, but I don't see any file access getting denied like I expected to see based on the posts I have read. step1:- aspnet_regiis -i Step2:- aspnet_regiis -ga ASPNET http://www.getitshare.com http://www.shriashoka.com

IIS 7.0 Issues

Breaking Changes for ASP.NET 2.0 applications running in Integrated mode on IIS 7.0 ASP.NET 2.0 applications on IIS 7.0 are hosted using the ASP.NET Integrated mode by default. This new mode enables a myriad of exciting scenarios including using super-valuable ASP.NET features like Forms Authentication for your entire Web site, and developing new ASP.NET modules to do things like URL rewriting, authorization, logging, and more at the IIS level. For more information about the ASP.NET Integration in IIS 7.0, see: ASP.NET Integration with IIS7. As you know, with great power comes great responsibility. Similarly, with making ASP.NET applications more powerful in IIS 7.0 comes the responsibility of making sure that existing ASP.NET applications continue to work. This has been a major challenge for us as we re-architected the entire core engine of ASP.NET, and in the end we were highly successful in meeting it. As a result, most ASP.NET applications should work without change. This post l

How to Implement Dynamic CSS File in ASP.NET

at ASPX page put this add this in title tag and Page Load Event pagename.aspx.cs if (!Page.IsPostBack) { if (Request.Browser.Browser == "IE" && Request.Browser.Version == "7.0") //&& Request.Browser.Version = "7") { lnkcss.Attributes.Add("href", "style/styleIE7.css"); } else { lnkcss.Attributes.Add("href", "style/style1.css"); } }