Skip to content

Instantly share code, notes, and snippets.

View jacenko's full-sized avatar

Deniss Jacenko jacenko

View GitHub Profile
@jacenko
jacenko / jsonvue-style.css
Last active September 24, 2022 13:27
My JSONVue CSS Styles
#json {
background: #000;
}
* {
font-family: Inconsolata, monospace;
color: #FFC100;
}
.property {
@jacenko
jacenko / tampermonkey-asc-script.js
Last active March 22, 2020 14:35
Amazon SellerCentral Facelift
// ==UserScript==
// @name Amazon SellerCentral Facelift
// @namespace http://tampermonkey.net/
// @version 0.6a
// @description Shows additional sales data on the SellerCentral homepage. Use at your own risk.
// @author Deniss Jacenko
// @match https://sellercentral.amazon.com/gp/homepage.html/*
// @match https://sellercentral.amazon.com/home
// @match https://sellercentral.amazon.com/cm/*
// @match https://sellercentral.amazon.com/sspa/*
@jacenko
jacenko / folders.bat
Created April 12, 2016 15:09
Batch script for creating folders from a TXT file in Windows
:: 1. Create FILENAME.txt in the current directory
:: 2. Add names of new folders to each line of this txt file
:: 3. Run folders.bat in Command Prompt
:: 4. Folders are created
@echo off
for /f %%i in (FILENAME.txt) do mkdir %%i