6
Builds and prints a list of all links in a specified webpage
9
This python class converts a permission mask in symbolic format (the kind a diretcory listing produces, ex.: drwxr-xr-x) to a string that's usable in a chmod command.
ex.: chmod u=rwx,g=rwx,o=rwtx ~/myscripts/convert_mask.py
This can be very useful when recovering permissions from a backup.
ex.: chmod u=rwx,g=rwx,o=rwtx ~/myscripts/convert_mask.py
This can be very useful when recovering permissions from a backup.
1
First post here. Tried to get the most minimalistic way to calculate the amount of permutations. The typical formula is:
n! = 1 * 2 * 3 ... * r * r + 1 * ... n
r! = 1 * 2 * 3 ... * r
But since every number between 1 and r is simplified, it's just a multiplication of the (x)range between r+1 and n.
Also as an example of lambda functions on python, and the reduce function, which takes every pair inside a list-type object and runs the function over them.
n! = 1 * 2 * 3 ... * r * r + 1 * ... n
r! = 1 * 2 * 3 ... * r
But since every number between 1 and r is simplified, it's just a multiplication of the (x)range between r+1 and n.
Also as an example of lambda functions on python, and the reduce function, which takes every pair inside a list-type object and runs the function over them.
9
Python example set-up script from python.org docs.
8
Copies files from nested folders into one source, flat directory.
4
This module is a Python Library to support all IP2Location™ database products. It has been optimized for speed and memory utilization. Developers can use the API to qeury all IP2Location™ binary databases for applications written in Python.
2
A simple CLI hangman implementation in Python.
Uses a simple list of countries in countries.txt to generate words.
Uses a simple list of countries in countries.txt to generate words.
2
A simple anagram solver in python. Requires a dictionary named wordlist.txt
2
A simple anagram maker written in python. Automatically adds original word to wordlist.txt if it does not exist there already so it may be used in conjunction with the solver.
2
A simple platformer written in python using pygame. It is still plagued with bugs at the moment. Pre-Alpha.









