Useful tools for developers
https://jsbin.com - JS Bin is a web app specifically designed to help JavaScript and CSS folk test snippets of code, within some context, and debug the code collaboratively. JS Bin is an open-source collaborative web development debugging tool.
https://codeshare.io/ - An online code editor for interviews, troubleshooting, teaching & more… · Code with your team · Interview developers
[.....]
SUCCESS QUALITIES:Personally Accountable for Team Success. We unleash our edge together.Confident Achievers. We are bold.Intellectually Curious. We are sharp.Adaptable, Agile & Resilient. We are driven.Customer First. We are real. [.....]
Obsolete
what is Obsolete?
what is ObsoleuteAttribute?
Where is use Obsolete?
Meaning of Obsolete mean - no longer produced or used; out of date
- less developed than formerly or in a related species
1. Marks the program elements that are no longer in use. This class cannot be inherited.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden [.....]
Wordpress website hosting in IIS(Internet Information Services)
Installed PHP directly using php.iis.net.
You need to give the IUSR account Read/Write/Modify permission on your wp-content folder. then setting in web.config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters <system.webServer> <httpErrors errorMode="Detailed" /> <asp scriptErrorSentToBrowser="true"/> </system.webServer> <system.web> --> <customerrors mode="off"/> <compilation debug="true"/> [.....]
Build a Web and Mobile Application with Angular and NativeScript
Getting Started :
npm install -g @angular/cli
npm install -g @nativescript/schematics
npm install -g nativescript ng new angular-nativescript-project ng add @nativescript/schematics or one line command ng new --c=@nativescript/schematics --name=angular-nativescript-project --shared ng g component about ng g c contactus ng serve tns run android --bundle tns run ios --bundle
--control
npm i nativescript-ui-listview
For Textbox, label,radio button,
npm i nativescript-ui-dataform
For calender you can [.....]
How To Repair A Suspect Database In MSSQL
Possible Causes
The database could have become corrupted.
There is not enough space available for the SQL Server to recover the database during startup.
The database cannot be opened due to inaccessible files or insufficient memory or disk space.
The database files are being held by operating system, third party backup software etc.
There was an unexpected SQL Server Shutdown, power failure or a hardware failure.
Solution:
EXEC SP_resetstatus databaseName
ALTER DATABASE databaseName SET EMERGENCY
DBCC checkdb databaseName
ALTER DATABASE databaseName SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CHECKDB (databaseName, REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE databaseName SET MULTI_USER [.....]
How to catch JavaScript Errors with window.onerror
I’m working on a new responsive website for company that has a fair amount of JavaScript and that is viewed in lots of different browsers (mobile, tablet, desktop). Naturally we want to log our JavaScript exceptions and their stacktraces, just like we log server-side exceptions. It is impossible to test every combination of device and browser so we rely on logging to find the edge cases we miss in our testing.
The way we handle our JavaScript exceptions is to:
catch the exception. collect data about the useragent.
Save it to our logs by sending an ajax request with the data and the exception information.
[.....]