OneDriveExplorer – A command line and GUI based application for reconstructing the folder structure of OneDrive from the UserCid.dat file

OneDriveExplorer is a command line and GUI based application for reconstructing the folder structure of OneDrive from the ..dat file. Command line To use OneDriveExporer, simply provide the ..dat file to the -f argument OneDriveExplorer.py -f business1d1a7c039-6175-4ddb-bcdb-a8de45cf1678.dat OneDriveExplorer will produce a JSON file called OneDrive.json containing the folder structure. The –pretty option can be used to output the JSON into a more human readable layout. GUI The GUI consists of two panes: the folder structure on the left and details […]

Read more

Defining Python Functions With Optional Arguments

Defining your own functions is an essential skill for writing clean and effective code. In this tutorial, you’ll explore the techniques you have available for defining Python functions that take optional arguments. When you master Python optional arguments, you’ll be able to define functions that are more powerful and more flexible. In this course, you’ll learn how to: Distinguish between parameters and arguments Define functions with optional arguments and default parameter values Define functions using args and kwargs Deal with […]

Read more

Background change acc. to the solarterm

About The Project In ancient China, our ancestor named solar terms with such romantic and poetry words which bring the temperature, humidity, sound, smell, taste to me when I read them. These breathtaking photos for different solar terms taking from countdown video in Beijing winter olympics 2022 opening ceremony. Run the code then destop’s background will be set based on the solar term interpreted from the current date. How to Use: download and unzip code install python3 (https://www.python.org/downloads/windows/) double click […]

Read more

The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other

The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other. For example, following is a solution for 8 Queen problem. The 8 queens problem is simple. On an 8×8 chess board, the queen can move any number of squares horizontally, vertically, and diagonally. Normally, there is one queen per side on the board but for this problem, there are 8. This can be generalized to N queens […]

Read more

A project to find out all the words in a crossword

Solves a sqare(nxn) crossword puzzle. Running Requirements Steps Download the file https://github.com/FumaxIN/Crossword-Solver.git Switch to the directory Run the command How it works Enter the order of crossword(n). Enter each character individualy Crossword table ccreated All the words are now listed Example: boyboyobattreecattontinratoxoatoptopoozyfiz As this is just a side project to practice pandas and numpy, this may not be very efficient and comes with some constraints: Diagonally it can only find one word per diagonal. Diagonal search is limited to Left […]

Read more

Simple daily reminder about upcoming Ramadhan

Simple bot for displaying daily reminder about Islamic praying, especially regarding month of Ramadhan. Technology Stack License The MIT License (MIT) Copyright © 2022 RamadhanCountdown Team Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom […]

Read more
1 222 223 224 225 226 915