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
# CSV file export path | |
$Csvfile = "C:\scripts\ExportDGs.csv" | |
# Get all distribution groups | |
$Groups = Get-DistributionGroup -ResultSize Unlimited | |
# Loop through distribution groups | |
$Groups | ForEach-Object { | |
$GroupDN = $_.DistinguishedName | |
$DisplayName = $_.DisplayName |
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
# OSX leaves these everywhere on SMB shares | |
._* | |
# OSX trash | |
.DS_Store | |
# Eclipse files | |
.classpath | |
.project | |
.settings/** |
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
{ | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontFamily": "Fira Code", | |
"editor.fontSize": 12, | |
"editor.fontLigatures": true, | |
"git.enableSmartCommit": true, | |
// Eslint Prettier | |
"editor.formatOnSave": true, | |
"[javascript]": { | |
"editor.formatOnSave": false, |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/brunorocha/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
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
var früh = 'Hallo Welt'; | |
var Früh = 'Hallo Hallo Universum'; | |
console.log(`${Früh} und ${früh}`); |
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
var früh = 'Hallo Welt'; |
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
const verHora = () => { | |
let hora = new Date(); | |
let h = hora.getHours(); | |
let m = hora.getMinutes(); | |
let s = hora.getSeconds(); | |
console.log(`${h}:${m}:${s}`); | |
} | |
verHora(); |
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
console.log("Não se pode quebrar o | |
código em qualquer lugar"); | |
alert | |
("Não podemos quebrar antes dos conchetes, deve se manter junto"); |
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
console.log('Sentença de código'); | |
alert('Sou uma setença de código'); | |
console.warn( | |
'Aqui também') |
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
<!DOCTYPE html> | |
<html lang="pt-br"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Introdução ao Brackets</title> | |
</head> | |
<body> | |
<h1>Olá Mundo</h1> |