Nubank expense tracker for python

This is an independent project to track Nubank expenses. To fetch Nubank data we are going to use an unofficial Nubank API, that is going to be explained later. This data will be kept in a database container to be used and analyzed later. The main goal of this project is to put in practice technologies such as containers, docker-compose, python, network between containers and so on. This project is under development… How to set things up To set up […]

Read more

The backbone CSPDarkNet of YOLOX

The backbone CSPDarkNet of YOLOX. In this project, you can enjoy: CSPDarkNet-S CSPDarkNet-M CSPDarkNet-L CSPDarkNet-X CSPDarkNet-Tiny CSPDarkNet-Nano As far as I know, it is difficult for many researchers to train YOLOv5 or YOLOX from scratch because they, including me, do not have sufficient computing resources. Therefore, a pre-trained backbone is still important. In addition, since YOLOv5 and YOLOX are excellent object detectors, their backbones theoretically perform better than imagenet pretrained weights. Therefore, based on the above two reasons, I deliberately […]

Read more

Various technical documentation, in electronically parseable format

Various technical documentation, in electronically parseable format. You will need Python 3 to run the scripts and programs in this project. The parseable format commonly used in this project is JSON. Books are referenced by the name of the .json file in books/*.json. Each *.json file describes the book in more detail. Node that while the json does list parts, chapters, sections, etc. only the chapters actually referenced by the documentation are listed, at least initially.    

Read more

A stack-based systems language that supports structures, functions, expressions, and user-defined operator behaviour

A stack-based systems language that supports structures, functions, expressions, and user-defined operator behaviour. Currently compiles to URCL with plans to add additional formats in the future. Why Python? The initial implementation of this compiler is written in Python. This allowed for flexibility during development and guaranteed portability across major platforms. This compiler may be ported to other languages in the future should the need arise. Invoking the Compiler python gb.py -o MyProgram.urcl MyProgram.gb Argument Description gb.py This is the main […]

Read more

Python’s all(): Check Your Iterables for Truthiness

When programming, you’ll often need to check if all the items in an iterable are truthy. Coding this functionality repeatedly can be annoying and inefficient. Luckily, Python provides the built-in all() function to solve this problem. This function takes an iterable and checks all its items for truth value, which is handy for finding out if those items have a given property or meet a particular condition. Python’s all() is a powerful tool that can help you write clean, readable, […]

Read more

Hough transform – A feature extraction method for detecting simple shapes such as circles, lines, etc in an image

Hough transform is a feature extraction method for detecting simple shapes such as circles, lines, etc in an image. Hough Transform and Hough Line Transform is implemented in OpenCV with two methods; the Standard Hough Transform and the Probabilistic Hough Line Transform. The “simple” characteristic is derived by the shape representation in terms of parameters. A “simple” shape will be only represented by a few parameters, for example a line can be represented by its slope and intercept, or a […]

Read more

Using computer vision techniques in OpenCV, we will identify road lane lines in which autonomous cars must run

Using computer vision techniques in OpenCV, we will identify road lane lines in which autonomous cars must run. This will be a critical part of autonomous cars, as the self-driving cars should not cross it’s lane and should not go in opposite lane to avoid accidents. Frame Masking and Hough Line Transformation To detect white markings in the lane, first, we need to mask the rest part of the frame. We do this using frame masking. The frame is nothing […]

Read more

Examples of using cocotb for functional verification of VHDL designs with GHDL

The original repository is now located on my own git-server at https://git.goodcleanfun.de/tmeissner/cocotb_with_ghdlIt is mirrored to github with every push, so both should be in sync. At the moment, this repo is in an early state and serves as a learning tool for me. So it contains a a lot of quirks and code which can be done much better by cocotb-professionals. A collection of examples of using cocotb for functional verification of VHDL designs with GHDL. This is a project […]

Read more

Reduce PDF size without sacrificing visual quality or metadata

DietPDF aims at reducing PDF file size while not degrading quality nor losingmetadata. Description DietPDF aims at reducing PDF file size while not degrading quality. Here are some tricks used to achieve this goal: Use Zopfli instead of Zlib to get better compression ratio while beingcompatible with Zlib. Use JpegTran to optimize and remove unnecessary data from embedded JPEGs. Use of Run-Length Encoding to help Zopfli achieve better compression. Use Zopfli on embedded JPEGs, it helps sometimes Remove unnecessary spaces […]

Read more
1 233 234 235 236 237 928