This file contains 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
// Example object that contains a complex array (an array with object that has arrays and go on) | |
const json = { | |
type: 'AdaptiveCard', | |
version: '1.4', | |
body: [ | |
{ | |
type: 'Container', | |
items: [ | |
{ | |
type: 'TextBlock', |
This file contains 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
#! /bin/bash | |
##### | |
# | |
# Script to start a vpn via openconnect; | |
# | |
##### | |
PORTAL="<DNS_OR_IP>" | |
USER="<USER>" |
This file contains 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
#! /bin/bash | |
##### | |
# | |
# Script for Linux to change between Bluetooth devices like speaker and headphone; | |
# | |
# You will need the Mac Address of both devices, | |
# just type on your terminal `bluetoothctl devices`, | |
# then replace the placeholder `<MAC_ADDREES>`; | |
# |