Download the software from one of the links bellow, or Google it.
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
$previp = ""; | |
while ($true) | |
{ | |
$timestamp = (Get-Date -Format "HH:mm:ss"); | |
$ip = (Invoke-WebRequest https://meuip.com/api/meuip.php).Content ; | |
$print = "$($timestamp): $($ip)"; | |
#Write-Host $print; | |
if ($ip -ne $previp) | |
{ | |
$print | Out-File -FilePath .\meuip.txt -Append; |
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
@echo off | |
start /B "" "code" | |
start /B "" "C:\src\...\...\.sln" | |
start /B "" "C:\src\...\...\.sln" | |
::start /B "" "C:\Program Files (x86)\Microsoft SQL Server Management Studio 19\Common7\IDE\Ssms.exe" | |
start /B "" "C:\Program Files (x86)\GitExtensions\GitExtensions.exe" "browse" "C:\src\...\...\" | |
start /B "" "services.msc" | |
exit | |
exit |
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 calc = {}; | |
calc.somar = function (x,y) { | |
//console.log(`somando ${x} com ${y}`); | |
return x + y; | |
} | |
calc.multiplicar = function(x ,y) { | |
var resultado = 0; |
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
param ( | |
[int] $level | |
) | |
if ($level -eq 0) { | |
$level = $( Read-Host "Brightness level (0-100)" ) | |
} | |
write-host "Brightness level: $level" |
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
#NoEnv, #Persistent, #SingleInstance | |
; ====================================================================== | |
; Winkey + J | |
; Script para alterar nivel de brilho da tela do notebook | |
#j::Run C:\manu\scripts\change-brightness-level.ps1 | |
; ====================================================================== |
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
#Persistent | |
#InstallMouseHook | |
#InstallKeybdHook | |
while !(getKeyState("F1", "T")) | |
KeyHistory | |
return | |
esc::exitapp |
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
; SOUNDCARD ANALYSIS | |
; Use the following script to discover your soundcard's capabilities (component types and control types). | |
; It displays the results in a simple ListView. | |
SetBatchLines -1 | |
SplashTextOn,,, Gathering Soundcard Info... | |
; Most of the pure numbers below probably don't exist in any mixer, but they're queried for completeness. | |
; The numbers correspond to the following items (in order): CUSTOM, BOOLEANMETER, SIGNEDMETER, PEAKMETER, | |
; UNSIGNEDMETER, BOOLEAN, BUTTON, DECIBELS, SIGNED, UNSIGNED, PERCENT, SLIDER, FADER, SINGLESELECT, MUX, |
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
-- https://stackoverflow.com/questions/8439650/how-to-drop-all-tables-in-a-sql-server-database/20994549#20994549 | |
EXEC sp_msforeachtable 'ALTER TABLE ? NOCHECK CONSTRAINT all' | |
EXEC sp_msforeachtable 'DROP TABLE ?' | |
-- but second line you might need to execute more then once until you stop getting error. |
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
-- https://mystery.knightlab.com/ | |
--select * from get_fit_now_check_in where membership_id like '%48Z%' and check_in_date like '%0109' | |
--select * from get_fit_now_member where person_id = 16371 | |
/* | |
select * from person p left join | |
drivers_license dl on dl.id = p.license_id left join | |
interview i on i.person_id = p.id left join | |
income on income.ssn = p.ssn |
NewerOlder