List of freely available resources to study computer graphics programming.
This file contains 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
#include <iostream> | |
#include <string> | |
#include <limits> | |
std::string getPalindromeSum(int num) { | |
if (1 == num) { | |
return "0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + " | |
+ std::to_string(num) + | |
" + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0"; | |
} else if ((num >= 2) && (num <= 10)) { |
This file contains 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
namespace PyoneerC.UnityCleaner | |
{ | |
using UnityEditor; | |
using UnityEngine; | |
using UnityEditor.SceneManagement; | |
using UnityEngine.SceneManagement; | |
using System.Collections.Generic; | |
using System.Linq; | |
using JetBrains.Annotations; |
This file contains 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
# 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 |
This file contains 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
# 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. |
This file contains 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
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 file contains 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
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: |
This file contains 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
"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 file contains 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
"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); |
OlderNewer