Skip to content

Instantly share code, notes, and snippets.

function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if (pair[0] == variable) {
return pair[1];
}
}
}
function getQueryVariable(variable) {
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++) {
var pair = vars[i].split("=");
if (pair[0] == variable) {
return pair[1];
}
}
}
@vinsworldcom
vinsworldcom / Notepadpp_Change.log
Last active March 17, 2023 19:02
Notepad++ Consolidated Change Log
====
Notepad++ v8.4.7 enhancements and bug-fixes :
http://download.notepad-plus-plus.org/repository/8.x/8.4.7/npp.8.4.7.portable.zip
2022-11-08
1. Fix empty session issue due to forced Windows update restart.
2. Fix printing with extra background colors issue due to Change History.
3. Update to Scintilla 5.3.1 and Lexilla 5.2.0.
4. Updated nlohmann json to 3.11.2 and Boost to 1.80.0.
5. Make large file restriction configurable.