An Unsupervised Graph-based Toolbox for Fraud Detection

UGFraud UGFraud is an unsupervised graph-based fraud detection toolbox that integrates several state-of-the-art graph-based fraud detection algorithms. It can be applied to bipartite graphs (e.g., user-product graph), and it can estimate the suspiciousness of both nodes and edges. The implemented models can be found here. The toolbox incorporates the Markov Random Field (MRF)-based algorithm, dense-block detection-based algorithm, and SVD-based algorithm. For MRF-based algorithms, the users only need the graph structure and the prior suspicious score of the nodes as the […]

Read more

A third-person shooter written in the Panda3D game engine and Python

Droid Game 3D This is a very interesting game in which you can fight droid bots and online with other players. Unite in teams, and arrange a capture of the flag (mode in development). Popular servers At the moment, the most popular are the admin server and DOOMPY. Server statistics Admin fun server – 17 players per day. DOOMPY – 8 players per day. Capture the flag mode. New bots New droids. Control There are many different features in the […]

Read more

A voice assistant which can be used to interact with your computer

J.A.R.V.I.S It is a voice assistant which can be used to interact with your computer and also you have been seeing it in Iron man movies, but this JARVIS is not that much advanced as shown in movies. API keys To run this project you should need a API key for reading news. Register for your API key by clicking the following Installation You need to first fork this repository and clone the repository to your local system git clone […]

Read more

Generating a wordcloud made by Twitter with python

auto_tweet_wordcloud This repos is auto action which generating a wordcloud made by Twitter. Preconditions Install Python dependencies pip install -r requirements.txt Download neologd Dictionary sh scripts/download_neologd_dict.sh Usage python src/main.py Demo Default Default Alpha Man Face in Profile Man Face in Profile Alpha Twitter Bird Twitter Bird Alpha GitHub https://github.com/tubone24/auto_tweet_wordcloud    

Read more

Pytorch implementation of Fnet : Mixing Tokens with Fourier Transforms

FNet: Mixing Tokens with Fourier Transforms Pytorch implementation of Fnet : Mixing Tokens with Fourier Transforms. Citation: @misc{leethorp2021fnet, title={FNet: Mixing Tokens with Fourier Transforms}, author={James Lee-Thorp and Joshua Ainslie and Ilya Eckstein and Santiago Ontanon}, year={2021}, eprint={2105.03824}, archivePrefix={arXiv}, primaryClass={cs.CL} } GitHub https://github.com/rishikksh20/FNet-pytorch    

Read more

HTTP Protocol Stack Remote Code Execution Vulnerability

CVE-2021-31166 This is a proof of concept for CVE-2021-31166 (“HTTP Protocol Stack Remote Code Execution Vulnerability”), a use-after-free dereference in http.sys patched by Microsoft in May 2021. According to this tweet the vulnerability has been found by @_mxms and @fzzyhd1. The bug itself happens in http!UlpParseContentCoding where the function has a local LIST_ENTRY and appends item to it. When it’s done, it moves it into the Request structure; but it doesn’t NULL out the local list. The issue with that […]

Read more

An extensible tool to generate hyperlinks from legal citations

CiteURL CiteURL is an extensible tool that parses legal citations and makes links to websites where you can read the cited language for free. It can be used to quickly look up a reference, or to insert a hyperlink for every long- or short-form citation in a longer text. Installation CiteURL has been tested with Python version 3.9, but earlier versions probably work too. Install Python if you don’t have it, then run this command: python -m pip install citeurl […]

Read more

Simple Python Library to convert JSON to XML

json2xml Simple Python Library to convert JSON to XML. Features It lets you convert json to xml in following ways: from a json string from a json file from an API that emits json data Usage The usage is simple: from json2xml import json2xml from json2xml.utils import readfromurl, readfromstring, readfromjson # get the xml from an URL that return json data = readfromurl(“https://coderwall.com/vinitcool76.json”) print(json2xml.Json2xml(data).to_xml()) # get the xml from a json string data = readfromstring( ‘{“login”:”mojombo”,”id”:1,”avatar_url”:”https://avatars0.githubusercontent.com/u/1?v=4″}’ ) print(json2xml.Json2xml(data).to_xml()) # get […]

Read more

Converts a text file of songs to a playlist on your Spotify account

Playlist Converter Convert a text file of songs to a playlist on your Spotify account. Create your playlists faster instead of manually searching for songs. How It Works This application reads the contents of every text file in a directory on your computer You must provide details of how your files are structured in a configuration file Getting a temporary access token from Spotify authorizes this app to access/change your account data Using the Python requests library, this application sends […]

Read more
1 647 648 649 650 651 936