Skip to content

Instantly share code, notes, and snippets.

View Justin-DynamicD's full-sized avatar
🥷

Justin King Justin-DynamicD

🥷
View GitHub Profile
@Justin-DynamicD
Justin-DynamicD / metricbeat.yml
Created July 24, 2017 19:02
metricbeat sample
#========================== Modules configuration ============================
metricbeat.modules:
#------------------------------- System Module -------------------------------
- module: system
metricsets:
# CPU stats
- cpu
# System Load stats
@Justin-DynamicD
Justin-DynamicD / number fun
Created April 28, 2020 17:56
quick math tricks
# If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
#
#Find the sum of all the multiples of 3 or 5 below 1000.
# first lets grab everything from 1 -> 1000 that has no remainder if i / by 3 or 5
$num_to_sum = @()
1 .. 1000 | foreach {
if (($_ % 3 -eq 0) -or ($_ % 5 -eq 0)) {$num_to_sum += $_}
}