Showing Tag: "or" (Show all posts)

VS Code Extensions

Posted by jineesh uvantavida on Wednesday, February 22, 2023,
VS Code extensions allow you to add languages, tools, and debugging support to your installation, which helps to streamline the development workflow. The VS Code is highly extensible, so developers can directly plug into VS Code UI and actively contribute to the coding requirements.

Best VS Code Extensions

1) Live Server :- Helps you launch a local development server with a live reload feature for static and dynamic pages.
2) Remote – SSH :- Create your development environment using the dual c...

Continue reading ...
 

Top 5 Stored Procedure Performance Tips You Can Use

Posted by jineesh uvantavida on Friday, December 23, 2022, In : Tips & Ideas. 

Top five performance tips for Stored Procedures

In this post, we will dig into some super easy tips that can be used to speed up your stored procedures.

Knowing how to optimize stored procedures is important, so stick around and I’ll show top five stored procedure performance tips you can use today.

Let’s dig into some super easy tips you...


Continue reading ...
 

Protect a document with a password in Office365

Posted by jineesh uvantavida on Thursday, December 8, 2022, In : Tips & Ideas. 

Passwords are case-sensitive and can be a maximum of 15 characters long.

If you lose or forget your password, Word won't be able to recover it for you. Be sure to keep the a copy of the password in a safe place or create a strong password that you’ll remember.

For Windows :

  • Go to File > Info > Protect Document > Encrypt with Password.

  • Type a password, then type it again to confirm it.

    ...

Continue reading ...
 

Top Microsoft Teams Tips and Tricks

Posted by jineesh uvantavida on Wednesday, November 9, 2022, In : Tips & Ideas. 
Knowing how Microsoft Teams works is one thing. Knowing how to use it well is another. Fortunately, there are plenty of smart tricks experienced users rely on to make Teams more effective and efficient.

1. Use Keyboard Shortcuts
Keyboard shortcuts are a secret weapon to speeding up the most common tasks. It can take a while before you feel like you know your way around these essentials, but once you do, it becomes less than a second’s work to perform a command, instead of fumbling for a menu....

Continue reading ...
 

How to Remove 'Show More Options' From the Windows 11 Context Menu - Command Prompt

Posted by jineesh uvantavida on Thursday, June 30, 2022, In : Tips & Ideas. 
How to Remove 'Show More Options' From the Windows 11 Context Menu - Command Prompt

Open Windows Terminal, Command Prompt, or PowerShell.

Disable:
reg add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve

Enable:
reg delete "HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f​

 Restart Explorer or reboot.

Continue reading ...
 

