Skip to content

Instantly share code, notes, and snippets.

View huahouye's full-sized avatar
萌新瑟瑟发抖

HouYe Hua huahouye

萌新瑟瑟发抖
View GitHub Profile
@huahouye
huahouye / README.md
Created November 25, 2017 09:21 — forked from cs8425/README.md
How to REAL install Remix OS on VirtualBox

How to REAL install Remix OS on VirtualBox

This is how to REAL install Remix OS on VirtualBox. rootfs could be writable!!!

Needs:

  • any linux liveCD iso file (Xubuntu here)
  • Remix OS iso file ("Remix_OS_for_PC_Android_M_32bit_B2016092201.iso" here)
  • VirtualBox
@huahouye
huahouye / nginx.conf
Created January 5, 2017 06:21 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@huahouye
huahouye / angularjs_directive_attribute_explanation.md
Created November 15, 2016 03:12 — forked from CMCDragonkai/angularjs_directive_attribute_explanation.md
JS: AngularJS Directive Attribute Binding Explanation

AngularJS Directive Attribute Binding Explanation

When using directives, you often need to pass parameters to the directive. This can be done in several ways. The first 3 can be used whether scope is true or false. This is still a WIP, so validate for yourself.

  1. Raw Attribute Strings

    <div my-directive="some string" another-param="another string"></div>