Notes by Craig Phillips
- There are 11 fallacies of Distributed Computing:
- The network is reliable
- Latency isn’t a problem
- Bandwidth isn’t a problem
- The network is secure
- The topology won’t change
fetch(url, { | |
method: 'POST', | |
headers: { | |
'auth': '1234' | |
}, | |
body: JSON.stringify({ | |
name: 'dean', | |
login: 'dean', | |
}) | |
}) |
# Remove repository configuration | |
git config --unset [key] | |
# Remove global configuration | |
git config --global --unset [key] | |
# Remove system configuration | |
git config --system --unset [key] |
/* | |
* Dependency : Excel Data Reader from http://exceldatareader.codeplex.com/ | |
* You must add the references to the Dlls (downloaded from the link above) with Visual Studio. | |
*/ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using Excel; |
0x00sec.org | |
10.32.59.31:32204 | |
10.45.35.173:7990 | |
1122qq.weebly.com | |
123movies.co | |
123moviesfull.co | |
123movies.re | |
1337x.io | |
141jav.com | |
1592878.com |
<?php | |
$countries = array | |
( | |
'AF' => 'Afghanistan', | |
'AX' => 'Aland Islands', | |
'AL' => 'Albania', | |
'DZ' => 'Algeria', | |
'AS' => 'American Samoa', | |
'AD' => 'Andorra', |
CREATE TABLE "AspNetRoles" ( | |
"Id" NVARCHAR2(128) NOT NULL, | |
"Name" NVARCHAR2(256) NOT NULL, | |
PRIMARY KEY ("Id") | |
); | |
CREATE TABLE "AspNetUserRoles" ( | |
"UserId" NVARCHAR2(128) NOT NULL, | |
"RoleId" NVARCHAR2(128) NOT NULL, |