- update
<met>
- update
LD+JSON
- unite
create
&edit
controllers - write algorithm fro updating Schema
-
read-one.component
&read-one.template
-
read-many.component
&read-many.template
-
crup.component
&crup.template
/** | |
* en.wikipedia.org/wiki/Fisher–Yates_shuffle | |
*/ | |
function shuffleArray(array) { | |
var answ = array[0]; | |
var answIndex, tempValue, rndIndex; | |
var currIndex = (array[4] === '-') ? 4 : 5; | |
// While there remain elements to shuffle... | |
while (0 !== currIndex) { |
/** | |
* en.wikipedia.org/wiki/Fisher–Yates_shuffle | |
*/ | |
function shuffleArray(textList) { | |
var array = textList.split(';') | |
var answ = array[0]; | |
var answIndex, tempValue, rndIndex; | |
var currIndex = (array[4] === '-') ? 4 : 5; | |
// While there remain elements to shuffle... |
package com.tasks6.rle; | |
public class Application { | |
public static void main( String[] args ) { | |
if (args != null) { | |
// порожній рядок або початок з пробілу >> "" | |
if (args[0].equal("") || args[0].charAt(0) == ' ') { | |
System.out.println(""); | |
} |
import {Injectable,Inject,ElementRef, Renderer} from '@angular/core'; | |
//import { DOCUMENT } from '@angular/platform/common_dom'; | |
import {DOCUMENT} from '@angular/platform-browser'; | |
@Injectable() | |
export class SeoService { | |
private _r: Renderer; | |
private _el: ElementRef; | |
private _document: any; | |
/** |
function y = generateSin(a, f, ph, L, Fs) | |
% my code goes here | |
if length(a) ~= length(f) | |
error('Different sizes of "a" and "f"'); | |
end | |
if length(a) ~= length(ph) | |
error('Different sizes of "a" and "ph"'); | |
end |
const ROUTES: Route[] = [ | |
{ path: 'home', component: HomeComponent }, | |
{ path: '', redirectTo: 'home', pathMatch: 'full' }, | |
{ path: 'redirectMe', redirectTo: 'home', pathMatch: 'full' }, | |
{ path: 'users/:userid', component: UserComponent, | |
children: [ | |
{ path: 'notes', component: NotesComponent }, | |
{ path: 'notes/:noteid', component: NoteComponent} | |
] | |
}, |
// Define the JSON Schema | |
const customerSchema = { | |
"required": ["id"], | |
"properties": { | |
"id": { | |
"type": "integer", | |
"minimum": 100, | |
"maximum": 1000 | |
}, | |
"name": { |
Semantic Release is an Open-Source Software tool for automatically versioning your software with Semantic Versions based on your Git commit messages. It then releases/deploys the new version to the channel(s) you specify, for example, GitHub Release, NPM, PyPI, etc.
By default, Semantic Release expects commits to be in the Conventional Commit format. In its simplest form, this looks like feat: add feature X or fix: fix bug Y that perform Minor and Patch version bumps respectively.
Since Semantic Release also generates release notes and maintains a CHANGELOG.md for you, >adding quality git commit messages — including a detailed body — becomes increasingly valuable.