Facebook has released social media optimization protocol known as Open Graph Protocol. It facilitates articles on our website behaving as 'graph objects' which can interact with other facebook objects. More information can be found at http://ogp.me
Wednesday, December 19, 2018
Wednesday, December 5, 2018
Visual Studio extension to highlight all occurances of selected word
This is a useful visual studio extension. Just found its source code at
https://github.com/sunven/SelectionHighlight
I modified it to allow words beginning with @ or #. In MatchTagger.cs add this declaration:
Next, change foreach loop in private void
OnSelectionChanged(object sender, object e) like so:
That's it! It can now be built and added to our visual studio.
As a side note, also found out on stackoverflowhttps://stackoverflow.com/questions/9281662/how-to-debug-visual-studio-extensions that visual studio extensions can be debugged by add the following settings to first <PropertyGroup> in the extension's project file:
Reference: https://stackoverflow.com/questions/9281662/how-to-debug-visual-studio-extensions
https://github.com/sunven/SelectionHighlight
I modified it to allow words beginning with @ or #. In MatchTagger.cs add this declaration:
foreach (var c in text)
{
if (!char.IsLetterOrDigit(c)
&& !Array.Exists(allowedSpecialChars, ch => ch == c)) return;
}
As a side note, also found out on stackoverflowhttps://stackoverflow.com/questions/9281662/how-to-debug-visual-studio-extensions that visual studio extensions can be debugged by add the following settings to first <PropertyGroup> in the extension's project file:
<StartAction>Program</StartAction>
<StartProgram>$(DevEnvDir)\devenv.exe</StartProgram>
<StartArguments>/rootsuffix
Exp</StartArguments>
Subscribe to:
Comments (Atom)
Regex obfuscate email
Use this code in C# to obfuscate email using regex // Online C# Editor for free // Write, Edit and Run your C# code using C# Online Compile...
-
If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...
-
To install SQLServer module in powershell we need to add the nuget package provider first with command: Install-PackageProvider -Name NuGet ...
-
While querying for events in a list which fall under a specified time period, the infopath form works correctly in client side editor, but ...