Skip to content

Instantly share code, notes, and snippets.

View liponex's full-sized avatar
🎯
Focusing

Liponex liponex

🎯
Focusing
View GitHub Profile
// ==UserScript==
// @name notcoin-allow-browser
// @namespace http://tampermonkey.net/
// @version 2024-03-09
// @description Passthrough mobile check for notcoin!
// @author liponex (liponex.ru)
// @homepageURL https://gist.github.com/liponex
// @match https://clicker.joincommunity.xyz/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
@liponex
liponex / yt-shorts-autoplay.js
Last active April 12, 2023 12:52 — forked from SubhrajitPrusty/yt-shorts-autoplay.js
Script that automatically scroll YouTube Shorts
// ==UserScript==
// @name YouTube Shorts autoscroll
// @version v0.0.2
// @grant none
// @author Subhrajit Prusty, liponex
// @description Just auto scroll through youtube shorts
// @match https://www.youtube.com/*
// ==/UserScript==
(function () {
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
xmlns:moz="http://www.mozilla.org/2006/browser/search/">
<ShortName>AlternativeTo</ShortName>
<Description>AlternativeTo - find better alternatives to the products you love and hate.</Description>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height="16" type="image/x-icon">https://i.ibb.co/xmWQ96s/favicon.png</Image>
<Url type="text/html" template="https://alternativeto.net/browse/search/?q={searchTerms}"/>
<moz:SearchForm>https://alternativeto.net/browse/search</moz:SearchForm>
</OpenSearchDescription>
@liponex
liponex / responsive-align.less
Created April 30, 2019 17:27 — forked from ohryan/responsive-align.less
Bootstrap 3 Responsive Text Align
.text-xs-left { text-align: left; }
.text-xs-right { text-align: right; }
.text-xs-center { text-align: center; }
.text-xs-justify { text-align: justify; }
@media (min-width: @screen-sm-min) {
.text-sm-left { text-align: left; }
.text-sm-right { text-align: right; }
.text-sm-center { text-align: center; }
.text-sm-justify { text-align: justify; }
@liponex
liponex / cmd_as_windowsservice.bat
Created April 8, 2019 13:58 — forked from rponte/cmd_as_windowsservice.bat
running cmd.exe as a windows service
-- install cmd.exe as a windows service
sc create CmdAsService binpath= "cmd /K start" type= own type= interact
-- now execute this to run cmd.exe service
sc start CmdAsService
-- you can delete cmd.exe service with this command
sc delete CmdAsService