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
--- | |
Language: Cpp | |
AccessModifierOffset: -2 | |
AlignAfterOpenBracket: false | |
AlignConsecutiveDeclarations: true | |
AlignConsecutiveAssignments: false | |
AlignEscapedNewlinesLeft: false | |
AlignOperands: false | |
AlignTrailingComments: false | |
AllowAllParametersOfDeclarationOnNextLine: 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
Pod::Spec.new do |s| | |
s.name = 'Nimbus' | |
s.version = '1.2.1' | |
s.license = 'Apache License, Version 2.0' | |
s.summary = 'An iOS framework whose growth is bounded by O(documentation).' | |
s.homepage = 'http://docs.nimbuskit.info/index.html' | |
s.author = { 'Jeff Verkoeyen' => '[email protected]', | |
'Bubnov Slavik' => '[email protected]', | |
'Roger Chapman' => '[email protected]', | |
'Manu Cornet' => '[email protected]', |
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
selected_health_gems = [ | |
{ | |
"callout": "physical_activity_max", | |
"headline": "health gem preview headline text goes here", | |
"description": "health gem description text goes here", | |
}, | |
{ | |
"callout": "social_proximity_min", | |
"headline": "health gem preview headline text goes here", | |
"description": "health gem description text goes here", |
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
-- csipttc_unisiwc_ctpttfwttc.app | |
-- Copy Selected Items Path To The Clipboard Unless Nothing Is Selected In Which Case Copy The Path To The Foremost Window To The Clipboard | |
on makeAndCopyLinkFromPath(myPath) | |
if myPath starts with "/Volumes/" then | |
set dirStructure to ((characters 9 thru -1 of myPath) as string) | |
set strHTML to quoted form of ("<a style='font-family:helvetica' href=\"smb://Guest::@lp-vault" & dirStructure & "\">" & myPath & "</a>") --double :: bc otherwise it disappears? | |
--tell application "Finder" to display dialog strHTML | |
do shell script "echo " & strHTML & " | textutil -format html -convert rtf -stdin -stdout | pbcopy -Prefer rtf" | |
else |
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
package | |
{ | |
import flash.geom.ColorTransform; | |
public class ColorUtil | |
{ | |
/** | |
* RGBColorTransform Create an instance of the information. | |
* @ Param rgb RGB integer value that indicates (0x000000 - 0xFFFFFF) | |
* @ Param amount of fill adaptive value (0.0 - 1.0) | |
* @ Param alpha transparency (0.0 - 1.0) |