All exercises done during the Python 3 course in the Video Course (World 1, 2 and 3)

Todos os exercícios feitos durante os três cursos de Python 3 no Curso em Vídeo (Mundo 1, 2 e 3). O curso que me introduziu no mundo da programação. Inicie ele sem saber nada sobre a área e hoje entendo a lógica e algoritmos de programação, assim como a como programar em Python. No total foram realizados 115 exercícios. 📚 Conteúdo do Curso Python 3 – Mundo 1 (40 horas) Introdução ao Mundo da Programação; Primeiros passos com o Python; […]

Read more

Machine Translation Weekly 99: Multilingual models can also be evil

In a report published in December on arXiv, Google Deepmind tries to categorize major ethical and societal issues connected to large language models. The report probably does not say anything that was not known before, but I like the way they categorize the issues they talk about. Because the report mostly talks about monolingual language models, in this post, I will go over some of the issues they discuss and speculate how they in the paper are relevant for machine […]

Read more

How vectorization speeds up your Python code

Python is not the fastest programming language. So when you need to process a large amount of homogeneous data quickly, you’re told to rely on “vectorization.” This leads to more questions: What does “vectorization” actually mean? When does it apply? How does vectorization actually make code faster? To answer that question, we’ll consider interesting performance metrics, learn some useful facts about how CPUs work, and discover that NumPy developers are working hard to make your code faster. What “vectorization” means, […]

Read more

Rubik’s Cube in pygame with OpenGL

Rubik’s Cube in pygame with OpenGL The script show on the screen a Rubik Cube buit with OpenGL. Then I have also implemented all the possible moves as combination of the main moves. It is possible to change camera view with te mnouse in a way rude. Next step is to build an AI to solve it automatically. Feel free to download and edit it for your purpouse. See you soon. GitHub View Github    

Read more

Simulator for FRC 2022 challenge: Rapid React

Simulator for FRC 2022 challenge: Rapid React out-1.mp4 Usage In order to run the simulator use the following: python3 rrsim.py [config_path] where config_path is the path to the json configuration (default value is default_configs/config.json). Configurations In order to configure game, field and robots, a config JSON file must be created. See default_configs directory for examples of configurations. The following are parameters that can be defined in the configuration: Per-robot parameters: Name Type Meaning Example starting_position Tuple[float, float] Starting position of […]

Read more

Ground control station software for the drone created with the Python pyside2 library

Teknofest yarışmasında yerlilik kısmında Yer Kontrol İstasyonu yazılımı seçeneği bulunuyordu. Bu yüzden yerlilik alanında yer kontrol istasyonu yazmaya başladım. Ancak 2022 yılı Teknofest yarışmasında yerlilik kısmından yer kontrol istasyonu kaldırıldı. Bu yüzden projeye devam etmedim. Ancak gelecek yıllarda tekrar yerlilik kısmına yer kontrol istasyonu yazılımı konacak olursa ilgili arkadaşlar bu projeden yararlanarak, bu projeyi devam ettirerek kolayca yer kontrol istasyonu yazılımlarını yapabilirler. Bu proje benim bir işime yaramadı ancak belki farklı arkadaşların işine yarar bu yüzden paylaşmak istiyorum. Neler Kullandım? […]

Read more

A computational optimization project towards the goal of gerrymandering the results of a hypothetical election in the UK

A computational optimization project towards the goal of gerrymandering the results of a hypothetical election in the UK. We seek to determine the best possible division of 14 shires on agiven map into 5 constituencies, each composed of one or more shires. We do so towards the goal of maximising the number of such constituencies in which “Joris Bohnson” wins a majority of the total votes inside this constituency. As a result, he is able to send the maximum possible […]

Read more

A2DP agent for promiscuous/permissive audio sinc

A2DP agent for promiscuous/permissive audio sinc for Linux. Once installed, a Bluetooth client, such as a smart phone, should be able to discover, pair, and subsequently play audio without any manual interaction. This is perfect for those with headless media boxes wanting to expand their connective options and saves explaining things to the kids 8) This project assumes the use of PulseAudio and should be tested with PortAudio if required. This project is heavily based on the Gist and comments […]

Read more

Web Scraping with Python

Esse projeto consiste em um código para o usuário buscar as últimas nóticias sobre um termo qualquer, no site G1. Para esse projeto foi escolhida a linguagem de programação Python. Para que fosse possível realizar essa busca, foram utilizadas três bibiliotecas, que foram: selenium – Utilizada para automatizar o processo e obter o conteúdo da página Web. bs4 – BeautifoulSoup – Utilizada para manipular o conteúdo HTML. Pandas – Utilizada para criar e exportar um dataframe com as informações obtidas. […]

Read more
1 277 278 279 280 281 940