jenkins_url
+ /api/json?tree=jobs[name,color]
jenkins_url
+ /job/${job_name}/api/json?tree=builds[number,status,timestamp,id,result]
[data-theme=dark], .app-theme-picker__picker[data-theme=dark] { | |
--dark-theme-bg-black: hsl(240, 6%, 10%); | |
--dark-theme-bg-dark: #222; | |
--dark-theme-bg-medium: #2d2b2b; | |
--dark-theme-bg-dark-grey: #333; | |
--dark-theme-bg-medium-grey: #444; | |
--dark-theme-bg-light-grey: #555; | |
--dark-theme-bg-very-light-grey: #444; | |
--background: hsl(240, 6%, 13%); | |
--very-light-grey: var(--dark-theme-bg-very-light-grey); |
# ---- | |
# This script will install PowerShell Universal on Linux as a service | |
# This has been tested on Ubuntu 20.04 (ARM64) on a Raspberry Pi 4 | |
# ---- | |
# Dependencies: | |
# wget | |
# unzip | |
# | |
# Make sure they are installed | |
# ---- |
let addClass = (el = [], className= 'disnone') => {el.forEach(el => { return document.querySelector(el).classList.add(className) })} | |
addClass(['.login .homepageLogo','.cs-login-Instruct', '.sd-login', '.loginDisclaimer', '.login']) |
# https://stackoverflow.com/questions/4114095/how-do-i-revert-a-git-repository-to-a-previous-commit#4114122 | |
# Reverting The Working Copy to an Older Commit | |
# To revert to a commit that's older than the most recent commit: | |
# Resets index to former commit; replace '56e05fced' with your commit code | |
git reset 56e05fced | |
# Moves pointer back to previous HEAD | |
git reset --soft HEAD@{1} |
#!/bin/bash | |
sudo -H -u searx -i sh -c "cd /usr/local/searx/searx-src; python searx/webapp.py" | |
#etc/network/interfaces | |
auto lo | |
iface lo inet loopback | |
auto enp4s0 | |
iface enp4s0 inet manual | |
auto vmbr0 |
{ | |
"scripts": { | |
"clean": "rm -Rf node_modules/ && rm -f ./package-lock.json && npm cache clean -f", | |
"clean_windows": "IF EXIST node_modules rd /s /q node_modules && IF EXIST package-lock.json DEL package-lock.json && npm cache clean -f", | |
"rebuild": "npm run clean && npm i", | |
"rebuild_windows": "npm run clean_windows && npm i" | |
} | |
} |
# Description: Screendragon Design install for new machine or new VM boot | |
# Author: Paniconi Fabio | |
# Last update: 29/10/2021 | |
# Install Chocolatey, required to run the rest of the scripts | |
Write-Output "`r" | |
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) |
#Install WinGet | |
#Based on this gist: https://gist.github.com/crutkas/6c2096eae387e544bd05cde246f23901 | |
$hasPackageManager = Get-AppPackage -name 'Microsoft.DesktopAppInstaller' | |
if (!$hasPackageManager -or [version]$hasPackageManager.Version -lt [version]"1.10.0.0") { | |
"Installing winget Dependencies" | |
Write-host "`r" | |
Add-AppxPackage -Path 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx' | |
$releases_url = 'https://api.github.com/repos/microsoft/winget-cli/releases/latest' |