Skip to content

Instantly share code, notes, and snippets.

View neps-in's full-sized avatar

Napoleon Arouldas neps-in

View GitHub Profile
@neps-in
neps-in / changemode.bat
Last active December 19, 2021 17:29
changemode.bat Change console mode to display as in old DOS Mode to 25 Lines and 80 Columns.
@ECHO OFF
REM ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
REM
REM FILENAME : DOSMODE.BAT
REM
REM DESCRIPTION : Change console mode to display as in old DOS Mode
REM
REM AUTHOR : Napoleon Arouldas S. ([email protected])
REM
REM WEB : http://neps.in
@neps-in
neps-in / rdempty.cmd
Created December 19, 2021 17:35
rdempty.cmd Delete empty directory
for /f "usebackq" %%d in (`"dir /ad/b/s | sort /R"`) do rd "%%d"
@neps-in
neps-in / expertrec-embed-code.html
Last active December 25, 2021 16:07
Expertrec custom search embed code
<!-- paste the entire code where you would be using your search box -->
<script type="text/javascript">
(function() {
// Get your API Key at expertrec.com by creating a free account.
var id = 'your_api_key';
var ci_search = document.createElement('script');
ci_search.type = 'text/javascript';
ci_search.async = true;
ci_search.src = 'https://cse.expertrec.com/api/js/ci_common.js?id=' + id;