A warp randomizer for pokeemerald

Randomizes the warps in a stock pokeemerald repo. Usage Instructions Install networkx and matplotlib via pip3 or similar. Set POKEEMERALD environment variable to the path to your pokeemerald/ folder Edit rand_idx at the top of the file to the seed to start searching from. Ensure that the repo has not already been randomized, or the script will not work! python3 randomizer.py The script will search for randomized layouts which pass completability tests. This can take anywhere from a couple of […]

Read more

TicTacToe using Socket Server

This is a project for the class : 18CSC302J – Computer Networks by Dr. S.Babu Contributors Suvodeep Sinha RA1911003010108 Vedant Singh RA1911003010097 Harshit Singh RA1911003010096 Overview This is a simple game of tic-tac-toe developed in Python. It allows two players to play with one another on different command lines through networking. The server starts the game by first running server.py, waiting for the client to connect by then running client.py. Once their connected, the game itself starts. The server starts […]

Read more

Add-In for Blender to automatically save files when rendering

Purpose This Blender Add-On provides an easy way to document & preserve a project’s progress over time and to jump back to an arbitrary previous state, if required. It saves the .blend, .png (render image, optional) and a readme.txt (optional infos) -file in a new, dedicated subdirectory on every rendering. The new sub-directories are named YYMMDD-hhmmss + an optional short note, located in a base-directory of your choice. Creating images/animations with Blender is usually a highly iterative trial-and-error process, that […]

Read more

YOLOv5 detection interface – PyQt5 implementation

2021/10/8: 所有代码已上传,直接clone后,运行yolo_win.py即可开启界面。 2021/9/29:加入置信度选择 界面是在ultralytics的yolov5基础上建立的,界面使用pyqt5实现,内容较简单,娱乐而已。 功能: 模型选择 本地文件选择(视频图片均可) 开关摄像头 运行/终止 统计检测结果 默认模型为yolov5s.pt,默认输入文件为电脑摄像头视频 使用视频: https://www.bilibili.com/video/BV1sQ4y1C7Vk?spm_id_from=333.999.0.0 csdn: https://blog.csdn.net/weixin_41735859/article/details/120507779?spm=1001.2014.3001.5501 摄像头检测画面: 本地视频检测画面: 本地图片检测画面: 使用 运行yolo_win.py即可开启检测界面。 存在的一个小问题,切换模型或者文件过于频繁,可能会卡住,重启一下即可。 这种情况很少出现,问题不大。 GitHub View Github    

Read more

Addon to give a keybind to automatically enable contact shadows on all lights in a scene

An easy way to let you enable contact shadows on all your lights, because Blender doesn’t enable it by default, and doesn’t give you a way to enable it by default, even though it’d be damned useful if it was enabled by default. So, enter this stupid thing, which will enable contact shadows on all lights in your scene, and is smart enough not to try to re-enable them on a light where they’ve been automatically enabled, and then disabled […]

Read more

Tools for working with MARC data in Catalogue Bridge

Tools for working with MARC data in Catalogue Bridge. Borrows heavily from PyMarc (https://pypi.org/project/pymarc/). Requirements Requires the regex module from https://bitbucket.org/mrabarnett/mrab-regex. The built-in re module is not sufficient. Also requires py2exe. Installation From GitHub: git clone https://github.com/victoriamorris/catbridge_tools cd catbridge_tools To install as a Python package: To create stand-alone executable (.exe) files for individual scripts: Executable files will be created in the folder dist, and should be copied to an executable path. Both of the above commands can be carried out […]

Read more

Django StatusPage : App to display statuspage for your services

Its page what will check your services is online or not Setup python -m venv .venv ..venvScriptsactivate pip install -r requirements.txt python manage.py makemigrations python manage.py migrate python manage.py runserver After that start python manage.py check_status There are executed all checks of services. It should run if you want check services status. Testing flake8 pytest –cov –cov-report html python manage.py test

Read more

Django sample app with users including social auth via Django-AllAuth

Simple, out-of-the-box Django all-auth demo app A “brochure” or visitor (no login required) area A members-only (login required) area. Supports local email/password as well as easy oauth with Google, Facebook and others. This is a simple, old-style HTML request/response website.No webpack, node, JavaScript framework.Objective is to get you a basic, visitor-and-member website operational quickly. tl;dr Get your Facebook and/or Google app creds (see sections below for more info); Clone or download the repo; then Follow instructions below: $ cd demo-allauth-bootstrap […]

Read more

Machine Translation Weekly 90: The Surprising Multinguality of Large Language Models

This week, I am going to share my amazement and doubts about what could be called the surprising multilinguality of large language models. By large language models, I mean the really large ones that I can hardly run myself, trained on huge, hardly curated data and thus harbouring the worst societal demons, but also having many fascinating properties. Here, I would like to feature three papers that make me think about the properties of the models. 1. Finetuning to other […]

Read more
1 20 21 22 23 24 50