This file contains hidden or 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
javascript:(function(){ | |
if (!($ = window.jQuery)) { | |
var jq = document.createElement('script'); | |
jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"; | |
document.body.appendChild(script); | |
} | |
else { | |
releasetheKraken(); | |
} | |
This file contains hidden or 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
We talk about Facebook, online privacy and bullying online, but we don't realize the gravity of it until it happens to someone we know. This is an incident that's currently happening to a friend of mine and I'm blogging about it to let people know and get attention of someone that can help. | |
This friend of mine who I won't tell the name is a student of a government university, and recently she had a request for a date by a person from the navy which she has refused, and because of this this person has created a fake Facebook profile of her using her photos but with a different name and has started posting bad things that are ruining her real life. | |
Also making things worse the person who created this fake profile is adding her real life friends to the fake Facebook profile, because the fake Facebook profile is using her real photos people that she know are accepting the requests and thins are getting worse and worse. And making things extra worse the people who's behind all this is telling that he would stop |
This file contains hidden or 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
<?php | |
$app_id = "xxxxxxx"; //facebook app id | |
$redirect_url = "xxxxxx"; //url to redirct after getting the token, should be in the same domain of the canvas url | |
$app_secret = "xxxxxxx"; //facebook app secret | |
session_start(); | |
$code = $_REQUEST['code']; |
This file contains hidden or 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
<?php | |
//using this code one can easily upload pictures to TwitPic using TwitPic API and Abraham Willium's Twitter OAuth class | |
/** | |
* @file | |
* User has successfully authenticated with Twitter. Access tokens saved to session and DB. | |
*/ | |
/* Load required lib files. */ | |
session_start(); | |
require_once('twitteroauth/twitteroauth.php'); |
NewerOlder