Skip to content

Instantly share code, notes, and snippets.

View Adobe-Android's full-sized avatar

David Brown Adobe-Android

View GitHub Profile
@Adobe-Android
Adobe-Android / App.config
Last active February 12, 2019 00:26
C#-FTP - Connect to a server over FTPS, get a list of files in a specified directory, and rename those files
<?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"/>
@Adobe-Android
Adobe-Android / Employee.cs
Created February 1, 2019 03:37
Demo for creating a new object/type and creating an instance method on that class
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()
{
@Adobe-Android
Adobe-Android / fortune_cookie.c
Last active May 10, 2019 15:12
A gist collection of C concepts
@Adobe-Android
Adobe-Android / shift.js
Created August 2, 2018 20:13
A code snippet that rotates all elements in an array n many times.
let firstArr = [
1,
2,
3,
4,
5
]
// shift 1: 23451
// shift 2: 34512
@Adobe-Android
Adobe-Android / amazon-rekognition.md
Last active May 31, 2023 09:53 — forked from alexcasalboni/amazon-rekognition.md
Amazon Rekognition - Python Code Samples

Amazon Rekognition - Python Code Samples

  1. Labels Detection
  2. Faces Detection
  3. Faces Comparison
  4. Faces Indexing
  5. Faces Search
  6. Moderation Detection