testing hugo. first post.
markdown
quote
another quote
1
2
3
4
5
6
7
|
#!/bin/bash
sudo apt update && sudo apt upgrade -y
echo "Hello You"
touch test.md
vim test.md
nano test.md
chmod a+x test.sh
|
code?
ls -al
1
2
3
4
|
{
"firstname": "john"
"lastName": "smith"
}
|
1
2
3
4
5
6
7
8
9
|
# Take a list of numbers
my_list = [12, 65, 54, 39, 102, 339, 221,]
# use anonymous function to filter
result = list(filter(lambda x: (x % 13 == 0), my_list))
# display the result
print("Numbers divisible by 13 are",result)
|
1
2
|
$vm = Get-Vm -VMName VMName
stop-vm -vm $vm
|