Création des Logiciels de gestion d'Entreprise, Création et référencement des sites web, Réseaux et Maintenance, Conception
Création des Logiciels de gestion d'Entreprise, Création et référencement des sites web, Réseaux et Maintenance, Conception
Friend, This is a funny social sharing widget for your blogger. Social medias are provide more traffic for blogs. People always spend more times in front of Facebook,Twitter,Myspace,Linkdin etc. So It has an important role in blog traffic. So social medias are important part of a blogger. So add this stylish egg widget for your blogger and enjoy…
Go to your Blogger
<script src='http://w.sharethis.com/gallery/shareegg/shareegg.js' type='text/javascript'/><script src='http://w.sharethis.com/button/buttons.js' type='text/javascript'/><script type='text/javascript'>stLight.options({publisher: "bea50586-2b9f-448d-947a-01385f28e305", onhover:false}); </script><link href='http://w.sharethis.com/gallery/shareegg/shareegg.css' media='screen' rel='stylesheet' type='text/css'/>
<div style='position: fixed; bottom: 2%; left: 2%;'><div class='shareEgg' id='shareThisShareEgg'/></div><script type='text/javascript'>stlib.shareEgg.createEgg('shareThisShareEgg', ['facebook','twitter','googleplus','linkedin','blogger','stumbleupon','sharethis'],{title:'<data:blog.pageTitle/>',url:'<data:blog.url/>',theme:'shareegg'});</script>
Leave a comment below................................
2013, By: Seo MasterFriends, Now i share some important trick to customize your block quote with hover effect. It make your blog’s more stylish. Do you want to install its on your blogger?…. Just follow this post…
Go to your Blogger
blockquote {
background: #484B52 url(https://lh3.googleusercontent.com/-udEdd2Lzto0/USZP7AhKOJI/AAAAAAAAKE4/bpq42cQJtNM/s509/masterhacksblockquite.gif) ;
background-position:left;
background-repeat:repeat-y;
margin: 0 20px;
padding: 20px 20px 20px 50px;
color:#C7CACF;
font: normal 12px Serif, Times, Helvetica;
font-style: italic;
border: 2px dotted lightgrey;
box-shadow: -1px -1px 12px 2px gainsboro;
transition: background-color .777s;
-webkit-transition: background-color .777s;
-moz-transition: background-color .777s;
-o-transition: background-color .777s;
-ms-transition: background-color .777s;
}
.post blockquote p {
margin: 0;
padding-top: 10px;
}blockquote:hover { background-color: darkgreen ;
color: #FFFFFF;
font-size:14px;}.post blockquote:active
{
background-color: CornflowerBlue ;
color: #000;
}
Change RED color with your banner..
Leave a comment below................................ 2013, By: Seo Master
Friends, This is a useful post about covert a video into animated GIF format without quality loss. We always trouble to do this. Now i got a Video converter ,that convert video into all format include animated GIF. Please follow instructions keep moving with converter.
Leave a comment below………………………………
2013, By: Seo Master
Friends, This is a advanced video converter software.You can convert all video formats also animated .GIF format. iWisoft Free Video Converter can fast convert videos between all popular formats like AVI, MPEG, WMV, DivX, XviD, MP4, H.264/AVC, AVCHD, FLV, MKV, RM, MOV, 3GP, and audio MP3, WMA, WAV, RA, M4A, AAC, AC3, OGG. Directly convert video for playback on your PSP, iPod, iPhone, Apple TV, PS3, Xbox, Zune, Creative Zen, Archos and other digital multimedia devices.The video converter also has powerful video editing functions including crop, trim, merge, adding watermark and special effects. And it's totally free!
Download iWisoft Free Video Converter Free: Click here
Leave a comment….. If you like this post……………..
2013, By: Seo MasterFriends, Do you want to make your blogger is more beautiful. We are always add bullets to our posts but it appear like a black dot. Later i show how to change black bullets with your own image. In this post i share a information about, How to apply mouse hover effect to your bullets. You can make it easy… Follow this post and enjoy……
Log in to your Blogger account.
.post ul {list-style:none;
}
.post ul li {
line-height: 1.0em;
background: transparent url(http://www.matrixar.com/_7wsQzULWIwo/SuM3oFg5zlI/AAAAAAAACHo/n5UluB5ugMI/s400/255.gif) no-repeat scroll -4px 0px;
margin: 1.0em 0;
padding: 0 0 1.0em 28px;
}
.post ul li:hover {
background: transparent url(http://www.matrixar.com/_7wsQzULWIwo/SuM3oYoTkRI/AAAAAAAACHw/Dig1etGrcpY/s400/251.gif) no-repeat scroll -2px 0px;
}
Change RED color with your bullets URL
Leave a comment………………………………….
2013, By: Seo Master(Cross-posted with the App Engine and Enterprise Blogs)
Support is as important as product features when choosing a platform for your applications. And let’s face it, sometimes we all need a bit of help. No matter which Google Cloud Platform services you are using — App Engine, Compute Engine, Cloud Storage, Cloud SQL, BigQuery, etc. — or what time of day, you should be able to get the answers you need. While you can go to Stack Overflow or Google Groups, we realize some of you may need 24x7 coverage, phone support or direct access to a Technical Account Manager team.
To meet your support requirements, we’re introducing a comprehensive collection of support packages for services on Google Cloud Platform, so you can decide what level best fits your needs:
Sign up or click here to find out more information about the new Google Cloud Platform support options.
Brett McCully is the Manager of the Google Cloud Platform Support team and is currently based in Seattle.
Posted by Ashleigh Rentz, Editor Emerita
2013, By: Seo MasterTry-with-resources, which helps avoid memory leaks and related bugs by automatically closing resources that are used in a try-catch statement.
public static void invokeExample() {
String s;
MethodType mt;
MethodHandle mh;
MethodHandles.Lookup lookup = MethodHandles.lookup();
MethodType mt = MethodType.methodType(String.class, char.class,
char.class);
MethodHandle mh = lookup.findVirtual(String.class, "replace", mt);
s = (String) mh.invokeExact("App Engine Java 6 runtime",'6','7');
System.out.println(s);
}
Flexible Type Creation when using generics, enabling you to create parameterized types more succinctly. For example, you can write:
public static void viewTable(Connection con, String query) throws SQLException {
try (
Statement stmt = con.createStatement();
ResultSet rs = stmt.executeQuery(query)
) {
while (rs.next()) {
// process results
//
}
} catch (SQLException e) {
// con resource is auto-closed, no need to do anything here!
//
}
}
instead of:
Map<String, List<String>> myMap = new HashMap<>();
Map<String, List<String>> myMap = new HashMap<String, List<String>>();In addition to the language features listed above, the App Engine Java 7 runtime also includes:
Then, expose it over a standard REST interface with a simple attribute and a versioning pattern.
public class SuperHeroes {
public ListlistSuperHeroes() {
Listlist = new ArrayList ();
list.add(new SuperHero ("Champion of the Obvious", "Brad Abrams"));
list.add(new SuperHero ("Mr. Justice", "Chris Ramsdale"));
return list;
}
}
Now you have a simple REST interface.
@Api(name = "superheroes", version = "v1")
public class SuperHeroesV1 {
...
}
And you can make strongly typed calls from your Android clients:
$ curl http://localhost:8888/_ah/api/superheroes/v1/superheroes
{
"items": [
{
"knownAs" : "Champion of the Obvious",
"realName" : "Brad Abrams"
},
{
"knownAs" : "Mr. Justice",
"realName" : "Chris Ramsdale"
}
Or Objective-C iOS client:
Real result = superheroes.list().execute();
Or the web client in JavaScript:
GTLQuerySuperHeroesV1 *query = [GTLQuerySuperHeroesV1 queryForSuperHeroesList];
[service executeQuery:query completionHandler:^(GTLServiceTicket *ticket,
GTLSuperHeroes *object, NSError *error) {
NSArray *items = [object items];
}];
// ...Read the documentation for Java or Python to discover how you can build a simple tic-tac-toe game using Cloud Endpoints.
var ROOT = 'https://' + window.location.host + '/_ah/api';
gapi.client.load('superheroes', 'v1',
loadSuperheroesCallback, ROOT);
// Get the list of superheroes
gapi.client.superheroes.superheroes.list().execute(function(resp) {
displaySuperheroesList(resp);
});
Friends, This is a widget to modify your label to a brick style with CSS effects. It is very effective widget to attract people when they are entering your blog. Now i share, How to install this widget into your blogger?. If you want to install please follow this post and enjoy……
Log in to Blogger account
/*-----Custom Labels Cloud widget by www.www.matrixar.com----*/
.label-size{
margin:0 2px 6px 0;
padding: 3px;
text-transform: uppercase;
border: solid 1px #C6C6C6;
border-radius: 3px;
float:left;
text-decoration:none;font-size:10px;color:#666;}
.label-size:hover {
border:1px solid #6BB5FF;
text-decoration: none;-moz-transition: all 0.5s ease-out;
-o-transition: all 0.5s ease-out;
-webkit-transition: all 0.5s ease-out;
-ms-transition: all 0.5s ease-out;
transition: all 0.5s ease-out;
-moz-transform: rotate(7deg);
-o-transform: rotate(7deg);
-webkit-transform: rotate(7deg);
-ms-transform: rotate(7deg);
transform: rotate(7deg);
filter: progid:DXImageTransform.Microsoft.Matrix(
M11=0.9961946980917455, M12=-0.08715574274765817, M21=0.08715574274765817, M22=0.9961946980917455, sizingMethod='auto expand');
zoom: 1;
}
.label-size a {
text-transform: uppercase;
float:left;
text-decoration: none;
}.label-size a:hover {
text-decoration: none;
}
Are you happy?….. Do you like this blog ….. comment below………………..
2013, By: Seo MasterYouTube is the most famous video sharing website in the world. But every time we are trouble to download YouTube videos directly, All time we required an additional software to download videos from it. Now i share a simple trick to download YouTube videos directly from website. Just follow instruction and download videos from YouTube..
Go to YouTube.
Are you happy? ……….leave a comment below……………….
2013, By: Seo Master