repo
string
commit
string
message
string
diff
string
kerryb/real-world-haskell
b934331367c15deafc3a4354f11d5d6b2f9a7321
Chapter 4 part 1 exercise 4
diff --git a/.gitignore b/.gitignore index 3013aaf..ffe8ca5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.hi *.o ch4/Interact ch4/FixLines ch4/part1/ex3/FirstLines +ch4/part1/ex4/Transpose diff --git a/ch4/part1/ex4/Transpose.hs b/ch4/part1/ex4/Transpose.hs new file mode 100644 index 0000000..cd984aa ...
kerryb/real-world-haskell
0f467a2ee741df7c6f3f3f354689553da0f98fb0
Chapter 4 part 1 exercise 3
diff --git a/.gitignore b/.gitignore index 8a40bc5..3013aaf 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -**/*.hi -**/*.o +*.hi +*.o ch4/Interact ch4/FixLines +ch4/part1/ex3/FirstLines diff --git a/ch4/part1/ex3/FirstLines.hs b/ch4/part1/ex3/FirstLines.hs new file mode 100644 index 0000000..1ff7e48 --- /d...
kerryb/real-world-haskell
b88fb57e8781f8ac7fa5e41c2d9e25787f2c7b32
Chapter 4 part 1 exercise 2
diff --git a/ch4/part1/ex2/SplitWith.hs b/ch4/part1/ex2/SplitWith.hs new file mode 100644 index 0000000..6972053 --- /dev/null +++ b/ch4/part1/ex2/SplitWith.hs @@ -0,0 +1,6 @@ +splitWith :: (a -> Bool) -> [a] -> [[a]] +splitWith _ [] = [] +splitWith fn xs | null before = splitWith fn (tail after) + | nul...
kerryb/real-world-haskell
efb89386915c6e748789672547132ae9b1572ee6
Chapter 4 part 1 exercise 1
diff --git a/ch4/part1/ex1/SafeListFunctions.hs b/ch4/part1/ex1/SafeListFunctions.hs new file mode 100644 index 0000000..db393dd --- /dev/null +++ b/ch4/part1/ex1/SafeListFunctions.hs @@ -0,0 +1,11 @@ +safeHead [] = Nothing +safeHead xs = Just (head xs) + +safeTail [] = Nothing +safeTail xs = Just (tail xs) + +safeLast...
kerryb/real-world-haskell
20e72745af851c78586e4b3caf57e5874ba4667b
Add FixLines
diff --git a/.gitignore b/.gitignore index a6dc9f1..8a40bc5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ **/*.hi **/*.o ch4/Interact +ch4/FixLines diff --git a/ch4/FixLines.hs b/ch4/FixLines.hs index b2f628e..16e466d 100644 --- a/ch4/FixLines.hs +++ b/ch4/FixLines.hs @@ -1,29 +1,29 @@ import System.Envi...
kerryb/real-world-haskell
009808bdf4cee55c5e23a239342a1b47b5ece6e0
Add Interact program
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a6dc9f1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +**/*.hi +**/*.o +ch4/Interact diff --git a/ch4/FixLines.hs b/ch4/FixLines.hs new file mode 100644 index 0000000..b2f628e --- /dev/null +++ b/ch4/FixLines.hs @@ -0,0 +1,29 @@ +import System.En...
kerryb/real-world-haskell
624eb9e39e0ad4b74131089cf240d525bdff731f
Return [Direction], not String (what was I thinking?)
diff --git a/ch3/part2/ex11/Direction.hs b/ch3/part2/ex11/Direction.hs index d787e4b..4e417cc 100644 --- a/ch3/part2/ex11/Direction.hs +++ b/ch3/part2/ex11/Direction.hs @@ -1,21 +1,21 @@ data Direction = RightTurn | LeftTurn | StraightLine deriving (Show) data CartesianPoint = CartesianPoint {x::In...
kerryb/real-world-haskell
65400333729d5c2fcd10da2bd36e41125af1ee37
Chapter 3 part 2 exercise 11
diff --git a/ch3/part2/ex11/Direction.hs b/ch3/part2/ex11/Direction.hs new file mode 100644 index 0000000..d787e4b --- /dev/null +++ b/ch3/part2/ex11/Direction.hs @@ -0,0 +1,21 @@ +data Direction = RightTurn | LeftTurn | StraightLine + deriving (Show) + +data CartesianPoint = CartesianPoint {x::Int, y::I...
kerryb/real-world-haskell
960839a3efe7d94c457e82a55ac895da4e8b8684
Chapter 3 part 2 exercise 10
diff --git a/ch3/part2/ex10/Direction.hs b/ch3/part2/ex10/Direction.hs new file mode 100644 index 0000000..22fc416 --- /dev/null +++ b/ch3/part2/ex10/Direction.hs @@ -0,0 +1,16 @@ +data Direction = RightTurn | LeftTurn | StraightLine + deriving (Show) + +data CartesianPoint = CartesianPoint {x::Int, y::I...
kerryb/real-world-haskell
491f2586aa8abfa251b48f591f5dd9bd4b314192
Chapter 3 part 2 exercise 9
diff --git a/ch3/part2/ex9/Direction.hs b/ch3/part2/ex9/Direction.hs new file mode 100644 index 0000000..e260c91 --- /dev/null +++ b/ch3/part2/ex9/Direction.hs @@ -0,0 +1,2 @@ +data Direction = RightTurn | LeftTurn | StraightLine + deriving (Show)
kerryb/real-world-haskell
5371e4071277505db1c386db8c7f7771659bb747
Chapter 3 part 2 exercise 8
diff --git a/ch3/part2/ex8/Tree.hs b/ch3/part2/ex8/Tree.hs new file mode 100644 index 0000000..4d0b374 --- /dev/null +++ b/ch3/part2/ex8/Tree.hs @@ -0,0 +1,14 @@ +data Tree a = Node a (Tree a) (Tree a) + | Empty + deriving (Show) + +depth Empty = 0 +depth (Node _ left right) = 1 + ...
kerryb/real-world-haskell
3c9e070690636600118d698631af4861bc2324f9
Chapter 3 part 2 exercise 7
diff --git a/ch3/part2/ex7/Intersperse.hs b/ch3/part2/ex7/Intersperse.hs new file mode 100644 index 0000000..ca251c7 --- /dev/null +++ b/ch3/part2/ex7/Intersperse.hs @@ -0,0 +1,4 @@ +intersperse :: a -> [[a]] -> [a] +intersperse _ [] = [] +intersperse _ [x] = x +intersperse seperator (x:xs) = x +...
kerryb/real-world-haskell
1862577ef608fbe8b1adfd21b9d900993e7891ff
Chapter 3 part 2 exercise 6
diff --git a/ch3/part2/ex6/SortByLength.hs b/ch3/part2/ex6/SortByLength.hs new file mode 100644 index 0000000..4d6a9e2 --- /dev/null +++ b/ch3/part2/ex6/SortByLength.hs @@ -0,0 +1,4 @@ +import Data.List + +compareLengths a b = compare (length a) (length b) +sortByLength lists = sortBy compareLengths lists
kerryb/real-world-haskell
374bd7b46e8cffec8faaa6d128c846426f9c6a95
Tidy indentation
diff --git a/ch3/part2/ex4/Palindrome.hs b/ch3/part2/ex4/Palindrome.hs index 7599b89..5b67449 100644 --- a/ch3/part2/ex4/Palindrome.hs +++ b/ch3/part2/ex4/Palindrome.hs @@ -1,4 +1,4 @@ -palindrome [] = [] -palindrome [a] = [a] -palindrome [a,b] = [a,b,a] +palindrome [] = [] +palindrome [a] = [a] +palindrome [a,b...
kerryb/real-world-haskell
9a13d73e358e0d17a6a3d93561e346b6011ae8bd
Chapter 3 part 2 exercise 5
diff --git a/ch3/part2/ex5/IsPalindrome.hs b/ch3/part2/ex5/IsPalindrome.hs new file mode 100644 index 0000000..fc90eca --- /dev/null +++ b/ch3/part2/ex5/IsPalindrome.hs @@ -0,0 +1,4 @@ +isPalindrome [] = True +isPalindrome [_] = True +isPalindrome xs = (head xs == last xs) && (isPalindrome middle) + wh...
kerryb/real-world-haskell
307a7242826263851e5dca905364070f4945f864
Chapter 3 part 2 exercise 4
diff --git a/ch3/part2/ex4/Palindrome.hs b/ch3/part2/ex4/Palindrome.hs new file mode 100644 index 0000000..7599b89 --- /dev/null +++ b/ch3/part2/ex4/Palindrome.hs @@ -0,0 +1,4 @@ +palindrome [] = [] +palindrome [a] = [a] +palindrome [a,b] = [a,b,a] +palindrome (a:bs) = a : (palindrome bs) ++ [a]
kerryb/real-world-haskell
6a47043304afd887316229121d52739586895f36
Calculate mean from scratch (no lib fns)
diff --git a/ch3/part2/ex3/Mean.hs b/ch3/part2/ex3/Mean.hs index a9f6a75..73053da 100644 --- a/ch3/part2/ex3/Mean.hs +++ b/ch3/part2/ex3/Mean.hs @@ -1,2 +1,8 @@ -mean xs = (sum xs) / (fromIntegral (length xs)) +mySum [] = 0 +mySum (x:xs) = x + (mySum xs) + +myLength [] = 0 +myLength (_:xs) = 1 + (myLength xs) +...
kerryb/real-world-haskell
6298c203b6d422f88037cd6be9b2aab0481633d3
Chapter 3 part 2 exercise 3
diff --git a/ch3/part2/ex3/Mean.hs b/ch3/part2/ex3/Mean.hs new file mode 100644 index 0000000..a9f6a75 --- /dev/null +++ b/ch3/part2/ex3/Mean.hs @@ -0,0 +1,2 @@ +mean xs = (sum xs) / (fromIntegral (length xs)) +
kerryb/real-world-haskell
05c5fb6b437e61ffc173c7dd1681c378ad8e0019
Adjust indents
diff --git a/ch3/part2/ex1/ListLength.hs b/ch3/part2/ex1/ListLength.hs index af7808e..94e9f1a 100644 --- a/ch3/part2/ex1/ListLength.hs +++ b/ch3/part2/ex1/ListLength.hs @@ -1,3 +1,3 @@ -listLength [] = 0 -listLength [_] = 1 +listLength [] = 0 +listLength [_] = 1 listLength (_:xs) = 1 + (listLength xs) diff --gi...
kerryb/real-world-haskell
577c22028d82c580e13e33f699ee9c71f49091de
Chapter 3 part 2 exercise 2
diff --git a/ch3/part2/ex2/ListLength.hs b/ch3/part2/ex2/ListLength.hs new file mode 100644 index 0000000..78adad0 --- /dev/null +++ b/ch3/part2/ex2/ListLength.hs @@ -0,0 +1,4 @@ +listLength :: [a] -> Int +listLength [] = 0 +listLength [_] = 1 +listLength (_:xs) = 1 + (listLength xs)
kerryb/real-world-haskell
84606eeac4c7dbe0e6250d7c519ea5dc6ef6aef4
Chapter 3 part 2 exercise 1
diff --git a/ch3/part2/ex1/ListLength.hs b/ch3/part2/ex1/ListLength.hs new file mode 100644 index 0000000..af7808e --- /dev/null +++ b/ch3/part2/ex1/ListLength.hs @@ -0,0 +1,3 @@ +listLength [] = 0 +listLength [_] = 1 +listLength (_:xs) = 1 + (listLength xs)
kerryb/real-world-haskell
5422b7b6f296db1841212284dada635645c003cb
Chapter 3 part 1 exercise 2
diff --git a/ch3/part1/ex2/Tree.hs b/ch3/part1/ex2/Tree.hs new file mode 100644 index 0000000..5f58bc6 --- /dev/null +++ b/ch3/part1/ex2/Tree.hs @@ -0,0 +1,6 @@ +data Tree a = Node a (Maybe (Tree a)) (Maybe (Tree a)) + deriving (Show) + +simpleTree = (Node "parent") + (Just ((Node "left child")...
kerryb/real-world-haskell
df0d513c23535f7304dd235d6696cb94a8d84111
Chapter 1 part 1 exercise 1
diff --git a/ch3/ex_a1/ListADT.hs b/ch3/ex_a1/ListADT.hs new file mode 100644 index 0000000..1d970d1 --- /dev/null +++ b/ch3/ex_a1/ListADT.hs @@ -0,0 +1,6 @@ +data List a = Cons a (List a) + | Nil + deriving (Show) + +toList (x:xs) = Cons x (toList xs) +toList [] = Nil
kerryb/real-world-haskell
7588161073291d238295459a106189349831b560
Exercises for chapter 2
diff --git a/ch2/ex_a1.txt b/ch2/ex_a1.txt new file mode 100644 index 0000000..3fc8891 --- /dev/null +++ b/ch2/ex_a1.txt @@ -0,0 +1,3 @@ +False :: Bool +(["foo", "bar"], 'a') :: ([[Char]], Char) +[(True, []), (False, [['a']])] :: [(Bool, [[Char]])] diff --git a/ch2/ex_b1.txt b/ch2/ex_b1.txt new file mode 100644 index 0...
kerryb/real-world-haskell
eb07638b199f274acf2d9008835dda4edd0edec2
Chapter 1 Exercise 4
diff --git a/ch1/ex4/WC.hs b/ch1/ex4/WC.hs new file mode 100644 index 0000000..086cfa6 --- /dev/null +++ b/ch1/ex4/WC.hs @@ -0,0 +1,4 @@ +main = interact wordCount + where wordCount input = show (length (lines input)) ++ "\t" + ++ show (length (words input)) ++ "\t" + ...
kerryb/real-world-haskell
bf546369563fc76ea22a86b24a500999e5a4eb49
Chapter 1 Exercise 3
diff --git a/ch1/ex3/WC.hs b/ch1/ex3/WC.hs new file mode 100644 index 0000000..2dc59d9 --- /dev/null +++ b/ch1/ex3/WC.hs @@ -0,0 +1,2 @@ +main = interact wordCount + where wordCount input = show (length (words input)) ++ "\n" diff --git a/ch1/ex3/quux.txt b/ch1/ex3/quux.txt new file mode 100644 index 0000000..2f45fd...
kerryb/real-world-haskell
b46c3fdc2fb293f071467ea405c3c6e266ea4400
Chapter 1 Exercise 2
diff --git a/ch1/ex2.txt b/ch1/ex2.txt new file mode 100644 index 0000000..f6715fb --- /dev/null +++ b/ch1/ex2.txt @@ -0,0 +1,3 @@ +ghc> let x = 1 +ghc> :show bindings +x :: Integer = _
kerryb/real-world-haskell
87a021cf3b8766aa1ad198d4b305368417642e2e
Chapter 1 Exercise 1
diff --git a/ch1/ex1.txt b/ch1/ex1.txt new file mode 100644 index 0000000..d9db90b --- /dev/null +++ b/ch1/ex1.txt @@ -0,0 +1,15 @@ +5 + 8 :: (Num t) => t +3 * 5 + 8 :: (Num t) => t +2 + 4 :: (Num t) => t +(+) 2 4 :: (Num t) => t +sqrt 16 :: (Floating t) => t +succ 6 :: (Num t, Enum t) => t +succ 7 :: (Num t, Enum t) =...
EEHarbor/low_random
892b6dae8282b159e580e3c1a6076a39d9902f84
changelog version 4.1.1
diff --git a/CHANGELOG.md b/CHANGELOG.md index d0a8d5b..20a33d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,67 +1,72 @@ # Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Seman...
EEHarbor/low_random
9a1d228cd574809b1ea2477456911793dd9ad303
added new phar
diff --git a/low_random/low_random.phar b/low_random/low_random.phar index 37b3213..c9f1c0c 100644 Binary files a/low_random/low_random.phar and b/low_random/low_random.phar differ
EEHarbor/low_random
a076658f0b1ec035299a033b0d10bb40de92986d
version bump and changelog
diff --git a/CHANGELOG.md b/CHANGELOG.md index 107b7f2..d0a8d5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,60 +1,67 @@ # Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Seman...
EEHarbor/low_random
9c24d1386e529e792459dd0f60430e5736713d7a
foundational updates
diff --git a/low_random/low_random.phar b/low_random/low_random.phar index 74ebba6..37b3213 100644 Binary files a/low_random/low_random.phar and b/low_random/low_random.phar differ
EEHarbor/low_random
fcde8876a8e36e05852d054c29089cac6d40287a
bumped version for ee7 support
diff --git a/CHANGELOG.md b/CHANGELOG.md index 22659a8..107b7f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,57 +1,60 @@ # Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Seman...
EEHarbor/low_random
efd8cb99e7a2c5aa347b4113b8303ca39bed2c54
bug in src for tags
diff --git a/documentation/02.tags.html b/documentation/02.tags.html index 0832b56..d2b5f6a 100644 --- a/documentation/02.tags.html +++ b/documentation/02.tags.html @@ -1,10 +1,10 @@ --- title: Tag Reference --- <div id="vuedocs"> <addon-docs :docs="docs"></addon-docs> </div> -<script src="/doc_src/low_rand...
EEHarbor/low_random
274c8c49000347d96ac0e829e64ddc2b446170a1
added docs
diff --git a/documentation/01.installation.html b/documentation/01.installation.html new file mode 100644 index 0000000..3d1f76d --- /dev/null +++ b/documentation/01.installation.html @@ -0,0 +1,13 @@ +--- +title: Installation +--- + +<h3>Compatibility</h3> +The download contains the version that is compatible with bot...
EEHarbor/low_random
66938c09ccff92b5e9c5ab3f8e72f700eeb53579
Added changelog. Major version bump
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b760367 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,50 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/), +and this project adheres t...
EEHarbor/low_random
56bdada4928324890b7b8ef73022c37c4b41a640
Formatting
diff --git a/low_random/autoload.php b/low_random/autoload.php index 211240f..9fdc63b 100755 --- a/low_random/autoload.php +++ b/low_random/autoload.php @@ -1,92 +1,91 @@ <?php /** * EEHarbor PHAR Loader for low_random * Register a new auto-loader to handle loading files from the * PHAR in various environments ...
EEHarbor/low_random
a90ea9c4cc72a441d7de90cd3c377cab1bc79a8d
Added use and extend to
diff --git a/low_random/pi.low_random.php b/low_random/pi.low_random.php index b99774e..eceec45 100644 --- a/low_random/pi.low_random.php +++ b/low_random/pi.low_random.php @@ -1,188 +1,192 @@ <?php if (! defined('BASEPATH')) { exit('No direct script access allowed'); } /** * Low Random Plugin class * *...
EEHarbor/low_random
f55985ac807b104db5f60325f4de868b1d550081
Foundation
diff --git a/low_random/addon.json b/low_random/addon.json index e10e58b..7b3ad90 100644 --- a/low_random/addon.json +++ b/low_random/addon.json @@ -1,14 +1,16 @@ { - "name": "Low Random", - "shortname": "low_random", - "version": "3.0.0", - "foundation_version": "", - "description": "Generates randomness", - "l...
EEHarbor/low_random
b1953a1b89d055c24efa9045f143b016d52d3ade
Added addon.setup
diff --git a/low_random/addon.setup.php b/low_random/addon.setup.php index 9a980a7..c38c25e 100644 --- a/low_random/addon.setup.php +++ b/low_random/addon.setup.php @@ -1,20 +1,15 @@ <?php -/** - * Low Random setup file - * - * @package low_random - * @author Lodewijk Schutte <hi@gotolow.com> - * @lin...
EEHarbor/low_random
6dc2f4e289ce8781aeeb03f3acb4ad24b43fde01
PSR-12
diff --git a/low_random/addon.setup.php b/low_random/addon.setup.php index 5a2e228..9a980a7 100644 --- a/low_random/addon.setup.php +++ b/low_random/addon.setup.php @@ -1,20 +1,20 @@ <?php /** * Low Random setup file * * @package low_random * @author Lodewijk Schutte <hi@gotolow.com> * @lin...
EEHarbor/low_random
246227c4b22579f1a07e7b286bb62767752d6529
Return empty string when set is empty
diff --git a/low_random/pi.low_random.php b/low_random/pi.low_random.php index d78d27c..d0eeac7 100644 --- a/low_random/pi.low_random.php +++ b/low_random/pi.low_random.php @@ -1,196 +1,196 @@ <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * Low Random Plugin class * * @package...
EEHarbor/low_random
8be72b2f6bfbedd08daeb3ed05457990bc285054
EE3+4 compatibility
diff --git a/low_random/addon.setup.php b/low_random/addon.setup.php new file mode 100644 index 0000000..5a2e228 --- /dev/null +++ b/low_random/addon.setup.php @@ -0,0 +1,20 @@ +<?php + +/** + * Low Random setup file + * + * @package low_random + * @author Lodewijk Schutte <hi@gotolow.com> + * @link ...
EEHarbor/low_random
575c6807462ccf012bd985d3fc8991b6f740caa9
Version++
diff --git a/low_random/pi.low_random.php b/low_random/pi.low_random.php index f18d397..5b01c19 100644 --- a/low_random/pi.low_random.php +++ b/low_random/pi.low_random.php @@ -1,315 +1,315 @@ <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $plugin_info = array( 'pi_name' => 'Low...
EEHarbor/low_random
df1b3089337ed5a5f200741e4a0c23297faeba38
Add support for configuration overrides.
diff --git a/low_random/pi.low_random.php b/low_random/pi.low_random.php index 59c197a..f18d397 100644 --- a/low_random/pi.low_random.php +++ b/low_random/pi.low_random.php @@ -1,317 +1,315 @@ <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $plugin_info = array( 'pi_name' => 'Low...
EEHarbor/low_random
c6e369c5a32dfbcc12e86539d642ff47764dd03d
EE260 stuff
diff --git a/low_random/pi.low_random.php b/low_random/pi.low_random.php index a5774af..59c197a 100644 --- a/low_random/pi.low_random.php +++ b/low_random/pi.low_random.php @@ -1,372 +1,317 @@ <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $plugin_info = array( - 'pi_name' => 'Low Rand...
EEHarbor/low_random
296e1d8046263ee5790b49bc9d01bf2723aa2cd2
Added readme
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..d8da93a --- /dev/null +++ b/readme.md @@ -0,0 +1,3 @@ +# Low Random for ExpressionEngine 2 + +See [gotolow.com](http://gotolow.com/addons/low-random) for more info. \ No newline at end of file
EEHarbor/low_random
bdc815a1316b9fc26b2754980f9d69ee96ed4847
v2.1: added items() method
diff --git a/low_random/pi.low_random.php b/low_random/pi.low_random.php index 223cc62..a5774af 100644 --- a/low_random/pi.low_random.php +++ b/low_random/pi.low_random.php @@ -1,330 +1,372 @@ <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $plugin_info = array( 'pi_name' => 'Low Rand...
EEHarbor/low_random
469fea09b45d1add69fe2358553f4e116ff50d34
v2.0: First commit
diff --git a/low_random/pi.low_random.php b/low_random/pi.low_random.php new file mode 100644 index 0000000..223cc62 --- /dev/null +++ b/low_random/pi.low_random.php @@ -0,0 +1,330 @@ +<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); + +$plugin_info = array( + 'pi_name' => 'Low Random', + 'p...
simonwhitaker/goo-website
6e565335cc6ec76a85bdaf317d785be401fa73d2
Remove TypeKit fonts
diff --git a/src/content/css/base.css b/src/content/css/base.css index ebb699c..0907637 100644 --- a/src/content/css/base.css +++ b/src/content/css/base.css @@ -1,104 +1,105 @@ p, div, span, td, th, li { line-height: 1.3em; } body { - font-family: museo-sans, sans-serif; + font-family: Helvetica, Arial,...
simonwhitaker/goo-website
c726dd7c1db1b928bc56db4af46154ee6ce47ade
Remove App Store link for xx app
diff --git a/src/content/index.yaml b/src/content/index.yaml index 9d47d9e..fa30173 100644 --- a/src/content/index.yaml +++ b/src/content/index.yaml @@ -1,80 +1,80 @@ title: "Fantastic Apps for iPhone, iPad and iPod Touch" description: "Goo Software Ltd is an independent UK-based software house specialising in develo...
simonwhitaker/goo-website
af81d5657a9b8d8e83655449f417bdf8c08306b2
Add GooHub link
diff --git a/README.markdown b/README.markdown index b3ac914..b11c438 100644 --- a/README.markdown +++ b/README.markdown @@ -1,28 +1,28 @@ This is the code base for the Goo Software Ltd website ([www.goosoftware.co.uk](http://www.goosoftware.co.uk)). It uses [Nanoc](http://nanoc.stoneship.org/) to build the static...
simonwhitaker/goo-website
81976889af7fbe0edeb573c995982953549f2a46
Fix issues with YAML content for index page
diff --git a/src/content/index.yaml b/src/content/index.yaml index 07ad103..9d47d9e 100644 --- a/src/content/index.yaml +++ b/src/content/index.yaml @@ -1,101 +1,80 @@ title: "Fantastic Apps for iPhone, iPad and iPod Touch" description: "Goo Software Ltd is an independent UK-based software house specialising in devel...
simonwhitaker/goo-website
7d657dc596a075f14dfd4062b234da394cd0504f
Remove LinkedIn link
diff --git a/src/content/about.rhtml b/src/content/about.rhtml index cc295d7..7ec1900 100644 --- a/src/content/about.rhtml +++ b/src/content/about.rhtml @@ -1,21 +1,18 @@ <div id="content"> <h1> About Goo </h1> <img src="/images/simon.jpg" class="portrait" width="162" alt="Simon Whitaker"> ...
simonwhitaker/goo-website
c8aa7d1ebd44da010794656829e7d9c7226ca242
Add redirects for blog
diff --git a/.gitignore b/.gitignore index 249e7ef..261cbef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ .DS_Store src/tmp/ html artwork/Goo product compositions/ +.rvmrc diff --git a/src/content/htaccess.txt b/src/content/htaccess.txt index 07c59da..c31181a 100644 --- a/src/content/htaccess.txt +++ b/s...
simonwhitaker/goo-website
12d23024717102ba05724cde58ec12922be68089
Turn links in 'blog has moved' post into new-fangled 'hyperlinks'
diff --git a/src/content/blog/feed-has-moved.md b/src/content/blog/feed-has-moved.md index cf6cc6c..95417d7 100644 --- a/src/content/blog/feed-has-moved.md +++ b/src/content/blog/feed-has-moved.md @@ -1,7 +1,7 @@ --- kind: article created_at: 2012-04-18 title: This feed has moved! --- -This feed has moved - the ...
simonwhitaker/goo-website
947810678668db3997baa7b72d1e148451e897b5
Move blog to blog.goosoftware.co.uk
diff --git a/src/content/blog.rhtml b/src/content/blog.rhtml deleted file mode 100644 index 7e34cd6..0000000 --- a/src/content/blog.rhtml +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: The Goo Software Geek Blog ---- - -<ul class="blog-items"> - <% for article in sorted_articles %> - <li> - <a href="<%= artic...
simonwhitaker/goo-website
60f243a832358bc9cbcc18526e3d666a3b82524e
Correct a couple of typos
diff --git a/src/content/blog/0015-unique-identifier-no-warnings.md b/src/content/blog/0015-unique-identifier-no-warnings.md index 1aa43c0..27c98d5 100644 --- a/src/content/blog/0015-unique-identifier-no-warnings.md +++ b/src/content/blog/0015-unique-identifier-no-warnings.md @@ -1,36 +1,37 @@ --- kind: article crea...
simonwhitaker/goo-website
1c6c44631bb74ea3dc3cd62b870132afbef9b325
New blog post: calling UIDevice's -uniqueIdentifier without warnings
diff --git a/src/content/blog/0015-unique-identifier-no-warnings.md b/src/content/blog/0015-unique-identifier-no-warnings.md new file mode 100644 index 0000000..1aa43c0 --- /dev/null +++ b/src/content/blog/0015-unique-identifier-no-warnings.md @@ -0,0 +1,36 @@ +--- +kind: article +created_at: 2012-04-18 +title: Calling...
simonwhitaker/goo-website
75ca4ecd16a69815936b6c0a5deed12b5d10b9a5
Add blog post on developing Zippity
diff --git a/src/content/blog/0014-developing-zippity.md b/src/content/blog/0014-developing-zippity.md new file mode 100644 index 0000000..57f564a --- /dev/null +++ b/src/content/blog/0014-developing-zippity.md @@ -0,0 +1,42 @@ +--- +kind: article +created_at: 2012-04-10 +title: On Zippity – notes from a small iPhone...
simonwhitaker/goo-website
8a8e093b71c2bc3ea1037c7a58687661f410808a
Add Zippity to the home page
diff --git a/src/content/images/apps/zippity.png b/src/content/images/apps/zippity.png new file mode 100644 index 0000000..d422cb9 Binary files /dev/null and b/src/content/images/apps/zippity.png differ diff --git a/src/content/index.yaml b/src/content/index.yaml index 02b764a..7b5282f 100644 --- a/src/content/index.ya...
simonwhitaker/goo-website
d134f0649c4dc73b6d5a548b86bc2b840a811c1b
Added blog post on iOS photo hierarchy
diff --git a/src/content/blog/0013-ios-photo-hierarchy.md b/src/content/blog/0013-ios-photo-hierarchy.md new file mode 100644 index 0000000..fa05734 --- /dev/null +++ b/src/content/blog/0013-ios-photo-hierarchy.md @@ -0,0 +1,13 @@ +--- +kind: article +created_at: 2012-03-01 +title: The hierarchy in iOS 5's photo librar...
simonwhitaker/goo-website
0ee176545e183692a69f19ed191177e8a2479b70
Add link to Super User post on setting up hidden user accounts in OS X
diff --git a/src/content/blog/0011-quick-git-server.md b/src/content/blog/0011-quick-git-server.md index a2712f5..cdcb5f0 100644 --- a/src/content/blog/0011-quick-git-server.md +++ b/src/content/blog/0011-quick-git-server.md @@ -1,125 +1,125 @@ --- kind: article created_at: 2012-02-07 title: Running a simple Git se...
simonwhitaker/goo-website
e4acbef77b95cfa27900c29a7508efa6ded7638f
Added noscript tag for embedded gist
diff --git a/src/content/blog/0010-save-to-dated-folder.md b/src/content/blog/0010-save-to-dated-folder.md index c5369ca..5e10510 100644 --- a/src/content/blog/0010-save-to-dated-folder.md +++ b/src/content/blog/0010-save-to-dated-folder.md @@ -1,16 +1,17 @@ --- kind: article created_at: 2012-02-02 title: Dated PDF...
simonwhitaker/goo-website
6be5d4fcb13819d08cb6b8d3ee3e3786dce44813
Added blog article on adding setting an app's CFBundleVersion using git describe
diff --git a/src/content/blog.rhtml b/src/content/blog.rhtml index ab9c212..7e34cd6 100644 --- a/src/content/blog.rhtml +++ b/src/content/blog.rhtml @@ -1,14 +1,12 @@ --- -title: Latest blog articles +title: The Goo Software Geek Blog --- -<!-- <h1>Latest blog articles</h1> --> - <ul class="blog-items"> <% fo...
simonwhitaker/goo-website
5ea513df3172bfbcb6d036496fbecfbda40c8c25
Add support for specific slugs in blog posts, revert slug of re-titled Git server post
diff --git a/src/Rules b/src/Rules index ba43c40..1282343 100644 --- a/src/Rules +++ b/src/Rules @@ -1,66 +1,67 @@ #!/usr/bin/env ruby # A few helpful tips about the Rules file: # # * The order of rules is important: for each item, only the first matching # rule is applied. # # * Item identifiers start and e...
simonwhitaker/goo-website
4c69592686137f747efd98a3a84b8815e15be849
Minor text changes
diff --git a/src/content/blog/0011-quick-git-server.md b/src/content/blog/0011-quick-git-server.md index b8cfc30..c4be3b7 100644 --- a/src/content/blog/0011-quick-git-server.md +++ b/src/content/blog/0011-quick-git-server.md @@ -1,124 +1,124 @@ --- kind: article created_at: 2012-02-07 title: How to run your own sim...
simonwhitaker/goo-website
e9fc0e8910e6f70ab922ae3883a42d776356ddb3
Text differences
diff --git a/src/content/blog/0011-quick-git-server.md b/src/content/blog/0011-quick-git-server.md index 118dbcf..b8cfc30 100644 --- a/src/content/blog/0011-quick-git-server.md +++ b/src/content/blog/0011-quick-git-server.md @@ -1,126 +1,124 @@ --- kind: article created_at: 2012-02-07 title: How to run your own sim...
simonwhitaker/goo-website
9ac25eecd1b5ccafea70853e3f1d71b661a150a3
Minor text changes
diff --git a/src/content/blog/0011-quick-git-server.md b/src/content/blog/0011-quick-git-server.md index aee125b..118dbcf 100644 --- a/src/content/blog/0011-quick-git-server.md +++ b/src/content/blog/0011-quick-git-server.md @@ -1,126 +1,126 @@ --- kind: article created_at: 2012-02-07 title: How to run your own sim...
simonwhitaker/goo-website
3ce62d61758af8dd60ebcf68ccec40e96b1bfcb8
Fixing line height in blog headings
diff --git a/src/content/css/blog.css b/src/content/css/blog.css index 33885f7..af5f230 100644 --- a/src/content/css/blog.css +++ b/src/content/css/blog.css @@ -1,226 +1,230 @@ @import url('base.css'); body { background-color: #eee; max-width: 1200px; } #header { border-bottom: 1px solid #444; }...
simonwhitaker/goo-website
3c6d0b8e45108a90f240c4648ca2bb6e89a29ba9
Wording changes in blog article
diff --git a/src/content/blog/0011-quick-git-server.md b/src/content/blog/0011-quick-git-server.md index 0738401..aee125b 100644 --- a/src/content/blog/0011-quick-git-server.md +++ b/src/content/blog/0011-quick-git-server.md @@ -1,121 +1,126 @@ --- kind: article created_at: 2012-02-07 title: How to run your own sim...
simonwhitaker/goo-website
7cabd82668e9d3f5d8797c1d40b4c197d1ebc6b4
New blog article
diff --git a/src/content/blog/0011-quick-git-server.md b/src/content/blog/0011-quick-git-server.md new file mode 100644 index 0000000..0738401 --- /dev/null +++ b/src/content/blog/0011-quick-git-server.md @@ -0,0 +1,121 @@ +--- +kind: article +created_at: 2012-02-07 +title: How to run your own simple Git server +--- + ...
simonwhitaker/goo-website
9cc12e807359867a19335941e0da985c32bff2cd
New blog post
diff --git a/src/content/blog/0010-save-to-dated-folder.md b/src/content/blog/0010-save-to-dated-folder.md new file mode 100644 index 0000000..c5369ca --- /dev/null +++ b/src/content/blog/0010-save-to-dated-folder.md @@ -0,0 +1,16 @@ +--- +kind: article +created_at: 2012-02-02 +title: Dated PDF Saver +--- + +Here's a n...
simonwhitaker/goo-website
a76d17a88cb230e4307d3ffae3a913bd0f569121
Nicer Android store links
diff --git a/src/content/css/goo.css b/src/content/css/goo.css index 20656b7..ddce5d4 100644 --- a/src/content/css/goo.css +++ b/src/content/css/goo.css @@ -1,284 +1,277 @@ @import url('base.css'); body { max-width: 980px; } #main { padding: 0; margin: 0 0 30px 0; background-color: white; ...
simonwhitaker/goo-website
0350c4176f3683215b75dc5da1c6741e986235a8
Removing Disqus integration
diff --git a/src/content/css/blog.css b/src/content/css/blog.css index 06af9e9..33885f7 100644 --- a/src/content/css/blog.css +++ b/src/content/css/blog.css @@ -1,221 +1,226 @@ @import url('base.css'); body { background-color: #eee; max-width: 1200px; } #header { border-bottom: 1px solid #444; }...
simonwhitaker/goo-website
630a098188b41c32ec51e8d2823c9ffd15c174b7
Added link to NMA awards in iBreastCheck details
diff --git a/src/content/index.yaml b/src/content/index.yaml index fb1a2d8..02b764a 100644 --- a/src/content/index.yaml +++ b/src/content/index.yaml @@ -1,92 +1,92 @@ title: "Fantastic Apps for iPhone, iPad and iPod Touch" description: "Goo Software Ltd is an independent UK-based software house specialising in develo...
simonwhitaker/goo-website
eb1c794f7fb569ded9dfffdbcf0b28f4f1465058
Added support for accolades, in use for Oxford Uni and iBreastCheck
diff --git a/artwork/accolade-star.opacity b/artwork/accolade-star.opacity new file mode 100644 index 0000000..eb0b3c4 Binary files /dev/null and b/artwork/accolade-star.opacity differ diff --git a/src/content/css/goo.css b/src/content/css/goo.css index f21555d..20656b7 100644 --- a/src/content/css/goo.css +++ b/src/co...
simonwhitaker/goo-website
375b4e73773d8121bb174fa82262466d45cc2a4a
Added link to Rewind 2011 page in iTunes
diff --git a/src/content/index.yaml b/src/content/index.yaml index 126a963..8044d02 100644 --- a/src/content/index.yaml +++ b/src/content/index.yaml @@ -1,87 +1,88 @@ title: "Fantastic Apps for iPhone, iPad and iPod Touch" description: "Goo Software Ltd is an independent UK-based software house specialising in develo...
simonwhitaker/goo-website
399b6e6d517534b850eb33836154762a5c77b42e
Set border=0 on page control links
diff --git a/src/content/index.rhtml b/src/content/index.rhtml index ca14f1b..033b23c 100644 --- a/src/content/index.rhtml +++ b/src/content/index.rhtml @@ -1,58 +1,58 @@ <div id="content"> <h1> Welcome to Goo! </h1> <p> We're a UK software house offering app development for iPhone, iP...
simonwhitaker/goo-website
de1b2d7eaf6145f6d5a0b135f0161400e0935dd6
More tweakage
diff --git a/src/content/blog.rhtml b/src/content/blog.rhtml index 1186e97..ab9c212 100644 --- a/src/content/blog.rhtml +++ b/src/content/blog.rhtml @@ -1,16 +1,14 @@ --- title: Latest blog articles --- -<div id="content"> - <!-- <h1>Latest blog articles</h1> --> +<!-- <h1>Latest blog articles</h1> --> - <...
simonwhitaker/goo-website
0fecb18f78c0c3e537c5f51fb22150760cef9d23
Pimping the blog
diff --git a/src/content/css/blog.css b/src/content/css/blog.css index e89e884..06af9e9 100644 --- a/src/content/css/blog.css +++ b/src/content/css/blog.css @@ -1,251 +1,221 @@ @import url('base.css'); body { - background-color: #000; + background-color: #eee; max-width: 1200px; } #header { bord...
simonwhitaker/goo-website
b365b6ab90d40bfb7fa682ff03d4a31b1fb3d5bc
Updating to use Typekit
diff --git a/src/content/css/base.css b/src/content/css/base.css index be9fe52..ebb699c 100644 --- a/src/content/css/base.css +++ b/src/content/css/base.css @@ -1,108 +1,104 @@ p, div, span, td, th, li { line-height: 1.3em; } body { - font-family: Helvetica, Arial, sans-serif; + font-family: museo-sans,...
simonwhitaker/goo-website
9b5174168e62f5393455870a87aad1202bfedfb5
Added spacing
diff --git a/src/content/index.yaml b/src/content/index.yaml index b82b932..126a963 100644 --- a/src/content/index.yaml +++ b/src/content/index.yaml @@ -1,87 +1,87 @@ title: "Fantastic Apps for iPhone, iPad and iPod Touch" description: "Goo Software Ltd is an independent UK-based software house specialising in develo...
simonwhitaker/goo-website
9a319bb94ec92c6343b4785d1f81173fcea3bea5
Making everything look nice on iPad and iPhone
diff --git a/src/content/css/goo.css b/src/content/css/goo.css index 86ae7de..c3329b3 100644 --- a/src/content/css/goo.css +++ b/src/content/css/goo.css @@ -1,403 +1,277 @@ @import url('base.css'); body { - max-width: 960px; + max-width: 980px; } #main { padding: 0; - margin: 20px 0 30px 0; + m...
simonwhitaker/goo-website
d0b5c67d1ce989e26ce886935129c9668fd1e29c
Further tweaks
diff --git a/src/content/css/goo.css b/src/content/css/goo.css index c326c55..86ae7de 100644 --- a/src/content/css/goo.css +++ b/src/content/css/goo.css @@ -1,400 +1,403 @@ @import url('base.css'); body { max-width: 960px; } #main { padding: 0; margin: 20px 0 30px 0; background-color: white;...
simonwhitaker/goo-website
e9ed2cd1bb7aacae389f819da0f634a7d7aaa443
Fixing indent on app slogan
diff --git a/src/content/css/goo.css b/src/content/css/goo.css index 51b5c16..c326c55 100644 --- a/src/content/css/goo.css +++ b/src/content/css/goo.css @@ -1,401 +1,400 @@ @import url('base.css'); body { max-width: 960px; } #main { padding: 0; margin: 20px 0 30px 0; background-color: white;...
simonwhitaker/goo-website
1fcf35eabd4bdecd640817274f19e0c0a4853d7c
Misc tweaks
diff --git a/artwork/Habilis logo.opacity b/artwork/Habilis logo.opacity deleted file mode 100644 index c396325..0000000 Binary files a/artwork/Habilis logo.opacity and /dev/null differ diff --git a/artwork/app-bg.psd b/artwork/app-bg.psd deleted file mode 100644 index f5f678c..0000000 Binary files a/artwork/app-bg.psd...
simonwhitaker/goo-website
2e6ff779b77fb8b9b7970ab0f8dd775ab6352e64
Wording change
diff --git a/src/content/index.rhtml b/src/content/index.rhtml index 02914f8..fa5652c 100644 --- a/src/content/index.rhtml +++ b/src/content/index.rhtml @@ -1,57 +1,57 @@ <div id="content"> <h1> Welcome to Goo! </h1> <p> - We're a UK software house specialising in apps for iPhone, iPad a...
simonwhitaker/goo-website
7443dd075f490c4769134e7fa4fefe7098f5f174
Added more content to Lucky Voice entry
diff --git a/src/content/css/goo.css b/src/content/css/goo.css index 6adf5ee..6f0c4ed 100644 --- a/src/content/css/goo.css +++ b/src/content/css/goo.css @@ -1,434 +1,435 @@ @import url('base.css'); body { max-width: 960px; } #main { padding: 0; margin: 20px 0 30px 0; background-color: white;...
simonwhitaker/goo-website
4f59e924e6f7fd5c1e4ad58cfb30aac5476a9abd
Moved arrow heads up a bit on paging controls
diff --git a/artwork/page-button.opacity b/artwork/page-button.opacity index f984610..66a8a3c 100644 Binary files a/artwork/page-button.opacity and b/artwork/page-button.opacity differ diff --git a/src/content/images/page-button-next.png b/src/content/images/page-button-next.png index 6508056..4e0e207 100644 Binary fil...
simonwhitaker/goo-website
edcb0df60cc8fb2c60de65d1b9e9d308271bf595
Site revamp - got rid of dark background in portfolio and replaced app buttons with simple paging controls
diff --git a/artwork/page-button.opacity b/artwork/page-button.opacity new file mode 100644 index 0000000..f984610 Binary files /dev/null and b/artwork/page-button.opacity differ diff --git a/src/content/css/goo.css b/src/content/css/goo.css index 39bee99..6adf5ee 100644 --- a/src/content/css/goo.css +++ b/src/content/...
simonwhitaker/goo-website
9e04ee3ca84980a888a57c4fca3ae8657375c175
Added Oxford University app
diff --git a/src/content/images/apps/oxford-university.png b/src/content/images/apps/oxford-university.png new file mode 100644 index 0000000..4588bca Binary files /dev/null and b/src/content/images/apps/oxford-university.png differ diff --git a/src/content/index.yaml b/src/content/index.yaml index 9451acd..76dd957 100...
simonwhitaker/goo-website
9f49cf648312a7e6d973e07a233ee07b341b0cd4
Adding installation instuctions
diff --git a/README.markdown b/README.markdown index d2a8cfd..b3ac914 100644 --- a/README.markdown +++ b/README.markdown @@ -1,25 +1,28 @@ This is the code base for the Goo Software Ltd website ([www.goosoftware.co.uk](http://www.goosoftware.co.uk)). It uses [Nanoc](http://nanoc.stoneship.org/) to build the static...
simonwhitaker/goo-website
d47c5cd7336fcd76c95b2eba1762d361c28dfae2
Fix CSS for iPhone-optimised site
diff --git a/src/content/css/goo.css b/src/content/css/goo.css index 950f87c..39bee99 100644 --- a/src/content/css/goo.css +++ b/src/content/css/goo.css @@ -1,422 +1,423 @@ @import url('base.css'); body { width: 840px; } #main { padding: 0; margin: 20px 0 30px 0; background-color: white; ...
simonwhitaker/goo-website
46e85c9a8255c6c6fb0e857445a37e7fd278a1bc
Adding installation instuctions
diff --git a/README.markdown b/README.markdown index c8e7bab..d2a8cfd 100644 --- a/README.markdown +++ b/README.markdown @@ -1,3 +1,25 @@ This is the code base for the Goo Software Ltd website ([www.goosoftware.co.uk](http://www.goosoftware.co.uk)). -It uses [Nanoc](http://nanoc.stoneship.org/) to build the static ...
simonwhitaker/goo-website
9f9f0436e69fbaba9c2ef4d25bfe107a87bdfca1
Move iBreastCheck to top of the tree, add note about NMA Award win
diff --git a/src/content/index.yaml b/src/content/index.yaml index 2bce255..9451acd 100644 --- a/src/content/index.yaml +++ b/src/content/index.yaml @@ -1,99 +1,100 @@ title: "Fantastic Apps for iPhone, iPad and iPod Touch" description: "Goo Software Ltd is an independent UK-based software house specialising in devel...
simonwhitaker/goo-website
1da8259eae6d0c0cd7b68fd821eb06381938be77
Remove references to Android
diff --git a/src/content/contact.rhtml b/src/content/contact.rhtml index 92c9afc..f90b8f8 100644 --- a/src/content/contact.rhtml +++ b/src/content/contact.rhtml @@ -1,50 +1,50 @@ <div id="content"> <h1> Contact Goo </h1> <p> - Need an iPhone, iPad or Android app? Think you might need one...
simonwhitaker/goo-website
2c8ab4f31b64c96c07211348a401f738760960e3
Tweaking the blog CSS
diff --git a/src/content/css/blog.css b/src/content/css/blog.css index afaf79b..e89e884 100644 --- a/src/content/css/blog.css +++ b/src/content/css/blog.css @@ -1,239 +1,251 @@ @import url('base.css'); body { background-color: #000; max-width: 1200px; } #header { border-bottom: 1px solid #444; }...
simonwhitaker/goo-website
770cfd2d80aa2c35de3e626858194c7af6e4f25b
Use blog CSS on blog index
diff --git a/src/Rules b/src/Rules index f59a169..ba43c40 100644 --- a/src/Rules +++ b/src/Rules @@ -1,61 +1,66 @@ #!/usr/bin/env ruby # A few helpful tips about the Rules file: # # * The order of rules is important: for each item, only the first matching # rule is applied. # # * Item identifiers start and e...
simonwhitaker/goo-website
0c06c864a5eed32300b8e52957a1bcd691a8bf09
Added update about Instruments interference
diff --git a/src/content/blog/0009-Xcode4-symbolication-problems.md b/src/content/blog/0009-Xcode4-symbolication-problems.md index 2117546..1a6b174 100644 --- a/src/content/blog/0009-Xcode4-symbolication-problems.md +++ b/src/content/blog/0009-Xcode4-symbolication-problems.md @@ -1,51 +1,55 @@ --- kind: article crea...