How to set up multiple accounts with Mutt E-mail Client
Thanks to this article by Christoph Berg
Directories and files
~/| var writeTextToFile = function(text, filePath) { | |
| var t = [NSString stringWithFormat:@"%@", text], | |
| f = [NSString stringWithFormat:@"%@", filePath]; | |
| return [t writeToFile:f atomically:true encoding:NSUTF8StringEncoding error:nil]; | |
| } | |
| var readTextFromFile = function(filePath) { | |
| var fileManager = [NSFileManager defaultManager]; | |
| if([fileManager fileExistsAtPath:filePath]) { | |
| return [NSString stringWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil]; |
| function countCSSRules() { | |
| var results = '', | |
| log = ''; | |
| if (!document.styleSheets) { | |
| return; | |
| } | |
| for (var i = 0; i < document.styleSheets.length; i++) { | |
| countSheet(document.styleSheets[i]); | |
| } | |
| function countSheet(sheet) { |
Thanks to this article by Christoph Berg
Directories and files
~/| using UnityEngine; | |
| using System.Collections; | |
| public class CameraShake : MonoBehaviour | |
| { | |
| // Transform of the camera to shake. Grabs the gameObject's transform | |
| // if null. | |
| public Transform camTransform; | |
| // How long the object should shake for. |
| function slugify(text) | |
| { | |
| return text.toString().toLowerCase() | |
| .replace(/\s+/g, '-') // Replace spaces with - | |
| .replace(/[^\w\-]+/g, '') // Remove all non-word chars | |
| .replace(/\-\-+/g, '-') // Replace multiple - with single - | |
| .replace(/^-+/, '') // Trim - from start of text | |
| .replace(/-+$/, ''); // Trim - from end of text | |
| } |
| #If you’re on Debian or Debian based system such as Ubuntu do the following: | |
| sudo aptitude install pv | |
| #If you’re on Fedora or Fedora based system such as CentOS do: | |
| sudo yum install pv | |
| #If you’re on Slackware, go to pv homepage, download the pv-version.tar.gz archive and do: |