Skip to content

Instantly share code, notes, and snippets.

View ChanBong's full-sized avatar

Harsh Kumar ChanBong

View GitHub Profile
@ChanBong
ChanBong / unused-constants.ts
Created March 1, 2026 03:21
Unused Constants.ts entries removed from Hanomi-App (CAD_TYPES, GDT_LEVELS, etc.) — staged for future features
// Unused constants from src/lib/Constants.ts
// Staged for upcoming configuration features
// Removed from codebase in PR #157 to keep the bundle clean
// Reference: PR #128 review comment #44
// CAD Types and Configurations (aligned with backend)
export const CAD_TYPES = {
solidworks: {
name: 'SolidWorks',
value: 'solidworks',
@ChanBong
ChanBong / mix_subtitle.py
Created August 3, 2023 13:11
mix subtitles of multiple languages so they show at the same time
## ------------------------------------------------------ ##
# Author: ChanBong
# Date: 2023/08/08
# Description: This script takes two subtitle files, one in spanish (or in any language for that matter)
# and the other in english, and combines them into one subtitle file. The output file will be named
# mixed.srt
# Motivation: While learning a new language I love to hear and read in the target language while
# still being able to fall back to a english transcription if need be.
# I wanted to watch a movie in spanish with english subtitles, but I couldn't find any
# subtitle files that had both spanish and english subtitles. So I wrote this script to combine the
#!/usr/bin/python3
###
# Download this file.
# Change file permissions from your terminal by running `chmod +x todoist_to_obsidian.py`
# Usage: ./todoist_to_obsidian.py
###
import os
import sys
import pandas as pd
layout post
title Introduction to transfer learning
date 2021-06-01 15:04
excerpt Can deep neural networks acquire knowledge from a fellow neural network ? Let's find out.
comments true
tags
june_2021
deep_learning
transfer_learning