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 / Docker_Cheat_Sheet.md
Created November 22, 2024 22:19
Docker Commands Cheat Sheet - Most Useful Commands

Docker Commands Cheat Sheet - Most Useful Commands 🌻

Container Management

  1. Run a container
docker run [OPTIONS] IMAGE [COMMAND]
# Example: Run nginx in detached mode with port mapping
docker run -d -p 80:80 nginx
@greenido
greenido / Startup One-Pager Template.md
Created November 22, 2024 16:03
Startup One-Pager Template

[Company Name]

An Overview

  • answer WHY you and WHY now.

Problem

  • Current market challenge or pain point
  • Scale and impact of the problem
  • Existing inadequate solutions (competitors and hidden ones)
@greenido
greenido / PostgreSQL-aws-linux.md
Created November 13, 2024 02:46
PostgreSQL Installation Guide for Amazon Linux 2023

PostgreSQL Installation Guide for Amazon Linux 2023

Prerequisites

  • An Amazon Linux 2023 instance
  • Sudo privileges
  • Active internet connection

Installation Steps

1. Update System Packages

@greenido
greenido / chrome_ext_local_agent.js
Created November 7, 2024 22:43
Chrome Extension to Local Agent Communication
// manifest.json
{
"name": "Local Agent Connector",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"nativeMessaging",
"tabs"
],
"background": {
@greenido
greenido / docker-aws-deplyment.md
Created November 6, 2024 22:09
Setting Up Test Environment for Docker Images on AWS

Setting Up Test Environment for Docker Images on AWS

1. Infrastructure Setup using AWS CDK or CloudFormation

# test-environment.yaml
AWSTemplateFormatVersion: '2010-09-01'
Description: 'Test environment for Docker applications'

Parameters:
@greenido
greenido / drive_by_downloads.js
Created November 4, 2024 23:31
Chrome Extension example: Drive-by downloads
// DriveByProtector.js
class DriveByProtector {
constructor() {
this.suspiciousPatterns = {
fileTypes: /\.(exe|msi|dmg|pkg|deb|bat|cmd|sh|ps1|vbs|jar|dll|scr)$/i,
mimeTypes: [
'application/x-msdownload',
'application/x-msdos-program',
'application/x-executable',
'application/x-dosexec',
@greenido
greenido / suspicious_redirects.js
Created November 4, 2024 23:30
Chrome extension example: suspicious redirects, listen to URL event and block ones who exhibit rapid switching and suspicious URL or DNS patterns
// manifest.json
{
"manifest_version": 3,
"name": "Redirect Detective",
"version": "1.0",
"description": "Detects and analyzes potentially malicious redirects",
"permissions": [
"webNavigation",
"webRequest",
"storage",
@greenido
greenido / DI_Examples.ts
Created November 3, 2024 00:13
Property, Method, and Container DI Examples in TypeScript
// 1. Basic interfaces and implementations
interface ILogger {
log(message: string): void;
}
interface IEmailSender {
send(to: string, message: string): void;
}
class ConsoleLogger implements ILogger {
@greenido
greenido / Dependency_Injection.ts
Created November 3, 2024 00:04
Dependency Injection Examples in TypeScript
// 1. Interfaces for our dependencies
interface ILogger {
log(message: string): void;
}
interface IEmailService {
sendEmail(to: string, subject: string, content: string): Promise<boolean>;
}
interface IUserRepository {
@greenido
greenido / golang_ex_1.md
Last active November 18, 2024 18:27
Cross-Platform Installation Application Assignment (Max 2 hours)

Objective

Create a basic cross-platform command execution application that can be installed on Windows and macOS, capable of executing simple system commands and returning their results.

Core Requirements (2 hours)

1. Installation Package (~30 minutes)

  • Create a simple installer for either Windows (.exe) or macOS (.pkg) [choose one]
  • Implement basic start-on-boot functionality

2. Command Execution (~45 minutes)