Skip to content

Instantly share code, notes, and snippets.

View vijinho's full-sized avatar

Vijay vijinho

  • England
View GitHub Profile
@cedrickchee
cedrickchee / voice_ai_research.md
Last active January 16, 2025 13:23
Voice AI Research

Voice AI Research

Goal: make computers talk like human.

My notes from audio (voice + speech) AI research started in 2023.

Emerging Research

Audio-to-audio Models

@kawainime
kawainime / awesome-ai-tools.md
Last active April 26, 2025 05:53
awesome-ai-tools
@naveenkrdy
naveenkrdy / AdobeAMDFix.md
Last active April 27, 2025 04:30
To fix adobe products crashes on AMD hackintosh

Adobe Crash Fix XLNC

Instructions

  1. Install needed adobe apps from adobe creative cloud.

  2. Open Terminal.

  3. Copy-paste the below command to your terminal and run it (enter password when asked).

@IsaacXen
IsaacXen / README.md
Last active April 12, 2025 01:49
(Almost) Every WWDC videos download links for aria2c.
@khannasarthak
khannasarthak / InterviewRoadmap.md
Last active April 21, 2025 19:33
My Interview Study roadmap

Coding Interview University

I originally created this as a short to-do list of study topics for becoming a software engineer, but it grew to the large list you see today. After going through this study plan, I got hired as a Software Development Engineer at Amazon! You probably won't have to study as much as I did. Anyway, everything you need is here.

The items listed here will prepare you well for in an interview at just about any software company, including the giants: Amazon, Facebook, Google or Microsoft. >

@vijinho
vijinho / shell_execute.php
Last active October 1, 2018 21:07
execute a command in php and return the captured output and streams stdin, stdout, stderr
<?php
define('VERBOSE', 1);
define('DEBUG', 1);
//-----------------------------------------------------------------------------
// required commands check
$commands = get_commands([
'find' => 'System command: find',
'curl' => 'https://curl.haxx.se',
'wget' => 'https://www.gnu.org/software/wget/'
@Grayson
Grayson / reeder-opml.py
Created April 11, 2014 18:24
Import OPML into Reeder-Mac
import os
import shutil
import sqlite3
from sys import argv
from xml.dom.minidom import parse
def dom_element_to_insert(elem):
return (elem.getAttribute('xmlUrl'),elem.getAttribute('text'), elem.getAttribute('title'), elem.getAttribute('htmlUrl'))
def main(path_to_opml):
@dupuy
dupuy / README.rst
Last active March 31, 2025 05:11
Common markup for Markdown and reStructuredText

Markdown and reStructuredText

GitHub supports several lightweight markup languages for documentation; the most popular ones (generally, not just at GitHub) are Markdown and reStructuredText. Markdown is sometimes considered easier to use, and is often preferred when the purpose is simply to generate HTML. On the other hand, reStructuredText is more extensible and powerful, with native support (not just embedded HTML) for tables, as well as things like automatic generation of tables of contents.