Skip to content

Instantly share code, notes, and snippets.

View githubhy's full-sized avatar
💭
I may be slow to respond.

Asher githubhy

💭
I may be slow to respond.
View GitHub Profile
@githubhy
githubhy / cask-update.md
Created August 22, 2024 01:23 — forked from yanaokahiroki/cask-update.md
homebrew caskを更新

概要

brew install <formula名> --cask でインストールしたアプリケーションを最新バーションに更新する方法がわからなかったのでメモ。

下のコマンドを知るまでは各アプリケーションを起動してそれぞれをそれぞれの方法で更新していた。

コマンド

更新コマンド

@githubhy
githubhy / levin.m
Created August 2, 2024 12:47 — forked from mattdsp/levin.m
Least squares FIR digital filter design with prescribed magnitude AND phase response using Levinson's algorithm
function x = levin(a,b)
% function x = levin(a,b)
% solves system of complex linear equations toeplitz(a)*x=b
% using Levinson's algorithm
% a ... first row of positive definite Hermitian Toeplitz matrix
% b ... right hand side vector
%
% Author: Mathias C. Lang, Vienna University of Technology, AUSTRIA
% 1997-09
% [email protected]
@githubhy
githubhy / convolutional_code.py
Created May 21, 2024 10:15 — forked from YairMZ/convolutional_code.py
Example implementation of non-recursive convolutional code
import math
class DecodingError(Exception):
"""Raised if no path ends in the zero state"""
pass
class TrellisPath:
def __init__(self, last_state=0):
@githubhy
githubhy / gist:179559994119a43d2b17129c3817153e
Last active May 4, 2022 10:13
Regular expression for Chinese characters
perl: /[^u4E00-u9FA5]/
js: match(/[\u4E00-\u9FA5]/)
Example:
use `<([^u4E00-u9FA5]*<[^u4E00-u9FA5]+>[^u4E00-u9FA5]*)*>` to match `<封爵 河津亭侯→安國鄉侯→向鄉侯→舞陽侯→晉王<追尊>→晉帝<追尊>>`
@githubhy
githubhy / RMD_and_GitHub.docx
Created May 3, 2022 13:10 — forked from JoshuaTPierce/RMD_and_GitHub.docx
Creating and Pushing a R-Markdown Document to Github (including graphs)
Go to github
Create new repository [don't need to initialize with the readme (can add later)]
Go to R Studio
File -> New Project -> Version Control -> Git
Ctrl+V repository URL from GitHub
File -> New -> Markdown, enter Title, etc.
In the Markdown window, change "output=html_document" to "output=github_document"
Knit the document for the first time, will prompt you to save
Save as Title.rmd
In the "git" tab of the R studio Environment window, you will notice that the knit produced:
@githubhy
githubhy / git_submodules.md
Created May 5, 2021 10:52 — forked from gitaarik/git_submodules.md
Git Submodules basic explanation

Git Submodules basic explanation

Why submodules?

In Git you can add a submodule to a repository. This is basically a repository embedded in your main repository. This can be very useful. A couple of advantages of using submodules:

  • You can separate the code into different repositories.
@githubhy
githubhy / brew-list.sh
Created May 3, 2021 04:27 — forked from eguven/brew-list.sh
List all packages installed using Homebrew and their sizes
brew list --formula | xargs -n1 -P8 -I {} \
sh -c "brew info {} | egrep '[0-9]* files, ' | sed 's/^.*[0-9]* files, \(.*\)).*$/{} \1/'" | \
sort -h -r -k2 - | column -t
@githubhy
githubhy / podcast-dl.sh
Created March 20, 2021 00:43
Download all episodes from a podcast RSS feed
URL=https://feeds.buzzsprout.com/136050.rss # A URL example
curl -s $URL | xmlstarlet sel -N atom="http://www.w3.org/2005/Atom" -t -m './/enclosure' -v '@url' -n | xargs -n 1 -P 10 wget -nc
@githubhy
githubhy / rename.sh
Last active March 20, 2021 00:40
Rename file on macOS (one-liner perl)
# [Example] mv 818210-021-english-vocabulary-devious-devout.mp3?blob_id=1265211 021-english-vocabulary-devious-devout.mp3
# [Perl switches] https://perl101.org/command-line-switches.html
# Use "chomp" to remove '\n' from "$_". See https://perldoc.perl.org/functions/chomp
ls | perl -pe 'chomp;s/^\d+-(\d{3}-.*\.mp3)\?.*$/mv $_ $1 \n/' | sh
@githubhy
githubhy / understanding_new_keyword.js
Created April 1, 2016 16:09
Understanding what new keyword do and the prototype inheritance.
'use strict'
function Scope() {
this.va = '123';
};
Scope.prototype.va = 'abc';
var s = new Scope();