someone got hired!

Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Cadey Ratio 2020-12-04 17:32:35 -05:00
parent 99197f4843
commit c5fc9336f5
1 changed files with 29 additions and 24 deletions

View File

@ -1,7 +1,7 @@
let Person = let Person =
{ Type = { name : Text, tags : List Text, gitLink : Text, twitter : Text } { Type = { name : Text, tags : List Text, gitLink : Text, twitter : Text }
, default = , default =
{ name = "", tags = [] : List Text, gitLink = "", twitter = "" } { name = "", tags = [] : List Text, gitLink = "", twitter = "" }
} }
in [ Person::{ in [ Person::{
@ -76,21 +76,33 @@ in [ Person::{
, twitter = "N/A" , twitter = "N/A"
} }
, Person::{ , Person::{
, name = "Jamie Bliss"
, tags = [ "python", "devops", "full-stack", "saltstack", "web", "linux" ]
, gitLink = "https://github.com/AstraLuma"
, twitter = "https://twitter.com/AstraLuma"
}
, Person::{
, name = "Joseph Crawley" , name = "Joseph Crawley"
, tags = , tags =
[ "javascript", "react", "csharp", "python", "full-stack", "web", "bash", "linux" ] [ "javascript"
, "react"
, "csharp"
, "python"
, "full-stack"
, "web"
, "bash"
, "linux"
]
, gitLink = "https://github.com/espe-on" , gitLink = "https://github.com/espe-on"
, twitter = "https://twitter.com/espe_on_" , twitter = "https://twitter.com/espe_on_"
} }
, Person::{ , Person::{
, name = "nicoo" , name = "nicoo"
, tags = [ "cryptography", "Debian", "distributed systems", "embedded", "nix", "rust", "privacy", "security", "SDR" ] , tags =
[ "cryptography"
, "Debian"
, "distributed systems"
, "embedded"
, "nix"
, "rust"
, "privacy"
, "security"
, "SDR"
]
, gitLink = "https://github.com/nbraud" , gitLink = "https://github.com/nbraud"
} }
, Person::{ , Person::{
@ -139,7 +151,7 @@ in [ Person::{
, gitLink = "https://github.com/Piyushhbhutoria" , gitLink = "https://github.com/Piyushhbhutoria"
, twitter = "https://twitter.com/PiyushhB" , twitter = "https://twitter.com/PiyushhB"
} }
, Person::{ , Person::{
, name = "Ryan Casalino" , name = "Ryan Casalino"
, tags = , tags =
[ "golang" [ "golang"
@ -179,7 +191,7 @@ in [ Person::{
} }
, Person::{ , Person::{
, name = "Zachary McKee" , name = "Zachary McKee"
, tags = , tags =
[ "javascript" [ "javascript"
, "django" , "django"
, "react" , "react"
@ -195,22 +207,15 @@ in [ Person::{
, gitLink = "https://github.com/ZacharyRMcKee" , gitLink = "https://github.com/ZacharyRMcKee"
, twitter = "N/A" , twitter = "N/A"
} }
, Person::{ , Person::{
, name = "Muazzam Kazmi" , name = "Muazzam Kazmi"
, tags = , tags = [ "Rust", "C++", "x86assembly", "WinAPI", "Node.js", "React.js" ]
[ "Rust"
, "C++"
, "x86assembly"
, "WinAPI"
, "Node.js"
, "React.js"
]
, gitLink = "https://github.com/muazzamalikazmi" , gitLink = "https://github.com/muazzamalikazmi"
, twitter = "N/A" , twitter = "N/A"
} }
, Person::{ , Person::{
, name = "Jeffin Mathew" , name = "Jeffin Mathew"
, tags = , tags =
[ "Python" [ "Python"
, "routing&switching" , "routing&switching"
, "django" , "django"
@ -220,7 +225,7 @@ in [ Person::{
, "javascript" , "javascript"
, "iot" , "iot"
] ]
, gitLink = "https://github.com/mjeffin" , gitLink = "https://github.com/mjeffin"
, twitter = "https://twitter.com/mpjeffin" , twitter = "https://twitter.com/mpjeffin"
} }
] ]