Skip to content

Instantly share code, notes, and snippets.

View alincc's full-sized avatar

Alin Capitanescu alincc

View GitHub Profile
@ruvnet
ruvnet / Liar-Ai.md
Last active February 16, 2025 17:25
Liar Ai: Multi-Modal Lie Detection System

Multi-Modal Lie Detection System using an Agentic ReAct Approach: Step-by-Step Tutorial

Author: rUv
Created by: rUv, cause he could


WTF? The world's most powerful lie dector.

🤯 Zoom calls will never be the same. I think I might have just created the world’s most powerful lie detector tutorial using deep research.

@ruvnet
ruvnet / Insider.md
Last active February 5, 2025 23:22
Insider Trading Mirroring System

o1 Pro: Insider Trading Mirroring System

Introduction

In the dynamic world of financial markets, staying ahead of insider movements can provide significant strategic advantages.

The Insider Trading Mirroring System is a sophisticated tool designed to monitor publicly disclosed insider trades and automatically mirror these actions within your investment portfolio. By leveraging cutting-edge technologies like LangGraph and integrating real-time data feeds, this system offers a seamless and automated approach to capitalizing on insider trading activities.

Legal & Ethical Considerations
It's crucial to emphasize that this system only processes publicly available insider trading information, as mandated by regulatory bodies such as the U.S. Securities and Exchange Commission (SEC). Engaging in trading based on material non-public information is illegal and unethical. Users must ensure compliance with all relevant laws and regulations and consult with legal and compliance professiona

#!/usr/bin/env bash
set -xe
apt update
apt upgrade -y
# Stick to 1.15 branch until microk8s snap updates helm to 2.15.0
snap install microk8s --classic --channel=1.15/stable
microk8s.status --wait-ready
@marco79cgn
marco79cgn / Makefile
Created March 28, 2018 22:02
Makefile for Istio101 using Minikube on macOS (see https://github.com/thesandlord/Istio101)
# Copyright 2018, Google, Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@unique1984
unique1984 / ovpn_autostart
Last active March 15, 2020 13:59
ovpn_autostart
#!/bin/sh
OVPNCONF="/root/ovpn/client.ovpn"
RUNNING=$(ps aux | grep -o "openvpn \-\-config" | wc -l)
case "$1" in
start)
if [ $RUNNING -eq 0 ]; then
echo -n > /var/log/ovpn_autostart.log
nohup openvpn --config "$OVPNCONF" > /var/log/ovpn_autostart.log 2>&1 &
else
@LeCoupa
LeCoupa / redis_cheatsheet.bash
Last active March 1, 2025 14:47
Redis Cheatsheet - Basic Commands You Must Know --> UPDATED VERSION --> https://github.com/LeCoupa/awesome-cheatsheets
# Redis Cheatsheet
# All the commands you need to know
redis-server /path/redis.conf # start redis with the related configuration file
redis-cli # opens a redis prompt
# Strings.
@remojansen
remojansen / class_decorator.ts
Last active September 14, 2023 14:54
TypeScript Decorators Examples
function logClass(target: any) {
// save a reference to the original constructor
var original = target;
// a utility function to generate instances of a class
function construct(constructor, args) {
var c : any = function () {
return constructor.apply(this, args);
}
@axemclion
axemclion / index.js
Last active March 13, 2020 09:00
DBMonster Perf Comparisons
var urls = {
react: 'http://run.plnkr.co/plunks/Wwgjjpl9NHMO5Nd1TUyN/',
ember: 'https://dbmonster.firebaseapp.com/',
underscore: 'http://jashkenas.github.io/dbmonster/',
ractive: 'http://www.rich-harris.co.uk/ractive-dbmonster/',
paperclip: 'http://paperclip-dbmonster.herokuapp.com/'
}
var browserPerf = require('browser-perf');
var FILE = 'data.json';
@RichAyotte
RichAyotte / demo.html
Last active January 10, 2019 22:52
Performance Comparison for React, Angular and Knockout
<!DOCTYPE html>
<html ng-app="test">
<head>
<title>Performance Comparison for Knockout, Angular and React</title>
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/css/bootstrap.css" rel="stylesheet" />
<style type="text/css">
* { box-sizing:border-box; }
body { padding:30px 0; }
h2 { margin:0; margin-bottom:25px; }
h3 { margin:0; padding:0; margin-bottom:12px; }
@maxant
maxant / market.js
Last active November 15, 2024 16:58
Files for creating a trading engine with Node.js.
// /////////////////////////////////////////////////
// this file contains all the classes related to a
// market.
// /////////////////////////////////////////////////
var log4js = require('log4js');
var logger = log4js.getLogger(require('path').basename(__filename, '.js'));
require('es6-collections');
var _ = require('underscore');
/**