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:
########## | |
# 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 |
#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 | |
} |
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, |
IslastCompleteWeek = | |
IF ( | |
WEEKNUM ( | |
'Calendar'[Date], | |
2 | |
) = IF ( | |
WEEKNUM ( | |
TODAY (), | |
2 | |
) = 1, |
param ( | |
[string]$server = "www.google.com" | |
) | |
"Checking connection for " + $server | |
$hasConnection = $false | |
while ($hasConnection -eq $false) { | |
$result = Test-NetConnection $server |
// 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', |
{ | |
"Title": "Quiz test", | |
"Phases": [ | |
{ | |
"Phase": "Easy", | |
"NumberOfQuestions": 3, | |
"Questions": [ | |
{ | |
"Question": "In what year was 1984 originally published?", | |
"Answers": [ |
I hereby claim:
To claim this, I am signing this object:
--Check different columns | |
select znew.column_name as newcol, | |
zold.column_name as oldcol | |
from ( | |
select column_name | |
from information_schema.columns | |
where table_schema = 'zendesk' | |
and table_name = '_groups') zold | |
full join | |
(select column_name |
#!/bin/bash | |
# A script to set up a new mac. Uses bash, homebrew, etc. | |
# Settings | |
node_version="14.9.0" | |
ruby_versions="2.7.0" | |
python="3.8.1" | |
ruby_default="2.7.0" |