Skip to content

Instantly share code, notes, and snippets.

View IAMIronmanSam's full-sized avatar
🎯
Focusing

Tony Stark IAMIronmanSam

🎯
Focusing
View GitHub Profile
@IAMIronmanSam
IAMIronmanSam / index.css
Created July 23, 2012 05:05
RSS Feed Reader
body{
background-color: #FFF;
padding-top: 50px;
padding-left: 20px;
padding-right: 20px;
}
.warpper{
background-color: transparent;
width: 5000px;
height: 600px;
@IAMIronmanSam
IAMIronmanSam / index
Created July 23, 2012 16:49
GeoLocation Using Location string
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Google Maps JavaScript API v3 Example: Geocoding Simple</title>
<link href="/maps/documentation/javascript/examples/default.css" rel="stylesheet">
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
@IAMIronmanSam
IAMIronmanSam / LocaStoredet
Created July 23, 2012 17:18
Location With Store
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Google Maps JavaScript API v3 Example: Place Search</title>
<script src="https://maps.googleapis.com/maps/api/js?sensor=true&libraries=places"></script>
<style>
#map {
height: 400px;
@IAMIronmanSam
IAMIronmanSam / Chart.visage
Created October 7, 2012 09:16
visage.javafx.scene.chart
/*
* Copyright (c) 2011-2012, Visage Project
* All rights reserved.
*
* Redistribution or use in source or binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions or the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions or the following disclaimer in the documentation
@IAMIronmanSam
IAMIronmanSam / Login.visage
Created October 17, 2012 17:03
Login App
package visage.javafx.scene.effect;
import visage.animation.Interpolator;
import visage.animation.Timeline;
import visage.javafx.geometry.Rectangle2D;
import visage.javafx.stage.Stage;
import visage.javafx.scene.Group;
import visage.javafx.scene.Scene;
import visage.javafx.scene.effect.*;
import visage.javafx.scene.control.Button;
@IAMIronmanSam
IAMIronmanSam / Visage
Created October 30, 2012 17:56
Login
/*
* Copyright (c) 2012, JUGChennai
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
@IAMIronmanSam
IAMIronmanSam / UrbanTraveller.sql
Created January 15, 2013 14:47
UrbanTraveller DB
CREATE TABLE UT_USERS (USERID INTEGER Not null primary key generated always as identity (start with 1, increment by 1),USERNAME VARCHAR(15) NOT NULL UNIQUE,PASSWORD VARCHAR(15) NOT NULL, LASTLOGIN TIMESTAMP)
@IAMIronmanSam
IAMIronmanSam / Markup.html
Last active December 12, 2015 03:09 — forked from lukecanvin/Adapted-Boostrap.css
Updating CSS Reference & HTML
<head>
<link rel="stylesheet" type="text/css" href="Adapted-Boostrap.css">
<link rel="stylesheet" type="text/css" href="Additional-style.css">
<link rel="stylesheet" type="text/css" href="Responsive-fluid-grid.css">
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container">
@IAMIronmanSam
IAMIronmanSam / SkeletonPlugin
Last active December 19, 2015 21:39
Plugin Commands with option
package com.in.chennai;
import java.util.Arrays;
import javax.inject.Inject;
import org.jboss.forge.shell.ShellPrompt;
import org.jboss.forge.shell.plugins.Alias;
import org.jboss.forge.shell.plugins.Command;
import org.jboss.forge.shell.plugins.DefaultCommand;
@IAMIronmanSam
IAMIronmanSam / forgecommands
Last active December 19, 2015 21:39
Plugin Interface
#Create a Skeleton Project
$ new-project --named Test --topLevelPackage com.example.test --projectFolder /workspace/TestProject
#Plugin Interface
$ plugins new-plugin --named ExamplePlugin