Fix hanging HGFS: Read more here
echo "answer AUTO_KMODS_ENABLED yes" | sudo tee -a /etc/vmware-tools/locations
| Lentil Recipe | |
| 1. Add Lentils and Chicken Broth + Water to large pot | |
| (3-to-1 ratio of broth to lentils, more or less) | |
| 2. Put on stove on high with lentil/broth combo. | |
| 3. As the pot is heating up, prepare the following: |
Fix hanging HGFS: Read more here
echo "answer AUTO_KMODS_ENABLED yes" | sudo tee -a /etc/vmware-tools/locations
| Turn the radio on | |
| GO to menu item #40 and RESET the radio | |
| Menu item #14 for either English voice or Voice OFF | |
| Press EXIT on the keypad | |
| Push orange VFO/MR button to go to Frequency mode and program in repeater frequency | |
| Press MENU then push #1 for frequency stepping. 10K for ham repeater use. | |
| Push #13 for CTCSS on transmit for repeater use. | |
| Push #25 for repeater shift. Options are NEG(-) POS(+) or off for simplex | |
| Item #26 for off shift repeater use. You want 00.600 for ham radio repeaters. |
| function add(num1, num2) { | |
| num1 = num1.split(''); | |
| num2 = num2.split(''); | |
| num1 = num1.map(function (num) { | |
| return parseInt(num, 10); | |
| }); | |
| num2 = num2.map(function (num) { | |
| return parseInt(num, 10); |
packagecloud:enterprise uses GPG keys to sign repository metadata. You can let packagecloud:enterprise generate a GPG key itself during install or you can import an existing GPG key.
Read more about GPG, RPM packages, and yum repos.
| #!/usr/bin/env ruby | |
| require 'rubygems' | |
| require 'json' | |
| root = File.expand_path(ARGV[0] ? ARGV[0] : ".") + "/" | |
| objectName = "JST" | |
| templateDir = "templates/" | |
| templates = Dir["#{root}#{templateDir}**/*.jst"] | |
| contents = {} |
I hereby claim:
To claim this, I am signing this object:
| template = function(text, data, translation) { | |
| var matches = text.match(/\{\{([\s\S]+?)\}\}/g); | |
| if (matches === null) { return text; } | |
| if (translation !== undefined) { | |
| for(key in translation) { | |
| data[key] = translation[key]; | |
| } | |
| } |
| - (void) drawCountdownSpinner { | |
| int radius = 70; | |
| CAShapeLayer *circle = [CAShapeLayer layer]; | |
| circle.path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(0, 0, 2.0*radius, 2.0*radius) | |
| cornerRadius:radius].CGPath; | |
| circle.position = CGPointMake(CGRectGetMidX(self.view.frame)-radius, | |
| CGRectGetMidY(self.view.frame)-radius-40); | |