PACMAN
##Atualizar##
pacman -Syu
window.onload = function () { | |
var timeout; | |
var MIN; | |
var SEC; | |
document.getElementById("startTimer").onclick=function(){startTimer()} | |
function startTimer(){ | |
MIN = document.getElementById("min").value; | |
SEC = document.getElementById("sec").value; |
function deleteChilds(idDiv) { | |
var node = dojo.byId(idDiv); | |
while (node.hasChildNodes()) { | |
node.removeChild(node.lastChild); | |
} | |
} |
# Expand print panel by default | |
defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true | |
# Disable the “Are you sure you want to open this application?” dialog | |
defaults write com.apple.LaunchServices LSQuarantine -bool false | |
# Enable subpixel font rendering on non-Apple LCDs | |
defaults write NSGlobalDomain AppleFontSmoothing -int 2 | |
# Disable press-and-hold for keys in favor of key repeat |
/* Véi, foca no código | |
.---. | |
/o o\ | |
__(= " =)__ | |
//\'-=-'/\\ | |
) (_ | |
/ `"=-._ | |
/ \ ``"=. |
var http = require('http') | |
http.createServer(function(request, response){ | |
response.writeHead(200); | |
response.write("Hello World"); | |
response.end(); | |
}).listen(8080); | |
console.log('Listen on port 8080..'); |
IPAddress ip = IPAddress.Parse("127.0.0.1"); | |
int port = 7321; | |
IPEndPoint destination = new IPEndPoint(ip, port); | |
OscMessage oscMessage = new OscMessage(destination, "/activeclip/video/position/direction"); | |
oscMessage.Append(0); | |
oscMessage.Send(destination); |
PACMAN
##Atualizar##
pacman -Syu
Scaffold-DbContext -Connection 'Server=tcp:.database.windows.net,1433;Initial Catalog=dataTech;Persist Security Info=False;User ID=;Password=;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;' -Provider Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models -Verbose -Force
Técnica utilizada para analisar grandes quantidades de dados que para humanos é inviável sem o auxilio de ferramentas computacionais apropriadas.
Analisar e obter conhecimentos novos e úteis a partir de grandes base de dados.
Descoberta de associação: na área de marketing, por exemplo, entender qual produto está mais associado com outro, durante uma venda.