Tutorial by Examples: a

This example by Daniel Baggio was taken directly from this StackExchange answer, but has been reposted for visibility. This class takes an Mat object and returns the BufferedImage object used by the javax.swing libraries. This can be used by a Graphics object to draw the image. private BufferedIma...
//Create a layout var tableLayout = new sap.ui.commons.layout.MatrixLayout({ layoutFixed : false, columns : 2, width : "100%", height : "100%", widths : [ "20%","80%"] }).addStyleClass('dsAvailLayout'); sap.ui.table.Table.extend(...
To submit form via Ajax with Jquery : <div id="yourPanel" th:fragment="yourFragment"> <form id="yourForm" method="POST" th:action="@{/actions/postForm}" th:object="${yourFormBean}">...
You can use the raw interpolator if you want a String to be printed as is and without any escaping of literals. println(raw"Hello World In English And French\nEnglish:\tHello World\nFrench:\t\tBonjour Le Monde") With the use of the raw interpolator, you should see the following printed in the ...
Zero values or zero initialization are simple to implement. Coming from languages like Java it may seem complicated that some values can be nil while others are not. In summary from Zero Value: The Go Programming Language Specification: Pointers, functions, interfaces, slices, channels, and maps ...
To implement the create functionality we need two actions: GET and POST. The GET action used to return view which will show a form allowing user to input data using HTML elements. If there are some default values to be inserted before user adding any data, it should be assigned to the view mode...
@model ContosoUniversity.Models.Student //The Html.BeginForm helper Writes an opening <form> tag to the response. When the user submits the form, the request will be processed by an action method. @using (Html.BeginForm()) { //Generates a hidden form field (anti-for...
By the url ~/Student/Details/5 being: (~: site root, Student: Controller, Details: Action, 5: student id), it is possible to retrieve the student by its id. // GET: Student/Details/5 public ActionResult Details(int? id) { // it good practice to consider that things could go wrong...
// Model is the class that contains the student data send by the controller and will be rendered in the view @model ContosoUniversity.Models.Student <h2>Details</h2> <div> <h4>Student</h4> <hr /> <dl class="dl-horizontal"> <...
Sample build.gradle file: plugin: 'java' repositories { mavenLocal() mavenCentral() jcenter() } dependencies { compile "org.testng:testng:6.9.12" } test { useTestNG() { suiteXmlBuilder().suite(name: 'Sample Suite') { test(name : 'Sample Te...
What are themes? There are several visual appearance out there for Bootstrap, which can be found from sources, such as Bootswatch, which are modifying the bootstrap.min.css file. You can also create your own theme this way. When to modify themes and when to add new rules to a site.css file? When ...
You will have to import UserNotifications @import UserNotifications; 2.Request authorization for localNotification let center = UNUserNotificationCenter.current() center.requestAuthorization([.alert, .sound]) { (granted, error) in // Enable or disable features based on authorizat...
A book explaining how Vimscript works, full of examples. It can be found on http://learnvimscriptthehardway.stevelosh.com/
For this the best solution is using actions. To add a new action to an actors in Scene2D just call: Action action = Actions.moveTo(x,y,duration); actorObject.addAction(action); Where x and y is the target location and duration is the speed of this movement in seconds(float). If you want to sto...
Start from a Cython program with a entrypoint: def do_stuff(): cdef int a,b,c a = 1 b = 2 c = 3 print("Hello World!") print([a,b,c]) input("Press Enter to continue.") Create a setup.py file in the same folder: from distutils.core import set...
For automation of the above procedure in Windows use a .bat of the similar contents: del "main.exe" python setup.py build_ext --inplace del "*.c" rmdir /s /q ".\build" pyinstaller --onefile "main.py" copy /y ".\dist\main.exe" ".\main.exe&q...
To add Numpy to the bundle, modify the setup.py with include_dirs keyword and necessary import the numpy in the wrapper Python script to notify Pyinstaller. program.pyx: import numpy as np cimport numpy as np def do_stuff(): print("Hello World!") cdef int n n = 2 ...
Represents an instance of a single, complete approval process. ProcessInstance record is created every time for particular object record which is submitted for approval. Its is also read-only object. We can describe, query and retrieve the approval processes Instance. ~ Query ~ SELECT CompletedDat...
Both objects ProcessInstanceStep & ProcessInstanceWorkItem are instances of process steps that are created for particular ProcessInstance. ProcessInstanceStep represents a step instance in an approval process (ProcessInstance) on which users has already acted and ProcessInstanceWorkItem represen...
The ProcessInstanceHistory is the object which is neither searchable nor queryable & this is the read-only object which shows all steps and pending approval requests associated with an approval process (ProcessInstance). But we can use this object to replicate the related list functionality of t...

Page 714 of 1099