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

Anonymously Reverse shell over Tor Network using Hidden Services without portfortwarding

Anonymously Reverse shell over Tor Network using Hidden Services without portfortwarding Tor ağı ile Dark Web servislerini kullanarak anonim biçimde port yönlendirmeden ters bağlantı Explore the docs » Projeyi keşfet Table of Contents / İçerik Bölümü About the Project / Proje Hakkında Getting Started / Başlangıç Usage / Kullanım Roadmap / Yol Haritası Contributing / Katkı License / Lisans Disclaimer / Sorumluluk If you are having any os compatiblity issue, let me know. I will try to fix as soon […]

Read more

A python package for deep multilingual punctuation prediction

This python library predicts the punctuation of English, Italian, French and German texts. We developed it to restore the punctuation of transcribed spoken language. This uses our “FullStop” model that we trained on the Europarl Dataset. Please note that this dataset consists of political speeches. Therefore the model might perform differently on texts from other domains. The code restores the following punctuation markers: “.” “,” “?” “-” “:” Install To get started install the package from pypi: pip install deepmultilingualpunctuation […]

Read more

A python bot that any member of the server will be able to download and run on their computer to get information or other about themselves

369MC-BOT è un bot scritto in python che ogni membro del server potrà scaricare ed eseguire sul proprio computer per ottenere informazioni o altro riguardo al server. Seguendo i passaggi qua sotto indicati usare il bot per te sarà semplicissimo 1) Installare python Python è necessario per leggere i file del bot, puoi scaricarlo dal link quà sotto Download python per Windows: https://www.python.org/ftp/python/3.10.2/python-3.10.2-amd64.exe Download python per Mac OS: https://www.python.org/ftp/python/3.10.2/python-3.10.2-macos11.pkg 2) Scegliere il file del bot Ci sono 3 versioni del […]

Read more
1 233 234 235 236 237 927