Based on Send Button UI Interaction/Animation by Saransh Agarwal
A Pen by Dilum Sanjaya on CodePen.
Based on Send Button UI Interaction/Animation by Saransh Agarwal
A Pen by Dilum Sanjaya on CodePen.
import hashlib | |
import time | |
import json | |
class Block: | |
def __init__(self, index, transactions, timestamp, previous_hash, nonce=0): | |
self.index = index | |
self.transactions = transactions | |
self.timestamp = timestamp |
"use client" | |
import React, { useState } from 'react'; | |
const Chatbot = () => { | |
const [input, setInput] = useState(''); | |
const [messages, setMessages] = useState([ | |
{ role: 'system', content: 'dresan es el goat' } | |
]); | |
const [loading, setLoading] = useState(false); |
"use client" | |
import React, { useState } from 'react'; | |
const Chatbot = () => { | |
const [input, setInput] = useState(''); | |
const [messages, setMessages] = useState([ | |
{ role: 'system', content: 'dresan es el goat' } | |
]); | |
const [loading, setLoading] = useState(false); |
This is my first custom-built PC, and I couldn't be happier with the results. | |
It handles everything I throw at it with ease, | |
from complex graphical operations in Unreal Engine to | |
video editing and software development in JetBrains IDEs. | |
Cost and Satisfaction | |
The total cost was around $1,000, which I consider a great value given the performance. | |
Overall, I'm extremely satisfied with the build. | |
Components: |
Computer Graphics -> https://gist.github.com/pyoneerC/423ec3e9371fae255091d703e5dcc86c | |
Big O Cheatsheet | |
GitHub FOSS Code | |
Discord -> https://gist.github.com/pyoneerC/a9f9132ce2a57db5331a8cd95ca45b8e | |
Wikipedia y Libros | |
Khan Academy | |
Roadmap.sh | |
Learn CPP | |
draw.io | |
Trello |
# This is a simple crypto trading bot that buys and sells coins based on their price changes and market cap. | |
# The bot uses the Coinranking website to get the latest prices and market caps of the coins. | |
# The bot starts with a balance of 10,000$ and buys coins according to some rules, and sells them based on other rules. | |
# Remember that this is a simple bot and should not be used for real trading. | |
# It's a simulation to understand how trading works. | |
# At the end of the program, the bot will show a bar chart of the current prices of the coins in your portfolio | |
# and the total profit you have made so far, as well as a line chart of the progression of your profits over time. |
# Script to get the prices of an item in MercadoLibre Argentina and plot a histogram of the prices | |
from matplotlib.offsetbox import OffsetImage, AnnotationBbox | |
import matplotlib.ticker as ticker | |
import matplotlib.pyplot as plt | |
from bs4 import BeautifulSoup | |
from PIL import Image | |
import numpy as np | |
import requests | |
import datetime |
List of freely available resources to study computer graphics programming.