This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="description" content="LeakedIn: Is your password safe?"> | |
<title>LeakedIn: Is your password safe?</title> | |
<style type="text/css"> | |
body { | |
background: #fff; | |
text-align: left; |
This file contains 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
<base href="https://lastpass.com"/><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<title>LastPass - LinkedIn Password Checker</title> | |
<meta http-equiv="content-type" content="text/html;charset=utf-8" /> | |
<meta http-equiv="Content-Style-Type" content="text/css" /> | |
<meta name="google-site-verification" content="javca5HBxgBLuV22DtLne4GLKzApk0CFjtw0Dqn9l5Y" /> | |
<meta name="Keywords" content="last password, last pass, remember password, remember passwords, password manager, online password manager, password, password management, password recovery, recover password, export passwords, form fill, formfill, form filler, safe password, local encryption, generate password, password generator,identity theft protection" /> | |
<meta name="description" content="LastPass is an online password manager and form filler that makes web browsing easier and more secure." /> |
This file contains 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
nguoi('Cantor'). | |
chet(X) :- nguoi(X). |
This file contains 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
giaithua(0, 1) :- !. | |
giaithua(X, Y) :- X1 is X-1, giaithua(X1, Y1), Y is X*Y1. |
This file contains 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
nguoi('Socrates'). | |
nguoi('Xeda'). | |
vua('Xeda'). | |
sungsuong(X) :- nguoi(X), vua(X). |
This file contains 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
p(X):-q(X), !. | |
p(3). | |
q(1). | |
q(2). |
This file contains 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
findall(X, member(X, [(1, a), (2, b), (3, c)]), Xs) |
This file contains 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
room(300,400,500). | |
object(monkey). | |
object(key). | |
object(cabinet). | |
object(box(b1,20)). | |
object(box(b2,40)). | |
at(loc(20,20,0),monkey). | |
at(loc(20,20,30),key). | |
at(loc(20,40,0),cabinet). | |
on(b2,floor). |
This file contains 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
{tag}([^{]|({tag[^}])|({ta[^g].)|({t[^a]..)|({[^t]...)|([^{]tag})|(.[^t]ag})|(..[^a]g})|(...[^g]}))*{/tag} |
This file contains 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
#include <iostream> | |
using namespace std; | |
int main() | |
{ | |
/* | |
*--ESP = value; // push | |
value = *ESP++; // pop | |
*/ |
OlderNewer