-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
118 lines (86 loc) · 4.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Y Media Labs Engineering Blog</title>
<link rel="shortcut icon" href="/assets/images/favicon.ico">
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="alternate" type="application/rss+xml" title="My Blog" href="/rss.xml">
<link rel="stylesheet" href="/assets/css/highlight.css">
</head>
<body>
<nav class="main-nav">
<a class="cta" href="/feed.xml">Subscribe</a>
</nav>
<div class="profile">
<section id="wrapper">
<header id="header">
<img id="avatar" class="2x" src="/assets/images/avatar.png"/>
<h1>Y Media Labs</h1>
<h2>Engineering Blog</h2>
</header>
</section>
</div>
<section id="wrapper" class="home">
<ul id="post-list">
<li>
<a href="/blog/2016/02/03/state-restoration-in-ios-app/"><aside class="dates">Feb 03</aside></a>
<a href="/blog/2016/02/03/state-restoration-in-ios-app/">State Restoration in iOS App <h2></h2></a>
</li>
<li>
<a href="/blog/2015/11/11/karthvader-core-data-wrapper-component/"><aside class="dates">Nov 11</aside></a>
<a href="/blog/2015/11/11/karthvader-core-data-wrapper-component/">KarthVader - Core Data Wrapper in Swift <h2></h2></a>
</li>
<li>
<a href="/blog/2015/11/07/uilayoutguide-autolayout-helper-view/"><aside class="dates">Nov 07</aside></a>
<a href="/blog/2015/11/07/uilayoutguide-autolayout-helper-view/">UILayoutGuide: Auto Layout Helper View <h2></h2></a>
</li>
<li>
<a href="/blog/2015/07/03/communication-in-apple-watchos-2/"><aside class="dates">Jul 03</aside></a>
<a href="/blog/2015/07/03/communication-in-apple-watchos-2/">Communication between Apple Watch with new WatchOS-2 and iPhone <h2></h2></a>
</li>
<li>
<a href="/blog/2015/06/30/apple-watch-connectivity/"><aside class="dates">Jun 30</aside></a>
<a href="/blog/2015/06/30/apple-watch-connectivity/">How do we communicate between Watch and iPhone App ? <h2></h2></a>
</li>
<li>
<a href="/blog/2015/06/19/symbolicating-crashes-now-made-easy/"><aside class="dates">Jun 19</aside></a>
<a href="/blog/2015/06/19/symbolicating-crashes-now-made-easy/">Symbolicating crashes now made easy <h2></h2></a>
</li>
<li>
<a href="/blog/2015/05/25/possible-abuse-of-dispatch-after/"><aside class="dates">May 25</aside></a>
<a href="/blog/2015/05/25/possible-abuse-of-dispatch-after/">Possible abuse of dispatch_after <h2></h2></a>
</li>
<li>
<a href="/blog/2015/05/14/shaping-up-with-cashapelayer/"><aside class="dates">May 14</aside></a>
<a href="/blog/2015/05/14/shaping-up-with-cashapelayer/">Shaping up with CAShapeLayer <h2></h2></a>
</li>
<li>
<a href="/blog/2015/05/12/draw-a-bezier-curve-through-a-set-of-2d-points-in-ios/"><aside class="dates">May 12</aside></a>
<a href="/blog/2015/05/12/draw-a-bezier-curve-through-a-set-of-2d-points-in-ios/">Draw a Bezier Curve through a set of 2D Points in iOS <h2></h2></a>
</li>
<li>
<a href="/blog/2015/05/11/lets-roll/"><aside class="dates">May 11</aside></a>
<a href="/blog/2015/05/11/lets-roll/">Lets Roll! <h2></h2></a>
</li>
</ul>
<footer id="footer">
<p class="small">© Copyright 2016 Y Media Labs</p>
</footer>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="/assets/js/main.js"></script>
<script src="/assets/js/highlight.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', '', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>