Skip to content

Instantly share code, notes, and snippets.

+-------------------------------------+----------+ | TableName | RowCount | +-------------------------------------+----------+ | Achievements | 12 | | AiGameResults | 74 | | AiGameRules | 10 | | BadgeLevelRewards | 0 | | BadgeLevels | 12 | | CameraStreams | 37 | | Characteristics | 16 |

AI Assistant for Brokerage Companies: Key Pitch Points

1. Real-time Market Updates:

  • Instant Monitoring: The AI assistant constantly monitors global news sources and financial databases.
  • Tailored Notifications: Users receive instant notifications about price movements, shares, and other assets they're interested in.
  • Custom News Briefings: Tailored news briefings based on individual portfolio and preferences.

2. Deep Knowledge Base:

  • Ask Anything: Users can ask any market-related question and receive accurate, up-to-date information.
  • Comprehensive Training: Trained on vast financial datasets for comprehensive knowledge on stocks, commodities, forex, and more.
@nikneroz
nikneroz / sd_launchctl.md
Created August 31, 2023 11:16
Stable Diffusion launchctl
nvim ~/Library/LaunchAgents/com.stable_diffusion_webui.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
@nikneroz
nikneroz / aitd.md
Last active August 25, 2023 14:10
AI Support Bot Technical Description

AI Support Bot Technical Description

1. Overview:

The AI support bot is an advanced conversational agent designed to assist users by providing real-time information and support. It leverages the capabilities of LangChain for natural language processing, PineConeDB for data storage and retrieval, and integrates with external APIs to fetch the latest data based on user requests.

2. Components:

- LangChain:

  • Purpose: Natural Language Processing (NLP) and understanding.
  • Functionality: LangChain processes user input to understand the intent and context. It then generates appropriate responses or triggers specific actions based on the user's request.
@nikneroz
nikneroz / faq.md
Last active June 29, 2023 09:12
Grid Capital FAQ

FAQ Support Pages for Grid Capital

What you need to get started

  1. Do I need to be an experienced trader to use Grid Capital?

    No, Grid Capital is designed to accommodate both experienced traders and beginners. Our platform's intuitive design ensures that anyone can navigate and make trades with ease.

  2. What do I need to start trading on Grid Capital?

@nikneroz
nikneroz / PMI.md
Last active November 29, 2021 09:21

NER deployment

cd ~/pmi
git clone ssh://gitlab@gitlab.grfc.ru:222/mfti/vectorx-ner.git
cd ~/pmi/vectorx-ner/Docker
docker-compose -f docker-compose.yml build
docker-compose -f docker-compose.yml up

Проверяем через Postman и Ctrl+C чтобы остановить сервис

package com.example.player
import android.app.Activity
import android.content.Intent
import android.media.MediaPlayer
import android.net.Uri
import android.os.Build
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.provider.MediaStore
@nikneroz
nikneroz / Cassandra DB.md
Created September 9, 2019 13:57
Cassandra DB

What is Cassandra DB?

Cassandra is written in Java and was open-sourced by Facebook in July 2008. This original version of Cassandra was written primarily by an ex-employee from Amazon and one from Microsoft. It was strongly influenced by Dynamo, Amazon’s pioneering distributed key/value database. Cassandra implements a Dynamo-style replication model with no single point of failure, but adds a more powerful “column family” data model.

Cassandra has become so popular because of its outstanding technical features. It isdurable, seamlessly scalable, and tuneably consistent. It performs blazingly fast writes, can store hundreds of terabytes of data, and is decentralized and symmetrical so there’sno single point of failure. It is highly available and offers a schema-free data model

Where Can I use Cassandra DB?

  • Large-scale, high-volume websites, such as Web 2.0 social applications
  • High-performance, decentr
@nikneroz
nikneroz / planning.md
Last active June 2, 2019 15:41
Migration Plan

Auth ~ 1-2 weeks

Estimations

  • Base logic ~ 1 week
  • Controllers/Views/Mailers ~ 1 week

Authentication:

Library

@nikneroz
nikneroz / puma.rb
Created May 30, 2019 11:03
Ubuntu Rails deployments(RVM, Puma, Mina, Nginx)
#!/usr/bin/env puma
# start puma with:
# RAILS_ENV=production bundle exec puma -C ./config/puma.rb
# threads_count = ENV.fetch("RAILS_MAX_THREADS") { 16 }
rails_env = 'production'
app_path = '/home/deploy/my_app'
current_path = "#{app_path}/current"