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
Processor Information: | |
Vendor: GenuineIntel | |
Speed: 2400 Mhz | |
4 logical processors | |
4 physical processors | |
HyperThreading: Unsupported | |
FCMOV: Supported | |
SSE2: Supported | |
SSE3: Supported | |
SSSE3: Supported |
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
[Desktop Entry] | |
Version=1.0 | |
Encoding=UTF-8 | |
Name=CrashPlan | |
Categories=System; | |
Comment=CrashPlan Desktop | |
Exec=/usr/local/bin/CrashPlanDesktop | |
Icon=/usr/local/crashplan/skin/icon_app_128x128.png | |
Hidden=false | |
Terminal=false |
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
[Desktop Entry] | |
Version=1.0 | |
Encoding=UTF-8 | |
Name=Aptana Studio 3 | |
GenericName=Integrated Development Environment | |
Comment=Aptana Strudio 3 Integrated Development Environment | |
Exec=/opt/Aptana_Studio_3/AptanaStudio3 %F | |
TryExec=/opt/Aptana_Studio_3/AptanaStudio3 | |
Icon=/opt/Aptana_Studio_3/icon.png | |
StartupNotify=true |
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
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
### Canonicalize codeigniter URLs | |
# If your default controller is something other than | |
# "welcome" you should probably change this | |
RewriteRule ^(main(/index)?|index(\.php)?)/?$ / [L,R=301] |
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
# Rerun the install script, recording the files installed. | |
python setup.py install --record files.txt | |
# Then, loop through the file removing everything. | |
cat files.txt | xargs rm -rf |
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
Sajan Parikh<br /> | |
<i>Owner, Noppix LLC</i><br /><br /> | |
e: [email protected]<br /> | |
o: (563) 726-0371<br /> | |
c: (563) 447-0822<br /><br /> | |
<img alt="Noppix LLC Logo" src="https://s3.amazonaws.com/Noppix_Media/Email_Signatures/NewNoppixEmailLogo.png" /> |
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
<?php | |
function alpha_num_spaces($subject) | |
{ | |
$pattern = "#^[A-Z0-9 ]+$#i"; | |
$res = preg_match($pattern, $subject); | |
if ($res == 1) | |
{ |
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
<?php | |
include 'Twilio.class.php'; | |
$subject = urldecode($_GET['subject']); | |
$response = new Services_Twilio_Twiml(); | |
$response->say('Hello. New Zen desk ticket.'); | |
$response->pause(""); | |
$response->say($subject); | |
$response->sms( | |
'New support ticket: ' . $subject, |
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
<?php | |
$numbers = array( | |
mt_rand(1, 200), | |
mt_rand(1, 200) | |
); | |
echo $json_encode($numbers); | |
?> |
OlderNewer