Organization: Jitsi
Mentors: Aaron van Meerten Boris Grozev Lucian-Paul Torje
Contributor: Ilayda Nur Dastan
import fs from 'fs/promises'; | |
const SENTRY_API_KEY = 'enterapikeyhere'; | |
const ORG_SLUG = 'enterorgslughere'; | |
const TEAM_SLUG = 'enterteamnamehere'; | |
const fetchSentry = ( | |
path: string, | |
method: 'GET' | 'POST' | 'PUT' = 'GET', | |
body?: Record<string, any>, |
# tevun/quasar | |
FROM node:alpine | |
RUN apk --update add openssh-client git | |
RUN npm install --global \ | |
@vue/[email protected] && \ | |
@vue/[email protected] \ | |
@quasar/[email protected]\ | |
[email protected] |
#!/bin/bash | |
SHA256_HASH="5bb4faffc8b35e2702b2ffa78e982b979d7b66db29bd55b0c58de8fa745df661" | |
for i in {1..1000} | |
do | |
echo "Looking into page: $i" | |
curl "https://registry.hub.docker.com/v2/repositories/apache/superset/tags/?page=$i" \ | |
| jq '.results[] | select(.["images"][]["digest"] == "sha256:'${SHA256_HASH}'")' |
#!/bin/sh | |
#Check the Drive Space Used by Cached Files | |
du -sh /var/cache/apt/archives | |
#Clean all the log file | |
#for logs in `find /var/log -type f`; do > $logs; done | |
logs=`find /var/log -type f` | |
for i in $logs |
Mentors: Aaron van Meerten Boris Grozev Lucian-Paul Torje
Contributor: Ilayda Nur Dastan
# paste to .bashrc on host with domain's public IP | |
# usage: certbotless YOUR.DOMAIN.TLD | |
certbotless() { | |
if [ -z "$1" ]; then | |
return 1 | |
fi | |
DOMAIN=$1 |
// Fastest install script for npm 7.0+ | |
// usage: node install | |
const fs = require('fs'); | |
const readLockFile = path => { | |
if (fs.existsSync(path)) { | |
const text = fs.readFileSync(path, { encoding:'utf8', flag:'r' }); | |
const lockFile = JSON.parse(text); | |
delete lockFile.dependencies; |
This should always be your first step. More than likely, your question has already been answered...multiple times
If you make a post stating a problem without any logs, nobody can help you and will likely ignore it (at least I will)
adb logcat -d > log.txt
# Script to ensure wireless lan radio is ON or OFF # | |
# between user selected times # | |
# The radio ON/OFF operation will not be performed if the system # | |
# clock is not in sync with local time, unless so required # | |
# Remember router is set back to default time after a reboot # | |
# Schedule this script at required intervals # | |
# Written by Peter James 2012-07-19 # | |
# Tested on RB751U and RouterOS v5.19 # | |
##################################### |
Get-WinEvent -FilterHashtable @{LogName="Microsoft-Windows-Diagnostics-Performance/Operational"; Id=100} -MaxEvents 10 | ForEach-Object { | |
# convert the event to XML and grab the Event node | |
$eventXml = ([xml]$_.ToXml()).Event | |
# output | |
[PSCustomObject]@{ | |
'Computer' = $eventXml.System.Computer | |
'BootTime' = [int64]($eventXml.EventData.Data | Where-Object {$_.Name -eq 'BootTime'}).InnerXml | |
'BootFinished' = [datetime]($eventXml.EventData.Data | Where-Object {$_.Name -eq 'BootEndTime'}).InnerXml | |
} | |
} |