Skip to content

Instantly share code, notes, and snippets.

View roguesherlock's full-sized avatar
:shipit:

Akash roguesherlock

:shipit:
View GitHub Profile
<?xml version='1.0' encoding='UTF-8'?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" version="2.0"><channel><title>જ્ઞાની પુરુષ ‘દાદા ભગવાન’ (ભાગ-૧)</title><link>https://aaakash.xyz</link><description>Audiobook</description><atom:link href="https://dbapi.dadabhagwan.org/api/audios/playaudio?view=audios&amp;alang=&amp;aname=Aptavani-11(U)" rel="self"/><docs>http://www.rssboard.org/rss-specification</docs><generator>python-feedgen</generator><image><url>https://download.dadabhagwan.org/Books/Gujarati/Images/AudioBooks/GnaniPurush-Part1-Guj.jpg</url><title>જ્ઞાની પુરુષ ‘દાદા ભગવાન’ (ભાગ-૧)</title><link>https://aaakash.xyz</link></image><language>en</language><lastBuildDate>Mon, 17 Jan 2022 03:19:11 +0000</lastBuildDate><itunes:category text="Religion &amp; Spirituality"/><itunes:image href="https://download.dadabhagwan.org/Books/Gujarati/Images/AudioBooks/GnaniPurush-Part1-Guj.jpg"/><itunes:complete
@roguesherlock
roguesherlock / gist:cb1f45670fd617ebcaed8d7f163d36c3
Created March 3, 2019 06:54 — forked from spudbean/gist:1558257
Look of disapproval and other emoticons
ಠ_ಠ
( ͡° ͜ʖ ͡°)
¯\_(ツ)_/¯
(╯°□°)╯︵ ┻━┻
http://www.fileformat.info/convert/text/upside-down.htm
WRTTN http://wrttn.me/30dbfd/
Unicode Emoticons
@roguesherlock
roguesherlock / isAnagramTest.py
Created July 7, 2018 01:49
comparison between isAnagram function (one implemented using sorted and other with hashmaps)
import random
import string
import timeit
def isAnagramSorted(str1, str2):
return sorted(str1) == sorted(str2)
def isAnagram(str1, str2):
stringMap = {}
for c in str1:
@roguesherlock
roguesherlock / user_settings.json
Created March 20, 2018 08:32
vscode settings
{
"editor.fontFamily": "Fira Code Retina",
"editor.fontSize": 13,
"workbench.colorTheme": "Solarized Light",
"editor.fontLigatures": true,
"window.menuBarVisibility": "toggle",
"files.trimTrailingWhitespace": true,
"editor.multiCursorModifier": "alt",
"nightswitch.dayTheme": "Solarized Light",
"nightswitch.nightTheme": "Solarized Dark",
@roguesherlock
roguesherlock / solarized.dark.json
Created February 22, 2018 13:37
A modified Solarized Light/Dark Console Scheme for Windows to be used with concfg (github.com/lukesampson/concfg)
{
"black": "#002b36",
"dark_blue": "#268bd2",
"dark_green": "#859900",
"dark_cyan": "#2aa198",
"dark_red": "#dc322f",
"dark_magenta": "#d33682",
"dark_yellow": "#b58900",
"gray": "#eee8d5",
"dark_gray": "#839496",
@roguesherlock
roguesherlock / LayoutModification.xml
Created February 21, 2018 06:08 — forked from michyprima/LayoutModification.xml
Make Windows 10 non-LTSB bareable (dism stuff is for 1709)
<LayoutModificationTemplate xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification">
<LayoutOptions StartTileGroupCellWidth="6" />
<DefaultLayoutOverride>
<StartLayoutCollection>
<defaultlayout:StartLayout GroupCellWidth="6">
</defaultlayout:StartLayout>
</StartLayoutCollection>
</DefaultLayoutOverride>
</LayoutModificationTemplate>
@roguesherlock
roguesherlock / tmux-cheatsheet.markdown
Created February 20, 2018 18:02 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@roguesherlock
roguesherlock / makeos.fish
Last active March 25, 2018 07:11
Simple functions to aid me in building and running os161 kernel in bash, fish, powershell
function makeos
switch $argv[1]
case 'ast1'
set ASST 'ASST1'
case 'ast2'
set ASST 'ASST2'
case 'ast3'
set ASST 'ASST3'
case '*'
set ASST 'DUMBVM'
@roguesherlock
roguesherlock / change_ui_font.reg
Created February 20, 2018 15:31
A Quick and Dirty Hack to Change Default UI Font to Roboto in Windows 10
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Fonts]
"Segoe UI (TrueType)"=""
"Segoe UI (TrueType)"=""
"Segoe UI Black (TrueType)"=""
"Segoe UI Black Italic (TrueType)"=""
"Segoe UI Bold (TrueType)"=""
"Segoe UI Bold Italic (TrueType)"=""
"Segoe UI Historic (TrueType)"=""
@roguesherlock
roguesherlock / ocean.dark.json
Last active February 22, 2018 13:36
A modified Ocean Light/Dark Console Scheme for Windows to be used with concfg (github.com/lukesampson/concfg)
{
"black": "#2b303b",
"dark_blue": "#8fa1b3",
"dark_green": "#a3be8c",
"dark_cyan": "#96b5b4",
"dark_red": "#bf616a",
"dark_magenta": "#b48ead",
"dark_yellow": "#ebcb8b",
"gray": "#dfe1e8",
"dark_gray": "#343d46",