Tutorial by Topics: str

Modules exist to be extended. You cannot change the app/code/ files without prohibiting any future updates. Instead we add a module to the app/code/local directory (the local directory may be missing, if so, it needs to be manually created. This is common in later versions of Magento) for added cu...
Option Strict { On | Off } Option Strict On is a recommended good practice with Visual Basic .Net. It helps you as the developer to produce cleaner, more stable, more bug-free, more maintainable code. In some cases it may also help you write programs with better performance, avoiding thing...
Parameter NameUse ForsearchStringthe string to be found in the file name
List of string functions (Alphabetically sorted): Ascii Char Charindex Concat Difference Format Left Len Lower Ltrim Nchar Patindex Quotename Replace Replicate Reverse Right Rtrim Soundex Space ...
abstract identifier(underyling type) { ... } abstract identifier(underlying type) from typeA from typeB ... to typeA to typeB { ... } An abstract type is a compile-time type which resolves to the underlying type at run-time. This means that thee abstract type does not exist in the source c...
The above Blaze examples are highly compatible with the http://bootsnipp.com/ library, which only provides the HTML and CSS for components, and leaves the javascript up to the developer. This allows for components to share the same underlying sorting, filtering, query, and cursor methods.
XMPP connections comprise two XML streams: one for ingress and one for egress. These streams are generally sent over the same TCP connection (although sometimes multiple connections may be used, especially for server-to-server connections) and share certain features for which negotiation is requi...
Manages files. new System.IO.StreamWriter(string path) new System.IO.StreamWriter(string path, bool append) System.IO.StreamWriter.WriteLine(string text) System.IO.StreamWriter.WriteAsync(string text) System.IO.Stream.Close() System.IO.File.ReadAllText(string path) System.IO.File.ReadAll...
For ease of readability, keep all declarations indented one level from their selector, and the closing curly brace on its own line. Add a single space after selectors and colons, and always place a semicolon after the final declaration. Good p { color: maroon; font-size: 16px; } ...
var stripeSubscriptionOptions = new StripeSubscriptionCreateOptions(); //create a variable to hold options object stripeSubscriptionOptions.Quantity = model.update; //example option of quantity of seats for a subscription var subscriptionService = new StripeSubscriptionSer...
# Package a build directory pack [PATH] # Use a specific generator cpack -G [GENERATOR] [PATH] # Provide optional overrides cpack -G [GENERATOR] -C [CONFIGURATION] -P [PACKAGE NAME] -R [PACKAGE VERSION] -B [PACKAGE DIRECTORY] --vendor [PACKAGE VENDOR] CPack is an external tool allowing...

Page 7 of 16