Mark a function as obsolete in VB.NET
To mark a function or a property as obsolete in VB.NET, just put this instruction in front of it: < Obsolete(“This method is deprecated, use x instead.”) > _
To mark a function or a property as obsolete in VB.NET, just put this instruction in front of it: < Obsolete(“This method is deprecated, use x instead.”) > _
Do not underestimate the importance of your privacy. Give an eye to www.privacytools.io, it is a useful collection of programs and services to respect your privacy. Another useful resource is definitely spreadprivacy.com, the blog of…
window.onpageshow = function(evt) { if (evt.persisted) { document.body.style.display = “none”; location.reload(); } };
Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) Dim ex = Context.Server.GetLastError HttpContext.Current.Response(ex.ToString()) End Sub
To prevent access to the tomcat 8 Manager to all IPs except those authorized, it is necessary to configure the file manager.xml of the localhost application. The file should be found in the following path:…
This is a beta version, available only for premium users. Some optional parameters have been added, here is the complete list: collapseboolattr Boolean Remove attribute values from boolean attributes. Default is false collapsewhitespace String Possible…
JS Minify 1.3.5, CSS Minify 1.4.3, HTML Minify 1.2.2 and XML Minify 1.0.2 released with fullscreen mode support. You can now use these tools at full screen, without annoying advertising, thanks to a clean and…
JS Minify 1.3.4 released. What’s new in the newest version: Added option collapse variables, collapse single-use non-constant variables. Added option apply optimizations to binary nodes, attempts to negate binary nodes, e.g. a = !b && !c →…
<?php // Your Script here. $time = microtime(true) – $_SERVER[“REQUEST_TIME_FLOAT”]; echo “Execution Time: {$time}”; // Execution Time: 1.5140309333801
Before you can use this example, you need to install go-sqlite3. Here is how to select rows from a Sqlite database with Go, the programming language of google. package main import ( “fmt” “database/sql” _…