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
; Remap LWin to LCtrl when Windows Terminal is focused (Auto Hot Key) | |
#IfWinActive ahk_class CASCADIA_HOSTING_WINDOW_CLASS ; Check if Windows Terminal is active | |
LWin::LCtrl ; Remap left Windows key to left Ctrl key | |
#IfWinActive | |
; Script to assign alt+` and alt+escape the functionality to cycle through windows of the same application. | |
!`:: | |
WinGetClass, OldClass, A | |
WinGet, ActiveProcessName, ProcessName, A | |
WinGet, WinClassCount, Count, ahk_exe %ActiveProcessName% |
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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
# Quick Sort - Runtime: Average O(n log(n)), Worst O(n^2), Memory O(log(n)) | |
def quick_sort(arr, left, right) | |
index = partition(arr, left, right) | |
if left > index - 1 | |
quick_sort(arr, left, index - 1) | |
end | |
if index < right | |
quick_sort(arr, index, right) | |
end |
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
def search(nums, target) | |
if nums.length == 0 | |
return -1 | |
end | |
low, high = 0, nums.length-1 | |
while low <= high | |
mid = (high+low)/2 | |
if nums[mid] == target | |
return mid |
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
# NOTES | |
# Worst case O(N^2) | |
# | |
# Selection Sort | |
# Best, Avg, Worst O(N^2) TC | |
# Worst SC O(1) | |
def selection_sort(arr) | |
for i in 0...(arr.length-1) |
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
package main | |
import ( | |
"log" | |
"net/http" | |
"github.com/prometheus/client_golang/prometheus" | |
"github.com/prometheus/client_golang/prometheus/promhttp" | |
) |
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
# This file is used by Rack-based servers to start the application. | |
require ::File.expand_path('../config/environment', __FILE__) | |
require 'rack' | |
require 'prometheus/middleware/collector' | |
require 'prometheus/middleware/exporter' | |
use Rack::Deflater | |
use Prometheus::Middleware::Collector | |
use Prometheus::Middleware::Exporter |
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
from jinja2 import Template | |
file = open('prometheus.yml', 'a') | |
templ = Template(u'''\ | |
- job_name: {{ name }} | |
metrics_path: /export | |
params: | |
command: [check_load] | |
static_configs: |
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
#!/bin/bash | |
apt-get remove --purge grafana | |
directories=(/opt/prometheus /etc/prometheus /var/log/prometheus /var/lib/prometheus /var/lib/pushgateway /var/lib/alertmanager /var/lib/node_exporter) | |
for i in "${directories[@]}" | |
do | |
: | |
rm -rf $i |
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
# initialization file (not found) |
NewerOlder