The four basic principles of object-oriented programming (c#)

Posted by jineesh uvantavida on Monday, June 7, 2021, In : c# 
  •  Abstraction 
    1. Abstraction is "To represent the essential feature without representing the background details."
    2. Abstraction lets you focus on what the object does instead of how it does it.
    3. Abstraction provides you a generalized view of your classes or objects by providing relevant information
    4. Abstraction is the process of hiding the working style of an object, and showing the information of an object in an understandable manner.
  • Encapsulation 
    1. Hiding the internal state and functionality of an objec...

Continue reading ...
 

Difference between == and === operator in JavaScript

Posted by jineesh uvantavida on Monday, June 7, 2021,
 ‘==’ operator
  • check abstract equality i.e. it does the necessary type conversions before doing the equality comparison
 ‘===’ operator
  • strict equality i.e. it will not do the type conversion hence if the two values are not of the same type, when compared, it will return false

Continue reading ...
 

How to find List of Stored Procedures/ Functions in PostgresSQL Database

Posted by jineesh uvantavida on Wednesday, December 23, 2020,
Finding procedures without schema name

select n.nspname as schema_name, p.proname as specific_name, l.lanname as language, case when l.lanname = 'internal' then p.prosrc else pg_get_functiondef(p.oid) end as definition, pg_get_function_arguments(p.oid) as arguments from pg_proc p left join pg_namespace n on p.pronamespace = n.oid left join pg_language l on p.prolang = l.oid left join pg_type t on t.oid = p.prorettype where n.nspname not in (...
Continue reading ...
 

RazorTagHelper - DOTNET_HOST_PATH is not set -Error MSB4018

Posted by jineesh uvantavida on Wednesday, December 2, 2020, In : asp.net 

After updating VS 2019 16.8.2 There will be an error on compilation on any project:


dot net --version : 5.0.100

Severity Code Description Project File Line Suppression State

Error MSB4018 The "RazorGenerate" task failed unexpectedly.
System.InvalidOperationException: DOTNET_HOST_PATH is not set at Microsoft.AspNetCore.Razor.Tasks.DotNetToolTask.get_DotNetPath()
at Microsoft.AspNetCore.Razor.Tasks.DotNetToolTask.GenerateFullPathToTool()
at Microsoft.Build.Utilities.ToolTask.ComputePathToTool() a...


Continue reading ...
 

What Is Token-Based Authentication?

Posted by jineesh uvantavida on Friday, November 20, 2020, In : Tips & Ideas. 

Token-based authentication is a protocol which allows users to verify their identity, and in return receive a unique access token. During the life of the token, users then access the website or app that the token has been issued for, rather than having to re-enter credentials each time they go back to the same webpage, app, or any resource protected with that same token.


Auth tokens work like a stamped ticket. The user retains access as long as the token remains valid. Once the user logs out o...


Continue reading ...
 

Could not load file or assembly 'Newtonsoft.Json' or one of its dependencies. Manifest definition does not match the assembly reference

Posted by jineesh uvantavida on Friday, November 10, 2017, In : asp.net 

You can solve the issue by adding below lines in web.config file.

 <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
        <bindingRedirect oldVersion="0.0.0.0-8.0.0.0" newVersion="8.0.0.0"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

Continue reading ...
 

USB Modem not working on Windows 8 / 8.1

Posted by jineesh uvantavida on Sunday, October 12, 2014, In : Tips & Ideas. 

I have windows 8 RTM( Enterprise Edition ) running on Dell inspiron Laptop with Micromax MMX 300G.
well all versions of Micromax MMX modem will work fine.

Just follow the steps below:

Method 1 (Older Method works fine with Windows 8):

1. uninstall the software if already installed.2. open the modem in new windows and set its (modem_installation.exeand show_modem.exe ) compatibility to windows7 then         press OK.
3. Now install the software , then restart the system .
4. Connect the modem and st...


Continue reading ...
 

Printer not working in Windows7

Posted by jineesh uvantavida on Friday, April 13, 2012, In : Tips & Ideas. 
When a printer is installed properly and it showing working properly. But the printer is not printing any document. What we can do..? Just try this.. If it does not solve your issue.. try a google search once more.. :-)

1. Remove the USB cable connected to the computer USB port.
2. Remove the Device from the Devices and Printers in Control Panel.
3. Open Print Management ( Click on Windows icon and search for Print Management ).
4. Select Print Servers from left window, Select local ( with our co...
Continue reading ...
 

Installing CKEditor & CKFinder in Drupal

Posted by jineesh uvantavida on Saturday, January 7, 2012, In : Tips & Ideas. 
1. Download CKEditor from http://ckeditor.com/download
 
Then Extract it and copy the ckeditor folder to 
- " c:/xampp/htdocs/drupal/sites/all/modules/ " folder if it is xampp
- " c"/wamp/www/drupal/sites/all/modules/ " if it is wamp
 
2. Enable CKEditor module in Modules.
 
- Go to  Configuration Content authoring CKEditor         
edit full profile and change File Browser to CKFinder.

 
3. Open  sites/all/modules/ckeditor/ckfinder/config.php and  Delete function CheckAuthentication()
 
- af...
Continue reading ...
 

Intermediate guide to bit torrent

Posted by jineesh uvantavida on Saturday, December 17, 2011, In : Tips & Ideas. 
http://lifehacker.com/286607/intermediate-guide-to-bittorrent
Continue reading ...
 

Assigning short-cut keys to open Application in Windows

Posted by jineesh uvantavida on Monday, September 5, 2011, In : Tips & Ideas. 
    The simplest method to assign short cut key to open programs or folders.
        1. Create a shortcut of the application or program in the Desktop
        2. Right click on the shortcut and select "Properties"
        3. Under Properties Window, Under "short cut" tab, assign a key in "Short Cut Key" field.
        4. Normally it will be "None". By assigning any key, that will be assign as "Alt+Ctr+Key"
        5. Enjoy your time by opening programs...

    Next method is to download and ...
Continue reading ...
 
 

Translate This Page

 


Make a free website with Yola