wtf are you going to do with 32GB of RAM that won't get utilized at all unless you do any of these things:
video editing in raw formats with dozens of layers
large database handling (large as in 20-50GB large)
run multiple VMs with dedicated RAM
if not, you are creating unnecessary...
Learn to read noob:
Length: 104857600 (100M) [application/octet-stream]
I downloaded a 100 megabyte file in 1.4s
The math puts it at 71.4 MB/s, however milliseconds are lost when resolving the file.
root@auto [~]# wget -O /dev/null http://cachefly.cachefly.net/100mb.test
--2013-06-15...
No it's not, but Cloudflare has a form that is used for submitting abuse/DMCA issues. There's no way of knowing if someone just put in that information (which is easy to find) or if it was legitimately inputted by a Sulake legal representative.
You could use a DRM method, but that is usually used more for licensing of software or products that are purchased. If you're releasing code for free but do not want your copyright to be modified, use something like ionCube or Zend Guard to encode the source (PHP obviously). Non web languages...
That's not the headers. This is what it should look like:
Return-path: <[email protected]>
Envelope-to: [email protected]
Delivery-date: Tue, 11 Jun 2013 05:21:04 +0400
Received: from root by auto.autobots.biz with local (Exim 4.80.1)
(envelope-from <[email protected]>)
id...
When you emailed back, was it a counter DMCA? Such as:
>The complaint does not follow the prescribed form for notification of an alleged copyright violation as set forth in the Digital Millennium Copyright Act, 17 USC 512(c)(3). Specifically, the complainant has failed to:
~Include a physical...
Post the DMCA. If it's not in valid format then it doesn't mean shit. I see a dozen of them a day and pass them along, but 85% of them are never in the proper format. It's also real easy to send a counter DMCA.
1. bcrypt
2. bcrpyt, scrypt, PBKDF2
3. bcrypt/PBKDF2 since scrypt does not have support built in with PHP
4. Use bcrypt or PBKDF2
5. no, because the hashing algorithm is still md5, at least use sha:
function encrypt_PBKDF2($data) {
$salt = "76Vygvt6VTYGvt67GvGutvUV7j";
$result =...
To expand on this:
id's are unique, classes are not. For example, you should only use id of "box" once per page. id's also take precedence over classes because of specificity (http://www.w3.org/TR/CSS2/cascade.html#specificity).
Here's how somehow explained it to me a long time ago (think of...