- Organizations verbally champion innovation while systematically rejecting it
- Transformation initiatives consistently underperform expectations
- 70% of organizational change efforts fail (McKinsey research)
- Resistance follows predictable patterns we can anticipate and counter
This file contains hidden or 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
version: '3.8' | |
services: | |
mongodb: | |
image: mongo:7.0 | |
container_name: mongodb | |
environment: | |
- MONGO_INITDB_ROOT_USERNAME=mongo | |
- MONGO_INITDB_ROOT_PASSWORD=mongo | |
- MONGO_INITDB_DATABASE=mongodb |
This file contains hidden or 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
version: '3.8' | |
services: | |
postgres: | |
image: postgres:16 | |
container_name: postgres | |
environment: | |
- POSTGRES_USER=postgres | |
- POSTGRES_PASSWORD=postgres | |
- POSTGRES_DB=postgres |
This file contains hidden or 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
version: '3.8' | |
services: | |
qdrant: | |
image: qdrant/qdrant | |
container_name: qdrant | |
environment: | |
- QDRANT__SERVICE__API_KEY=your_secret_api_key_here | |
volumes: | |
- qdrant_data:/qdrant/storage |
This file contains hidden or 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
version: "3.7" | |
services: | |
n8n: | |
image: docker.n8n.io/n8nio/n8n | |
restart: always | |
environment: | |
- N8N_HOST=n8n.malif.dev | |
- N8N_PORT=5678 | |
- N8N_PROTOCOL=https | |
- NODE_ENV=production |
This file contains hidden or 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 php:7.4-fpm | |
# Install dependencies | |
RUN apt-get update && \ | |
apt-get install -y telnet curl unixodbc unixodbc-dev gnupg2 libgssapi-krb5-2 wget iputils-ping openssl zlib1g-dev libzip-dev sendmail | |
# Add Microsoft repo for SQL Server ODBC Driver | |
RUN curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add - && \ | |
curl https://packages.microsoft.com/config/debian/10/prod.list > /etc/apt/sources.list.d/mssql-release.list |
This file contains hidden or 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 ( | |
"fmt" | |
"log" | |
"net/http" | |
_ "net/http/pprof" // Import for pprof | |
) | |
func main() { |
This file contains hidden or 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 golang:alpine3.18 AS build | |
# Important: | |
# Because this is a CGO enabled package, you are required to set it as 1. | |
ENV CGO_ENABLED=1 | |
RUN apk add --no-cache \ | |
# Important: required for go-sqlite3 | |
gcc \ | |
# Required for Alpine |
This file contains hidden or 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
import json | |
import sys | |
def parse_json_to_html(json_data): | |
vulnerabilities = json_data.get('vulnerabilities', []) | |
# Start HTML document | |
html = ''' | |
<html> | |
<head> |
This file contains hidden or 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
import java.util.regex.Matcher; | |
import java.util.regex.Pattern; | |
public class Scratch { | |
public static void main(String[] args) { | |
String text = "This text contains two JSON strings: {\"key1\": \"value1\"} and {\"key2\": \"value2\"} and {\"key2\": \"value2\"}"; | |
Pattern pattern = Pattern.compile("(\\{.*?\\})"); | |
Matcher matcher = pattern.matcher(text); | |
while (matcher.find()) { |
NewerOlder