Saturday, October 26, 2024

OneDrive Direct Download Link Generator for new 2024 API cracked - Working






Microsoft OneDrive Direct File Download URL Maker for old links




<iframe src="https://onedrive.live.com/embed?cid=8F99649728BEB2F3&resid=8F99649728BEB2F3%211010&authkey=AFo8ZQ_-qj84DEQ" width="98" height="120" frameborder="0" scrolling="no"></iframe>  see instructions below, if you don't know how. NOTE : For images there an extra step below.



https://onedrive.live.com/embed?cid=8F99649728BEB2F3&resid=8F99649728BEB2F3%211010&authkey=AFo8ZQ_-qj84DEQ and populate the text-box below. To proceed click "Get Download Link" button.



4. Now, Click on Get Download Link button.


Text-box will be highlighted so you can copy the full link. To copy, right-click and choose  "Copy" or simply (ctrl-c) to copy link. Note: Entire URL is automatic selected for your convenience.





 


Microsoft OneDrive Direct File Download URL Maker for new 2024 API

1. Right-click on item in Onedrive, Choose Embed.

















2. Extract link and follow 

<iframe src="https://1drv.ms/u/s!AsRPggdGwZFcjVEiJ1LvYyO1qZm9?embed=1" width="98" height="120" frameborder="0" scrolling="no"></iframe>

Copy and Open the link in browser 
https://1drv.ms/u/s!AsRPggdGwZFcjVEiJ1LvYyO1qZm9?embed=1








3. Click on link below file and follow. This will open up the OneDrive preview page. Copy this URL/link from your browser address (see yellow highlighted area in image below).










The link will look like this as generated by new 2024 API, and needs to be altered

https://onedrive.live.com/?authkey=%21ACInUu9jI7Wpmb0&cid=5C91C14607824FC4&id=5C91C14607824FC4%211745&parId=5C91C14607824FC4%21609&o=OneUp


4. Copy link into Step 3.1 above, continue to 4 to get your new 2024 downloadable link! 

Another first by metadataconsulting.ca!!!!


Alternates, this did not work

“You can also create a public download link for a file in OneDrive by:

  1. Selecting the file or image and clicking "Share" on the top
  2. In the link settings, setting the link as "Anyone with the link" and "Allow editing"
  3. Clicking "Apply"
  4. Clicking "Copy"
  5. Adding the text "&download=1" to the end of the URL “

For Images, you get a direct url
  1. Right-click on image and select Embed. The Copy the URL to embed image now gives you direct download URL, but is super long.

    So you do not need to do the above! 


Monday, October 7, 2024

Setting up Notepad++ to use with Python language indentations code-style

From Python's official style guide (PEP 8 – Style Guide for Python Code) one should, 

        use 4 spaces per indentation level. 

To set-up Python language indents in Notepad++,

  • Choose Settings->Preferences->Indent Settings for python


To execute a python script, see 


Thursday, August 15, 2024

How does 'Convert to ANSI' and ANSI Encoding function work in Notepad++

What is the difference between function 'Convert to ANSI' and selecting ANSI character set for a file? 






















Let's start with an example; á’‹ Inuktitut symbol for 'gi'. The hexacimal representation of á’‹ is e1 92 8b opened in FRHED a free hex editor.













The 'Convert to ANSI' actually reduces the character set to fit within the ANSI range of 0-256 characters. ANSI encompasses on the upper end the Latin-1 Supplement plane to handle some established European languages. 

So, characters greater than decimal 256 or 0x3f in hexadecimal are converted to a question mark (?).

When you 'Convet to ANSI' on gi, it became a question mark 0x3f in hex. In Notepad++ you see a question mark as well. 





Select Encoding -> ANSI, does not change the values, just how they are displayed in Notepad++.