Skip to content

Instantly share code, notes, and snippets.

View offchan42's full-sized avatar
🐳
Deep Learning with Generative AI

Chanchana Sornsoontorn offchan42

🐳
Deep Learning with Generative AI
View GitHub Profile
@offchan42
offchan42 / generate_hny_permutations.py
Last active January 4, 2017 02:56
Generate all 4096 permutations of "happy new year" in Python 3
sentence = 'happynewyear'
n = len(sentence)
total_perms = 2 ** n
for perm in range(total_perms):
generated = []
for i in range(n):
ch = sentence[i]
if (1 << i) & perm: # see explanation: https://www.quora.com/What-is-bitmasking-What-kind-of-problems-can-be-solved-using-it/answer/Piyush-Kumar-8
ch = ch.upper()
@offchan42
offchan42 / .spacemacs
Last active December 31, 2016 20:27
My Spacemacs dot file and its configurations, deprecated; see this instead: https://github.com/off99555/.spacemacs.d
;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration.
You should not put any user code in this function besides modifying the variable
values."
(setq-default
;; Base distribution to use. This is a layer contained in the directory
@offchan42
offchan42 / OpenGLPrototype.cpp
Last active December 5, 2016 22:27
OpenGL Prototype - template for good code design, less overwhelming, less headache for maintenance
#include <iostream>
#include <gl/glut.h>
using namespace std;
int W = 500; // window width
int H = 500; // window height
float time = 0; // เวลาปลอมๆสำหรับทำอนิเมชัน
float timeRate = 0.001; // timeRate นี่เป็นเรทเวลาจำลอง ปรับได้ถ้าอยากให้อนิเมชันมันช้าหรือเร็วขึ้น
// your global variables here ...
// e.g. float x = 10;
@offchan42
offchan42 / 2016-11-18_02-27-01.png
Last active March 2, 2024 00:03
Computer network top down approach page 546 - 548 translation
2016-11-18_02-27-01.png
@offchan42
offchan42 / deep_learning_ideas.md
Last active December 31, 2016 20:37
Deep Learning algorithms and strategies that I discovered and applications I want to build

Deep learning applications that I want to build

LeafNet: app that recognizes tree from photo

Motivation

I don't know lots about trees. Just looking at their leaves, I know that experts could pinpoint exactly what is the tree's name. But I couldn't do that so I want to have an application that recognizes trees from just looking at its leaf photo.

Usage

You could use this for fun, just learning about trees or use it for research. Sometimes, even if you are in a forest full of trees you don't recognize, use LeafNet. It would tell you whether or not the leaves you find are edible or poisonous.

An application for instantaneous class attendance checking.

git config --global alias.co checkout
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.st status
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
@offchan42
offchan42 / Machine Learning Curriculum.md
Last active March 2, 2024 00:02
Machine learning resources and related artificial intelligence concepts.
@offchan42
offchan42 / TestStreamPrimeGenerator.java
Last active November 20, 2015 08:55
Prime Generator with sorted list as a cache source
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.stream.IntStream;
/**
* Created by off999555 on 20/11/2558 at 14:27.
*/
public class TestStreamPrimeGenerator {