We don't collect any information from you, but note that the message you sent to our bot will be stored on Facebook's database. It's your duty to manage the messages between you and our bot.
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
// jQuery injection | |
var jq = document.createElement('script'); | |
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"; | |
document.getElementsByTagName('body')[0].appendChild(jq); | |
// http://stackoverflow.com/questions/6157929/how-to-simulate-mouse-click-using-javascript | |
// jQuery-ын mousedown, mouseup ашиглахаар болохгүй байгаа. Яагаад гэдгийг мэдэхгүй | |
function simulate(element, eventName) | |
{ | |
var options = extend(defaultOptions, arguments[2] || {}); |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE keyboard SYSTEM "file://localhost/System/Library/DTDs/KeyboardLayout.dtd"> | |
<!--Created by Buyant-Orgil.E, mail:[email protected] 2009-11-19 at 20:23 (JST)--> | |
<keyboard group="7" id="19456" name="Mongolian" maxout="1"> | |
<layouts> | |
<layout first="0" last="0" modifiers="30" mapSet="138"/> | |
</layouts> | |
<modifierMap id="30" defaultIndex="5"> | |
<keyMapSelect mapIndex="0"> | |
<modifier keys="option control command?"/> |
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
struct TreeNode { | |
int val; | |
TreeNode *left; | |
TreeNode *right; | |
TreeNode(int x) : val(x), left(NULL), right(NULL) {} | |
}; | |
struct ListNode { | |
int val; | |
ListNode *next; |
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
import json | |
# import simplejson | |
# import pickle | |
# from dateutil.relativedelta import relativedelta | |
import requests | |
import logging | |
from fake_useragent import UserAgent | |
# ATOME_COOKIE = "atome_cookies.pickle" | |
# ATOME_USER_ID = "atome_user_id.pickle" |
OlderNewer