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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="AI chatbot interface with dark theme"> | |
| <title>AI Chatbot</title> | |
| <link rel="icon" href="/favicon.ico" type="image/x-icon"> | |
| <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/style.css') }}"> | |
| <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> |
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 nltk | |
| from nltk.chat.util import Chat, reflections | |
| import requests | |
| from flask import Flask, render_template, request, jsonify | |
| from sklearn.linear_model import LinearRegression | |
| import numpy as np | |
| import os | |
| from dotenv import load_dotenv | |
| app = Flask(__name__) |
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
| provider "azurerm" { | |
| features {} | |
| subscription_id = "YOUR_AZ_SUBSCRIPTION_ID" | |
| } | |
| terraform { | |
| backend "azurerm" { | |
| resource_group_name = "rg-realtime-crypto-alerts" | |
| storage_account_name = "stgrealtimecryptoalerts" |
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
| using System; | |
| using System.IO; | |
| using System.Net.Http; | |
| using System.Threading.Tasks; | |
| using System.Net; | |
| using System.Net.Mail; | |
| using Microsoft.AspNetCore.Mvc; | |
| using Microsoft.Azure.WebJobs; | |
| using Microsoft.Azure.WebJobs.Extensions.Http; | |
| using Microsoft.AspNetCore.Http; |
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
| const https = require('https'); | |
| const Web3 = require('web3'); | |
| const axios = require('axios'); | |
| require('dotenv').config(); | |
| const fs = require('fs'); | |
| const express = require('express'); | |
| // Load environment variables | |
| const COINGECKO_API_KEY = process.env.COINGECKO_API_KEY; |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.0; | |
| contract MyToken { | |
| string public name = "MyToken"; | |
| string public symbol = "MTK"; | |
| uint8 public decimals = 18; | |
| uint256 public totalSupply = 1000000 * 10 ** uint256(decimals); | |
| mapping(address => uint256) public balanceOf; |
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
| const HDWalletProvider = require("@truffle/hdwallet-provider"); | |
| const infuraKey = "YOUR_INFURA_KEY"; | |
| const mnemonic = "your 12-word mnemonic"; | |
| module.exports = { | |
| networks: { | |
| rinkeby: { | |
| provider: () => new HDWalletProvider(mnemonic, `https://rinkeby.infura.io/v3/${infuraKey}`), | |
| network_id: 4, // Rinkeby ID | |
| gas: 5500000, |
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 { FrameRequest, getFrameMessage, getFrameHtmlResponse } from '@coinbase/onchainkit'; | |
| import { NextRequest, NextResponse } from 'next/server'; | |
| import { NEXT_PUBLIC_URL } from '../../config'; | |
| import { getChartOptions } from '../lib/getChartOptions'; | |
| import { throwErr } from '../lib/throwErr'; | |
| async function getResponse(req: NextRequest): Promise<NextResponse> { | |
| let text: string | undefined = ''; | |
| let pool: any | undefined = {}; | |
| let chain: string = ''; |
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 { getFrameMetadata } from '@coinbase/onchainkit'; | |
| import type { Metadata } from 'next'; | |
| import { NEXT_PUBLIC_URL } from './config'; | |
| const frameMetadata = getFrameMetadata({ | |
| buttons: [ | |
| { | |
| label: 'Trending Crypto Pools', | |
| }, | |
| { |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Crypto Predictor</title> | |
| </head> | |
| <body> | |
| <h1>Crypto Predictor</h1> | |
| <form method="POST"> | |
| <label for="coin_id">Coin ID:</label><br> | |
| <select id="coin_id" name="coin_id"> |