Skip to content

Instantly share code, notes, and snippets.

View indykish's full-sized avatar

Kishorekumar Neelamegam indykish

View GitHub Profile
@indykish
indykish / Readme_VSCODE_FreeBSD
Created November 19, 2016 17:39 — forked from prash-wghats/Readme_VSCODE_FreeBSD
Notes for Building Electron and VSCode in FreeBSD11
Copy all the files to the build directory.
Copy icudtl.dat to the build directory. (you can find it in the vscode downloads ex for linux).
chromium version in port is 52.0.2743.116.
This was built with FreeBSD 11.0-RELEASE-p1. If building with other versions probably need to change
the freebsd versions in diff files (ex. freebsd11 => freebsd10)
Installed
node => v6.9.1
npm => 3.9.2
>chmod 755 vscode_build.sh
@indykish
indykish / nil.sh
Last active September 27, 2016 04:44
Nilavu production tuneup
### Base image prepare
apt-get -y update
apt-get -y install build-essential git wget \
libxslt-dev libcurl4-openssl-dev \
libssl-dev libyaml-dev libtool \
libxml2-dev gawk parallel \
libreadline-dev \
language-pack-en cron anacron \
psmisc rsyslog whois brotli
@indykish
indykish / megam.comp.json
Last active October 30, 2015 09:49
The base declarative directive of megam cloud component json which illustrates that an app in git/image, docker git/image, service can be launched.
{
"name": "component_1",
"tosca_type": "tosca.web.Java",
"inputs": [
"domain",
"version"
],
"related_components": "",
"status": "deploying, creating, bootstrapping, stateup, running",
"outputs": [],
@indykish
indykish / megam.torpedo.assembly.json
Last active October 30, 2015 09:46
The declarative directive of megam cloud assembly json which illustrates launch of a virtual machine based on CAMP/TOSCA specification.
{
"id": "ASM1266318644653195264",
"json_claz": "Megam::Assembly",
"name": "injuries",
"components": [],
"tosca_type": "tosca.torpedo.centos",
"policies": [],
"inputs": [
{
"key": "domain",
@indykish
indykish / megam.appk.assembly.json
Last active October 30, 2015 09:45
The declarative directive of megam cloud assembly json which illustrates launch of an app (starterpack) based on CAMP/TOSCA specification.
{
"id": "ASM1266315814366216192",
"json_claz": "Megam::Assembly",
"name": "landmarks",
"components": [
"COM1266315814387187712",
""
],
"tosca_type": "tosca.app.php",
"policies": [],
@indykish
indykish / megam.service.postgresql.assembly.json
Created October 22, 2015 05:19
The declarative directive of megam cloud assembly json which illustrates launch of a service (postgresql) based on CAMP/TOSCA specification.
{
"id":"ASM1266307125966143488",
"json_claz":"Megam::Assembly",
"name":"bush",
"components":[
"COM1266307125995503616"
],
"tosca_type":"tosca.service.postgresql",
"policies":[
{
@indykish
indykish / megam.app.assembly.json
Created October 22, 2015 05:17
The declarative directive of megam cloud assembly json which illustrates launch of an app using git based on CAMP/TOSCA specification.
{
"id":"ASM1266309531944747008",
"json_claz":"Megam::Assembly",
"name":"thickest",
"components":[
"COM1266309531965718528",
""
],
"tosca_type":"tosca.app.php",
"policies":[
@indykish
indykish / megam.assemblies.json
Last active October 22, 2015 06:00
The base declarative directive of megam cloud assemblies json which illustrates that more declarative directives can be housed inside it (assembly of app in git/image, docker git/image, service) can be launched.
{
"id" : "assemblies_id ",
"name" : "assemblies_name ",
"accounts_id" : "accounts_id of the holder",
"assemblys" : ["assemblys_id"],
"inputs" : ["01"],
"created_at" : "date"
}
@indykish
indykish / megam.assemblies.torpedo.json
Created October 22, 2015 05:57
The declarative directive of megam cloud assemblies json which illustrates that any app in git/image, docker git/image, service can be launched by bundling assemblys
{
"id":" ",
"name":" ",
"accounts_id":" ",
"assemblies":[
"ASM0001"
],
"inputs":[
"01"
],
@indykish
indykish / megam.assembly.json
Created October 22, 2015 05:52
The base declarative directive of megam cloud assembly json which illustrates that an app in git/image, docker git/image, service can be launched.
{
"name":"assembly_name",
"components":[
"component_1"
],
"tosca_type":"tosca.torpedo.coreos",
"inputs":[
{
"key":"domain",
"value":"megambox.com"