Skip to content

Instantly share code, notes, and snippets.

View Kimeiga's full-sized avatar
💠
iwaw, iwnl

Hakan Alpay Kimeiga

💠
iwaw, iwnl
View GitHub Profile
@Kimeiga
Kimeiga / test1
Last active July 10, 2017 16:46
Test1
hey so
this is a gist this is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gistthis is a gist
okdddddd
tamam
tabii ki
jawfsdl;kj
@Kimeiga
Kimeiga / VRLook
Created July 11, 2017 01:33
Unity's VR Sample Projects look really cool, it's got to do with their shaders and stuff
use a small about of emissive on your objects
idk about the reflective part yet
@Kimeiga
Kimeiga / UnityCloudWorkflow
Created July 11, 2017 02:28
Unity cloud is cool, but complicated. Here's how to do the things.
# Unity Cloud Workflow
First, follow the unity cloud tutorial to set up your project. It doesn’t matter whether you make the repo first or the project. You also don’t need to put the project in the megasync folder because the files will be synced to github anyways (which has a vcs). So you could essentially make a folder on hakan/ that has all your synced projects.
https://unity3d.com/learn/tutorials/topics/cloud-build/creating-your-first-source-control-repository?playlist=17866
Essentially all you are doing at first is making a new repo on the sourcetree application, and copying your project into it. Then whenever you make changes, just commit and push them to the remote version.
Then set up a Unity cloud project that’s connected to the repo and its done.
@Kimeiga
Kimeiga / AkrobatReform
Created July 11, 2017 04:37
the files originally in akrobat reform folder
akrobat
akrobat changes
character animation ik project
hard love project
jikxcei
nakrobat
programmer's fps
@Kimeiga
Kimeiga / MyJapaneseMug
Created November 8, 2017 06:51
my japanese mug
中町 文政7年(1824) nakamachi bunsei shichi nen
Nakamachi Civil Government 7th Year (1824)
青獅子 aoshishi
Blue Lion
二番曳山
Second hikiyama (festival float)
@Kimeiga
Kimeiga / shit.txt
Created November 10, 2017 08:04
internet connection red button
Reset WINSOCK entries to installation defaults:
netsh winsock reset catalog
Verifying my Blockstack ID is secured with the address 13H3hshBBbZmn5qyjeGNoDafSbcHjgvdhA https://explorer.blockstack.org/address/13H3hshBBbZmn5qyjeGNoDafSbcHjgvdhA
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Kimeiga
Kimeiga / archlecture2-20
Created February 22, 2018 02:16
Arch lecture 2-20
• Christian community house, Dura-europos, ca. 240 CE
○ Christians were persecuted because didn’t follow governing religion
§ Religion has to spread covertly
§ So early spaces are hidden
§ Early christian architecture is in homes
§ Murals representing biblical stories
§ Immediate
○ Assembly hall to left with wall destoryed to make more space
○ Baptistry space also
○ Communal space
template<typename KeyType, typename ValueType>
void MyHash<KeyType, ValueType>::associate(const KeyType &key, const ValueType &value) {
//check if array is too small
double numItems = m_numItems;
double numBuckets = m_numBuckets;
if (((numItems + 1) / numBuckets) > m_maxLoadFactor) {
//must allocate new array ugh
HashNode** htable2 = new HashNode*[m_numBuckets * 2];