- Labels Detection
- Faces Detection
- Faces Comparison
- Faces Indexing
- Faces Search
- Moderation Detection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let firstArr = [ | |
1, | |
2, | |
3, | |
4, | |
5 | |
] | |
// shift 1: 23451 | |
// shift 2: 34512 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Class_Instance_Method | |
{ | |
class Employee | |
{ | |
public string Id { get; set; } | |
public string FullName { get; set; } | |
public string Email { get; set; } | |
public string Phone { get; set; } | |
public string doWork() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration> | |
<startup> | |
<!--Replace with your .NET version here--> | |
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" /> | |
</startup> | |
<appSettings> | |
<add key="FilePath" value="/sourcePath/"/> | |
<add key="DestinationPath" value="/destinationPath/"/> | |
<add key="UserName" value="user"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main() | |
{ | |
char s[20], r[20]; | |
int begin, end, count = 0; | |
printf("Input a string\n"); | |
scanf("%s", s); | |
// Calculating string length | |
while (s[count] != '\0') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#define bufSize 1024 | |
int main(int argc, char const *argv[]) | |
{ | |
FILE *in; | |
char buf[bufSize]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
interface IEmployee | |
{ | |
string Id { get; set; } | |
string FullName { get; set; } | |
string Email { get; set; } | |
string Phone { get; set; } | |
string Company { get; } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const {node: nodeVersion, v8: v8Version, openssl: sslVersion, unicode: uniVersion} = process.versions; | |
console.log("Node.js version:", nodeVersion); | |
console.log("V8 version:", v8Version); | |
console.log("OpenSSL version:", sslVersion); | |
console.log("Unicode support:", uniVersion); | |
// console.log(process.versions); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Path to your oh-my-zsh installation. | |
export ZSH=/home/vm/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
# POWERLEVEL9K_MODE='nerdfont-complete' | |
# ZSH_THEME="powerlevel9k/powerlevel9k" | |
ZSH_THEME="robbyrussell" | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) |
OlderNewer