Skip to content

Instantly share code, notes, and snippets.

View greenido's full-sized avatar
🏃‍♂️
Running and building

Ido Green greenido

🏃‍♂️
Running and building
View GitHub Profile
@greenido
greenido / BitDefender Alert Test.ps1
Created March 28, 2025 18:14
BitDefender Alert Test Setup and Execution Script - Install NodeJS (if we don't have it) and fetch testing script and run it
# BitDefender Alert Test Setup and Execution Script
param(
[string]$GistUrl = "https://gist.githubusercontent.com/greenido/044823b9e1ab3c409fe4d3b04dad8292/raw/638b7199564efc59062b1d314f4aec567863d748/test-bitDefender.js",
[string]$ScriptName = "bitdefender_alert_test.js"
)
# Function to check if Node.js is installed
function Test-NodeJSInstalled {
try {
$nodeVersion = node --version
@greenido
greenido / test-bitDefender.js
Created March 28, 2025 17:51
Testing BitDefender Alerts/Events
const fs = require('fs');
const path = require('path');
const winston = require('winston');
class BitDefenderAlertSimulator {
constructor(logFile = 'bitdefender_test_alerts.log') {
// Configure logging using Winston
this.logger = winston.createLogger({
level: 'info',
format: winston.format.combine(
@greenido
greenido / EspressoLabs: Real-Time Chat Application.md
Last active March 13, 2025 13:59
EspressoLabs Home Assignment: Real-Time Chat Application

EspressoLabs Home Assignment: A ReactJS Real-Time Chat Application

Objective

Build a simple real-time chat application that allows multiple users to join and interact in a chat room. This assignment is designed to evaluate your ability to work with real-time communication, authentication, and scalable architecture. Please use ReactJS.

Time Limit

90 minutes

Requirements

@greenido
greenido / dns-check.mjs
Created February 5, 2025 02:34
Checking the DNS or CloudFlare (both 9.9.9.9 and 1.1.1.3)
// Save this file as dns-check.mjs
import fetch from 'node-fetch';
import { performance } from 'perf_hooks';
// Configure DoH endpoints
const quad9 = {
name: 'Quad9',
endpoint: 'https://dns.quad9.net:5053/dns-query'
};
@greenido
greenido / check_cloudflare_dns.js
Created February 5, 2025 02:23
Checking the DNS or CloudFlare (both 9.9.9.9 and 1.1.1.3)
const dns = require('dns');
const { performance } = require('perf_hooks');
// Configure DNS servers
const quad9 = { address: '9.9.9.9', name: 'Quad9' };
const cloudflareSecure = { address: '1.1.1.3', name: 'Cloudflare Security' };
// Test URLs
const safeUrls = [
'google.com',
@greenido
greenido / docker-build-copy.sh
Created February 3, 2025 19:28
A Docker Image Build and EC2 Copy Script - v0.5
#!/bin/bash
#
# A Docker Image Build and EC2 Copy Script for macOS
# Updated: 4/4/2024
#
# Logging function
log() {
local log_level="${1}"
local message="${2}"
@greenido
greenido / automatic_version_number.yml
Created January 31, 2025 01:34
A GitHub Action workflow that increments the version number in index.html and commits it back to the repository.
name: Increment Version Number
on:
workflow_dispatch:
inputs:
version_increment:
description: 'Increment type (major/minor/patch)'
required: true
default: 'patch'
type: choice
@greenido
greenido / vnc-windows.ps
Created January 6, 2025 22:55
Install VNC on windows11
# Requires PowerShell to be run as Administrator
#Requires -RunAsAdministrator
# Function to check if TightVNC is installed
function Test-TightVNCInstalled {
$installed = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |
Where-Object { $_.DisplayName -like "*TightVNC*" }
return $null -ne $installed
}
@greenido
greenido / vnc-macOS.sh
Created January 6, 2025 22:53
Uses macOS's built-in Screen Sharing instead of installing a VNC server
#!/bin/bash
# Check if running on macOS
if [ "$(uname)" != "Darwin" ]; then
echo "This script is for macOS only"
exit 1
fi
# Check if running as root
if [ "$EUID" -eq 0 ]; then
@greenido
greenido / full-stack-engineer-assignment-2.md
Last active January 20, 2025 05:28
A Home Assignment for full-stack Developer (ReactJS / TypeScript)

Home Assignment for TypeScript Developers

Objective:

  • Build a simple web application that allows an admin to manage a network of agents.
  • The admin should be able to add, update, view, and delete agents in the network.

Requirements