Skip to content

Instantly share code, notes, and snippets.

View pixonte's full-sized avatar
🚀
Making smth awesome!

Sergey Pozhilov pixonte

🚀
Making smth awesome!
View GitHub Profile
@pixonte
pixonte / trackman.ahk
Created June 8, 2025 05:59
Autohotkey script for scrollwheel emulation on Logitech Trackman
;; Configuration
;#NoTrayIcon
;; Higher numbers mean less sensitivity
esmb_Threshold = 25
;; This key/Button activates scrolling
esmb_TriggerKey = XButton2
@pixonte
pixonte / obsidian-daily-note-template.txt
Created January 16, 2025 06:15 — forked from dannberg/obsidian-daily-note-template.txt
Dann Berg's Daily Note Template for Obsidian. Uses Dataview & Templater plugins. Should be saved as a Markdown file in Obsidian. Read the full tour: https://dannb.org/blog/2022/obsidian-daily-note-template/
---
created: <% tp.file.creation_date() %>
---
tags:: [[+Daily Notes]]
# <% moment(tp.file.title,'YYYY-MM-DD').format("dddd, MMMM DD, YYYY") %>
<< [[Timestamps/<% tp.date.now("YYYY", -1) %>/<% tp.date.now("MM-MMMM", -1) %>/<% tp.date.now("YYYY-MM-DD-dddd", -1) %>|Yesterday]] | [[Timestamps/<% tp.date.now("YYYY", 1) %>/<% tp.date.now("MM-MMMM", 1) %>/<% tp.date.now("YYYY-MM-DD-dddd", 1) %>|Tomorrow]] >>
---
@pixonte
pixonte / rich-text-html-editors.md
Created February 20, 2023 21:52 — forked from manigandham/rich-text-html-editors.md
Rich text / HTML editors and frameworks

Strictly Frameworks

Abstracted Editors

These use separate document structures instead of HTML, some are more modular libraries than full editors

@pixonte
pixonte / aws-node-mongo.sh
Last active December 8, 2021 21:12
Setup and configure a production ready MERN Stack web server on Ubuntu that includes Node, MongoDB, PM2, NGINX and UFW
#!/usr/bin/env bash
echo "
----------------------
NODE & NPM
----------------------
"
# add nodejs 10 ppa (personal package archive) from nodesource
curl -sL https://deb.nodesource.com/setup_17.x | sudo -E bash -
@pixonte
pixonte / webpack proxy for wordpress
Created January 17, 2019 08:20 — forked from rformato/webpack proxy for wordpress
webpack proxy for wordpress
config.devServer = {
proxy: {
//here we declare to proxy all the requests not handled by webpack. I this case everything webpack bundle is in
// dist/ and so we don't proxy it to let the webpack dev server handle it
'!**/dist/**': {
//set the URL of the wordpress site
target: 'http://mysite.test',
changeOrigin: true,
onProxyRes: function(proxyRes, req, res) {
if( proxyRes.headers &&
@pixonte
pixonte / Preferences.sublime-settings
Last active August 29, 2015 14:10
My Sublime Text 2 User settings
{
"auto_close_tags": true,
"auto_complete": true,
"auto_complete_commit_on_tab": false,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
},