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
This 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];