This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewExtension.swift | |
// Rina | |
// | |
// Created by Joe Wang on 02/07/2018. | |
// License: WTFPL | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// ViewExtension.swift | |
// Rina | |
// | |
// Created by Joe Wang on 02/07/2018. | |
// License: WTFPL | |
// | |
import UIKit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Firebase + VueJS</title> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> | |
<script src="//www.gstatic.cn/firebasejs/3.6.4/firebase.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/vue/2.1.8/vue.js"></script> | |
<script src="//unpkg.com/[email protected]"></script> | |
<style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from 'vue' | |
import App from './App' | |
import DeepStream from 'deepstream.io-client-js' | |
new Vue({ | |
ds: { | |
connectionUrl: 'localhost:6020' | |
}, | |
el: '#app', | |
template: '<App/>', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Drag to rate</title> | |
<style> | |
* { | |
padding: 0; | |
margin: 0; | |
} | |
.rate-bar { | |
margin: 10px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class HelloWorld { | |
public static void main(String[] args) { | |
System.out.println("Hello World"); | |
} | |
} |