Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mluker authored Jun 4, 2024
1 parent af7fd94 commit 338bc5f
Showing 1 changed file with 21 additions and 26 deletions.
47 changes: 21 additions & 26 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,36 +9,31 @@
<br>

#### Contact Information
```js
function email(){
return "luker.matt@gmail.com";
}
```python
def email() -> str:
return 'luker.matt@gmail.com'

function social(){
return "https://linkedin.com/in/matt-luker";
def social() -> str:
return 'https://linkedin.com/in/matt-luker'
}
```
#### Relevant Experience
```js
function skills(){
return [
"Kubernetes",
"Containers",
"Docker",
"Networking",
"DevOps",
"GitOps",
"SecOps",
"Microservices",
"Cosmos DB",
"Azure",
"TerraForm",
"TypeScript",
"Python",
"Shell Scripting",
"C#",
"Golang"];
}
```python
def skills() -> list[str]:
return [
'Azure',
'Architecture',
'Networking',
'Kubernetes',
'Containers',
'Microservices',
'TerraForm',
'Python',
'Shell Scripting',
'C#',
'Golang'
'DevOps',
'GitOps',]
```


0 comments on commit 338bc5f

Please sign in to comment.