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
polyline.enableDrawing();
will turn it on for your own mashup, hanks to new API support.Connect your blog to your LinkedIn profile and get the most of your relationships. Blog Link helps you and your professional network stay connected. Blog Link automatically pulls in the latest blog posts from around your network so you can stay up-to-date on the latest posts from your trusted connections. Stay informed by adding the Blog Link app today!
Log in your Linkedin account & Click here
Install this application and see instruction.
Are you happy? If not comment below
2013, By: Seo MasterThis script allows you to 'Like Bomb' a Facebook friend, or 'Like' everything on their profile page and flood them with notifications. It's a good way to show that special someone that you like them a lot. Several times over. A link should appear above the "Post "box.
Works in Firefox and Chrome.
Before hit Like Bomb :
After hit Like Bomb:
Click here : Install
Script:
2013, By: Seo Master// ==UserScript==
// @name AutoLikeBomb
// @description This script will add a link to your friends' pages to "Like" everything on their profile page and flood them with notifications. Now updated for Timeline.
// @author Mark ReCupido, Brian Ciaccio
// @namespace AutoLikeBomb
// @include https://www.facebook.com/*
// @include http://www.facebook.com/*
// ==/UserScript==
window.addEventListener("load", CheckForLikeBombLink, false);
window.addEventListener("click", CheckForLikeBombLink, false);
function CheckForLikeBombLink()
{
var likeCount = 0;
ProfileActions = document.getElementsByClassName("uiList uiListHorizontal clearfix fbTimelineComposerAttachments uiComposerAttachments");
if (ProfileActions[0].lastChild.id != "LikeBomb")
{
ProfileActions[0].innerHTML += "<li class=\"plm uiListItem uiListHorizontalItemBorder uiListHorizontalItem\" id=\"LikeBomb\"><span><a class=\"uiIconText attachmentLink normal\" tabindex=\"0\" href=\"#\"><strong>Like Bomb</strong></a></li>";
ProfileActions[0].lastChild.addEventListener('click',
function()
{
if (ProfileActions[0].ownerDocument.title == "Mark ReCupido")
{
alert('Oh no you don\'t.');
}
else
{
likestoclick = document.evaluate('//*[@name="like"]', document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = 0; i < likestoclick.snapshotLength; i++)
{
likestoclick.snapshotItem(i).click();
likeCount++;
}
alert('Like Bomb Magnitude: ' + likeCount);
likeCount = 0;
}
}, false);
}
}
Send Free SMS to any network in Pakistan. 2way SMS in Pakistan. Send SMS to your Friends, Family and Loved ones, Instant delivery, All networks in Pakistan supported, Mobilink sms,Ufone sms,Telenor SMS, Warid SMS, Zong Free SMS, PTCL Wireless Sms, Vfone SMS.
Click here
Enjoy yourself !
2013, By: Seo Master<?phpMethods such as query() work just as you’d expect with any MySQL database. This example uses the popular PDO library, although other libraries such as mysql and mysqli work just as well.
$db = new PDO(
'mysql:unix_socket=/cloudsql/hello-php-gae:my-cloudsql-instance;dbname=demo_db;charset=utf8',
'demo_user',
'demo_password'
);
foreach($db->query('SELECT * FROM users') as $row) {
echo $row['username'].' '.$row['first_name']; //etc...
}
<?phpThe same fopen() and fwrite() commands are used just as if you were writing to a local file. The difference is we’ve specified a Google Cloud Storage URL instead of a local filepath.
$handle = fopen('gs://hello-php-gae-files/prime_numbers.txt','w');
fwrite($handle, "2");
for($i = 3; $i <= 2000; $i = $i + 2) {
$j = 2;
while($i % $j != 0) {
if($j > sqrt($i)) {
fwrite($handle, ", ".$i);
break;
}
$j++;
}
}
fclose($handle);
<?php
$primes = explode(",",
file_get_contents('gs://hello-php-gae-files/prime_numbers.txt')
);
if(isset($primes[100]))
echo "The 100th prime number is ".$primes[100];
1. Mengembangkan suatu Portfolio Bisnis yang menguntungkan melalui Unit-Unit Bisnis Strategis (SBU) dengan menerapkan Konsep, Desain, dan teknologi yang Inovatif.
2. Mengelola bisnis secara profesional yang bertumpu pada kekuatan Organisasi, Sistem, dan Sumber Daya Manusia.
3. Meningkatkan kesejahteraan para Stakeholder yang mengarah pada peningkatan motivasi kerja, komitmen, dan pelayanan unggul.
Lokasi dan Kantor Pemasaran The Mansion
Komplek The Mansion
Jl.Cikajang Raya
Bandung
(022)70088890, 70088891
Lokasi dan Kantor Pemasaran De Marrakesh
Alamat Kantor Pemasaran Kami :
Jl. Derwati – Ciwastra, Bandung
Telp. (022) 7533535
Lokasi dan Kantor Pemasaran De Griya
De Griya Ruko Blok A24 No.1-2
Jl. Telagasari-Kosambi Klari, Karawang
Telp. (0267) 43 7777 , 474 70 70
Bandung
Jl. Soekarno-Hatta No.638 Bandung Indonesia 40292
Telp. (022) 756 2088Fax. (022) 756 2085
Jakarta
Menara AnugrahKantor Taman E3.3 Unit A3Jl. Mega Kuningan Lot 8.6-8.7Setiabudi-Jakarta 12950
Telp. (021) 578 52540Fax. (021) 578 52541
import googledatastore as datastoreNext include writeEntity() and readEntity() functions:
def main()
writeEntity()
readEntity()
def WriteEntity():First create a new file called “demo.py”. Inside demo.py, we’ll add code to write and then read an entity from the Cloud Datastore. Finally we can update main() to print out the property values within the fetched entity:
req = datastore.BlindWriteRequest()
entity = req.mutation.upsert.add()
path = entity.key.path_element.add()
path.kind = 'Greeting'
path.name = 'foo'
message = entity.property.add()
message.name = 'message'
value = message.value.add()
value.string_value = 'to the cloud and beyond!'
try:
datastore.blind_write(req)
except datastore.RPCError as e:
# remember to do something useful with the exception pass
def ReadEntity():
req = datastore.LookupRequest()
key = req.key.add()
path = key.path_element.add()
path.kind = 'Greeting0'
path.name = 'foo0'
try:
resp = datastore.lookup(req)
return resp
except datastore.RPCError as e:
# remember to do something useful with the exception pass
def main()Before we can run this code we need to tell the SDK which Cloud Datastore instance we would like to use. This is done by exporting the following environment variable:
writeEntity();
resp = readEntity();
entity = resp.found[0].entity
for p in entity.property:
print 'Entity property name: %s', p.name
v = p.value[0]
print 'Entity property value: %s', v.string_value
~$ export DATASTORE_DATASET cloud-datastore-demoFinally we’re able to run the application by simply issuing the following:
~$ python demo.pyBesides the output that we see in console window, we’re also able to monitor our interactions within the Cloud Console. By navigating back to Cloud Console, selecting our cloud-datastore-demo project, and then selecting the Cloud Datastore we’re taken to our instance’s dashboard page that includes number of entities, properties, and property types, as well as index management, ad-hoc query support and breakdown of stored data.
It Is a simple process to add our blog content to Facebook fan page . First you log in Your facebook account .Then Click here
You Will reach below page
click : beta.rssgraffiti.com
See the instruction and click allow button. After that u reach: http://beta.rssgraffiti.com/#_=_
Click “Add new Publishing Plan “
Enter a name which you Like to use and click “Create publishing Plan”
After that click add new button. Then popup a window like below. Add your RSS FEED address OR Twitter username placed blank space.
Click “Add Source” Button
Edit feed setup and save it.
Go to target and select your page.
Edit your settings and save it. Click OFF button to ON
Do you have any problem? comment below this post. Thanks
2013, By: Seo Master