By @myx
- Terms
- Background
- Current Contributors Feature
Server time: <?php echo date('r'); ?><br /> | |
Client time: <script>document.write(new Date().toString());</script> |
1. SSH into your server as root. | |
2. Run top. | |
3. Press shift + m. | |
4. Note the highest RES memory used by httpd. | |
5. Hit Q to exit top. | |
6. Execute: service httpd stop | |
7. Once httpd is stopped, execute: free -m | |
8. Note the memory listed under "used". | |
9. Find the guaranteed memory for your VPS plan. Support can tell you how much you have guaranteed if you cannot find it. | |
10. Subtract the memory USED from the memory that your plan is GUARANTEED. This will give you your base FREE MEMORY POOL. |
HTTP/1.1 417 Expectation Failed | |
Date: Fri, 06 Jul 2012 19:14:33 GMT | |
Server: hi | |
Vary: Accept-Encoding | |
Content-Length: 364 | |
Content-Type: text/html; charset=iso-8859-1 | |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> | |
<html><head> | |
<title>417 Expectation Failed</title> |
The Twitter API does not return lists as entities. Instead, the returned entity is the list owner only.
Here is a list: @mynetx/twcorp while the user is @echofon and the link is http://t.co/Bdx07zv.
The tweet entities are, according to API:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:col="clr-namespace:System.Collections;assembly=mscorlib" | |
xmlns:System="clr-namespace:System;assembly=mscorlib" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | |
<SolidColorBrush x:Key="BrandingLogoLight" Color="#FFFFFFFF"/> | |
<VisualBrush x:Key="VisualStudioLogo" Stretch="Uniform" ViewboxUnits="RelativeToBoundingBox" ViewportUnits="RelativeToBoundingBox" TileMode="None" AlignmentX="Left" AlignmentY="Top"> | |
<VisualBrush.Visual> | |
<Canvas Width="675" Height="114"> | |
<Canvas Width="675" Height="114"> |
<?php | |
($ret = mysql_query($query)) || die($query . ' ' . mysql_error()); |
This update improves performance in Windows Live Essentials 2011. The following list describes these changes:
#!/bin/sh | |
git log --pretty=format:%aN | sort | uniq -c | sort -rn |
#!/bin/bash | |
curl -i http://git.io -F "url=https://github.com/phpmyadmin/phpmyadmin" \ | |
-F "code=pma" |