Skip to content

Instantly share code, notes, and snippets.

View Livin21's full-sized avatar
💻
Coding

Livin Livin21

💻
Coding
View GitHub Profile
@Livin21
Livin21 / bootStrapUbuntu.sh
Last active November 26, 2015 08:34
Boot Strapping Ubuntu
#List of Programs:
#XDM, Wine, Dex2jar, traceroute, virtualbox, android-tools-adb, #sublime2, Telegram, JAVA 7, VLC, Gimp, apache2, php5, libapache2-mod-#php5, php5-mcrypt, mysql-server, libapache2-mod-auth-mysql, php5-#mysql, google chrome and media plugin extras
sudo add-apt-repository -y ppa:videolan/stable-daily
sudo add-apt-repository -y ppa:otto-kesselgulasch/gimp
sudo add-apt-repository -y ppa:maarten-baert/simplescreenrecorder
sudo add-apt-repository -y ppa:noobslab/apps
sudo add-apt-repository -y ppa:ubuntu-wine/ppa
sudo apt-get update
@Livin21
Livin21 / Contents.java
Created August 8, 2017 11:58
QRCode Generation
import android.provider.ContactsContract;
public class Contents {
private Contents() {
}
public static final class Type {
// Plain text. Use Intent.putExtra(DATA, string). This can be used for URLs too, but string
// must include "http://" or "https://".
[
{
"name": "Livin",
"surname": "Mathew",
"role": "Co-Founder",
"image": "https://pimg-guru.com/1/848/1848078/livin_9ee335cb-2d64-410c-9c55-196082bce9dc.jpg",
"title": "CIO",
"country": "India",
"city": "Kochi",
"links": {
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>myapp</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
<template>
<div id="app">
<img src="./assets/logo.png">
<hello></hello>
</div>
</template>
<script>
import Hello from './components/Hello'
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<h2>Essential Links</h2>
<ul>
<li><a href="https://vuejs.org" target="_blank">Core Docs</a></li>
<li><a href="https://forum.vuejs.org" target="_blank">Forum</a></li>
<li><a href="https://chat.vuejs.org" target="_blank">Community Chat</a></li>
<li><a href="https://twitter.com/vuejs" target="_blank">Twitter</a></li>
<br>
<template>
<div class="hello">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<h1>{{ msg }}</h1>
<ul>
<li v-for="mem in members">
<p class="w3-card-2 w3-center">
<!-- profile image -->
<img class="round-profile-image" :src="mem.image"/><BR /><BR />
@Livin21
Livin21 / script
Created September 18, 2017 04:34
<script>
import mems from '../assets/members.json'
export default {
name: 'founders',
data () {
return {
msg: 'Team',
members: mems
}
}
<template>
<div class="hello">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<h1>{{ msg }}</h1>
<ul>
<li v-for="mem in members">
<p class="w3-card-2 w3-center">
<!-- profile image -->
<img class="round-profile-image" :src="mem.image"/><BR /><BR />