I hereby claim:
- I am cabeda on github.
- I am cabeda (https://keybase.io/cabeda) on keybase.
- I have a public key ASDNDauw0vzWmlyjbot1j6lgfaes9c1iRpJ6zkoNMjU50go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| { | |
| "Title": "Quiz test", | |
| "Phases": [ | |
| { | |
| "Phase": "Easy", | |
| "NumberOfQuestions": 3, | |
| "Questions": [ | |
| { | |
| "Question": "In what year was 1984 originally published?", | |
| "Answers": [ |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // choose either `'stable'` for receiving highly polished, | |
| // or `'canary'` for less polished but more frequent updates | |
| updateChannel: 'stable', |
| param ( | |
| [string]$server = "www.google.com" | |
| ) | |
| "Checking connection for " + $server | |
| $hasConnection = $false | |
| while ($hasConnection -eq $false) { | |
| $result = Test-NetConnection $server |
| IslastCompleteWeek = | |
| IF ( | |
| WEEKNUM ( | |
| 'Calendar'[Date], | |
| 2 | |
| ) = IF ( | |
| WEEKNUM ( | |
| TODAY (), | |
| 2 | |
| ) = 1, |
| GO | |
| CREATE TABLE [dbo].[DimData] | |
| ( | |
| DateID int not null PRIMARY KEY, | |
| Ano int not null, | |
| Semestre int not null, | |
| Quadrimestre int not null, | |
| Mes int not null, | |
| Semana int not null, | |
| DiadaSemana int not null, |
| #Functions | |
| function CheckAdminRights() { | |
| # Check if it has admin rights | |
| If (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole(` | |
| [Security.Principal.WindowsBuiltInRole] "Administrator")) { | |
| Write-Warning "You do not have Administrator rights to run this script!`nPlease re-run this script as an Administrator!" | |
| Pause | |
| Break | |
| } |
| ########## | |
| # Win10 Initial Setup Script | |
| # Author: Disassembler <[email protected]> | |
| # Version: 1.7, 2016-08-15 | |
| # dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
| # THIS IS A PERSONALIZED VERSION | |
| # This script leaves more MS defaults on, including MS security features. | |
| # Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1 |