This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
srcExt=$1 | |
destExt=$2 | |
srcDir=$3 | |
destDir=$4 | |
opts=$5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
This is a quick script I made to recreate the bibliography from a | |
copied text in MS Word. Just copy the bibliograpy list and format | |
this way: | |
1. <Text less than 255 chars> | |
2. <Text less than 255 chars> | |
... | |
Entries longer than 255 characters will be ignored (but reported con console output) | |
The tag for each entry will be the reference number itself, useful to then | |
manually replace the reference number text in the copied text with the actual reference |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- add this to ~/.config/openbox/rc.xml or lxde-rc.xml, lxqt-rc.xml or similar --> | |
<!-- use Ctrl + Alt + NumPad to move the window to the corrisponding position of the screen --> | |
<keyboard> | |
<!-- 5, Maximize the window --> | |
<keybind key="C-A-KP_5"> | |
<action name="MaximizeFull"/> | |
</keybind> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cmath> | |
#include <climits> | |
#include <queue> | |
#include <vector> | |
#include <map> | |
#include <cstdlib> | |
#include <fstream> | |
#include <iomanip> | |
#include <iostream> | |
#include <sstream> |