Skip to content

Instantly share code, notes, and snippets.

Privacy Policy
Last updated: Sep 20, 2017
Happening Labs Inc. ("us", "we", or "our") operates the Mermaid Secrets of the Deep mobile application (the "Service").
This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.
We will not use or share your information with anyone except as described in this Privacy Policy.
We use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions.
Privacy Policy
Last updated: Sep 12, 2017
Happening Labs Inc. ("us", "we", or "our") operates the Arsenic mobile application (the "Service").
This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.
We will not use or share your information with anyone except as described in this Privacy Policy.
We use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions.
Community Policy
The app is about having fun with your friends. That means that content you share, even with your own friends, still needs to meet the requirements of our community policy. This is to make the app fun for everyone.
Don’t be a downer. Be fun. We have a zero tolerance policy for any content that is considered:
Bullying. Just don’t do it.
Illegal. Should speak for itself, but don’t do illegal things or make videos of them on the app. Illegal content of any nature is not allowed.
Invasion of privacy. Don’t make videos of people that don’t want to be in a video without their knowledge and consent. Especially in private spaces like bathroom’s or locker rooms.
Threats. Goes with bullying. Don’t do it. It won’t be tolerated.
Be yourself. Do not impersonate someone else.
Terms of Service ("Terms")
Last updated: Sep 12, 2017
Please read these Terms of Service ("Terms", "Terms of Service") carefully before using the Arsenic mobile application (the "Service") operated by Happening Labs Inc. ("us", "we", or "our").
Your access to and use of the Service is conditioned upon your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who wish to access or use the Service.
By accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you do not have permission to access the Service.
Communications
Privacy Policy
Last updated: June 12, 2017
Happening Labs Inc. ("us", "we", or "our") operates the BNN (Blockchain News Network) mobile application (the "Service").
This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.
We will not use or share your information with anyone except as described in this Privacy Policy.
We use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions.
@mixin background-image-retina($file, $type, $width, $height) {
background-image: url($file + '.' + $type);
@media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2) {
& {
background-image: url($file + '@2x.' + $type);
-webkit-background-size: $width $height;
}
}
}
@benjitastic
benjitastic / gist:2782647
Created May 24, 2012 16:42
grunt JS - multiple dists
module.exports = function(grunt) {
// Your grunt code goes in here.
grunt.initConfig({
// Lists of files to be minified with UglifyJS.
min: {
dist: {
src: ['jquery.shorthand.js', 'jquery.guid.js', '../jquery.cookies.2.2.0.min.js', 'gallery/underscore-min.js', 'gallery/json2.js', 'backbone-min.js', 'application.js', 'application/routers.js', 'application/models.js', 'application/collections.js', 'application/templates.js', 'views.js'],
dest: '../min/gallery/app_files.js',
separator: ';'
},