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
body{ | |
background-color: #FFF; | |
padding-top: 50px; | |
padding-left: 20px; | |
padding-right: 20px; | |
} | |
.warpper{ | |
background-color: transparent; | |
width: 5000px; | |
height: 600px; |
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> | |
<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> |
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> | |
<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; |
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
/* | |
* 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 |
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
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; |
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
/* | |
* 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 |
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
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) |
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
<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"> |
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
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; |
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
#Create a Skeleton Project | |
$ new-project --named Test --topLevelPackage com.example.test --projectFolder /workspace/TestProject | |
#Plugin Interface | |
$ plugins new-plugin --named ExamplePlugin |
OlderNewer