Skip to content

Instantly share code, notes, and snippets.

@duoduoyeah
duoduoyeah / xploreapi.py
Created January 25, 2025 01:37 — forked from paulosevero/xploreapi.py
IEEE Xplore API with some modifications
import math
import requests
from urllib.parse import quote
from urllib.request import urlopen
import xml.etree.ElementTree as ET
import json
class XPLORE:
@duoduoyeah
duoduoyeah / ChopTwoColumnPDF.sh
Last active March 13, 2025 13:45
This script will convert a pdf with double column to a pdf with one column. Some conference papers has double column and its hard to detect by OCR.
#!/bin/bash
# Converts a double-column PDF to a single-column PDF by extracting
# each column separately and then interleaving the pages.
#
# Usage:
# ./2one.sh <input.pdf> <output.pdf>
#
# Arguments:
# input.pdf: The path to the input PDF file.