Space shooter being built for PyWeek 32

Humanity’s expansion into space had lasted centuries by the time we encountered the vicious Threx. The Threx adopted a single, religious mission: destroy all alien life and technology. At the edge of the Axium system, you have a chance to make your stand. Build structures to assist you in fighting off the Threx. Controls Control is by joystick or gamepad. If you don’t have a gamepad to hand, remember that Xbox, Switch, and Playstation controllers can all be paired to […]

Read more

UI to save and load gnome-shell extension templates

GUI to save and load gnome shell extensions and extension settings. This app makes it easier to share your gnome extensions setup with others. If an extension does not exist on the system, it will be downloaded from extensions.gnome.org website and installed automatically. Config files and the downloaded extensions are stored in ~/.config/gnome-extensions-loader directory. Installation To install the app run the following commands in your terminal. git clone https://github.com/emrecanaltinsoy/gnome-extensions-loader.git cd gnome-extensions-loader sudo make install To uninstall the app run the […]

Read more

The project for the most brutal and effective language learning technique

– “The project for the most brutal and effective language learning technique” (c) Alex Kay The langflow project was created especially for language learning by using the most direct way. A method demands to work passionately and regularly. The main idea of the method is constant recall by students writing sentences in language which he would like to improve! The natural way of learning by this technique reminds supervised learning which became one the most effective ways in ML. Just […]

Read more

Additional useful operations for Python

Additional useful operations for Python Available Operations MulDiv64: calculate m1*m2/d with no overflow on multiplication (TEAL 3+) Min, Max: calculate minimum/maximum of 2 expressions, without using slots or evaluating arguments more than once (TEAL 4+) LazyAnd, LazyOr: lazily evaluate arguments in And/Or operation State manipulation GlobalState and LocalState allow for manipulating global and local state respectively. They both have the same interface. from pyteal import App, Bytes, Int, Seq, TealType from pytealext import LocalState user_counter = LocalState(“UC”, TealType.uint64) program

Read more

An API endpoint for stock, forex and cryptocurrency exchanges that accept REST webhooks

Jackrabbit Relay is an API endpoint for stock, forex and cryptocurrency exchanges that accept REST webhooks. Disclaimer Please note RAPMD Crypto, LLC (“the Company”), does not provide financial advice. The Company, and any associated companies, owners, employees, agents or volunteers, do not hold themselves out as Commodity Trading Advisors (“CTAs”) or Authorized Financial Advisors (“AFAs”). The owners, publishers, employees and agents are not licensed under securities laws to address particular investment situations. No information presented constitutes a recommendation to buy, […]

Read more

Send email notification when receiving Facebook message

This repository has a small Python application which will allow you to receive an email notification when somebody sends you a Facebook message. Why? I don’t like Facebook as a company, and I don’t want to support them by using their products, including Messenger. However, when I came around to this point of view, I already had a number of existing contacts on Messenger. I migrated everyone I talked to regularly onto other platforms, but in case someone messaged me […]

Read more

An efficient 3D semantic segmentation framework for Urban-scale point clouds like SensatUrban, Campus3D, etc

This is the official implementation of our BEV-Seg3D-Net, an efficient 3D semantic segmentation framework for Urban-scale point clouds like SensatUrban, Campus3D, etc. Features of our framework/model: leveraging various proven methods in 2D segmentation for 3D tasks achieve competitive performance in the SensatUrban benchmark fast inference process, about 1km^2 area per minute with RTX 3090. To be done: add more complex/efficient fusion models add more backbone like ResNeXt, HRNet, DenseNet, etc. add more novel projection methods like pointpillars For technical details, […]

Read more

Cross-Attention is All You Need: Adapting Pretrained Transformers for Machine Translation

This repo hosts the code to accompany the camera-ready version of “Cross-Attention is All You Need: Adapting Pretrained Transformers for Machine Translation” in EMNLP 2021. Setup We provide our scripts and modifications to Fairseq. In this section, we describe how to go about running the code and, for instance, reproduce Table 2 in the paper. Data To view the data as we prepared and used it, switch to the main branch. But we recommend cloning code from this branch to […]

Read more
1 6 7 8 9 10 48