-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
270 lines (187 loc) · 10.5 KB
/
index.html
File metadata and controls
270 lines (187 loc) · 10.5 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
<!DOCTYPE html>
<html>
<head>
<title>IQDevs – Technology Excellence Redefined</title>
<meta charset="utf-8" />
<meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0'>
<meta name="description" content="Technology Excellence Redefined">
<meta property="og:description" content="Technology Excellence Redefined" />
<meta name="author" content="IQDevs" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="/style.css" />
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<link rel="alternate" type="application/rss+xml" title="IQDevs - Technology Excellence Redefined" href="/feed.xml" />
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="intro-header">
<div class="wrapper-masthead">
<div class="container">
<header class="masthead clearfix">
<div class="site-info">
<h1 class="site-name"><a href="/">IQDevs</a></h1>
<p class="site-description">Technology Excellence Redefined</p>
</div>
<nav>
<a href="/">Blog</a>
<a href="/about">About</a>
<a href="/projects">Projects</a>
</nav>
</header>
</div>
</div>
<div class="container">
<div class="space-small"></div>
<div class="centered">
<ul class="ch-grid">
<li>
<div class="ch-item ch-img-1">
<div class="ch-info-wrap">
<div class="ch-info">
<div class="ch-info-front ch-img-1"></div>
<div class="ch-info-back">
<h3>IQDevs</h3>
<p></br><a href="https://github.com/iqdevs">View on GitHub</a></p>
</div>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="space-medium"></div>
</div>
</div>
<div id="main" role="main" class="container">
<div class="posts">
<article class="post">
<h1><a href="/ZGPS-Achieving-Abstraction-with-Golang/">ZGPS - Achieving Abstraction with Golang</a></h1>
<small>
<a href="https://github.com/alkass">Fadi Hanna Al-Kass</a>
on
<time datetime="2020-05-30T05:00:00+00:00" itemprop="datePublished">
May 30, 2020
</time>
</small>
<div class="entry">
<p>One of the early design challenges we faced when designing the <code class="language-plaintext highlighter-rouge">DSP</code> (Device Service Provider) project is coming up with a plug-and-play architecture. <code class="language-plaintext highlighter-rouge">DSP</code>’s main responsibility is to read data from a specific tracking device, process and store the data, or send commands and process responses. Different devices come with different protocols, though they share common traits, like they all (all the ones we now support at least) are TCP based. Devices, when connected to <code class="language-plaintext highlighter-rouge">DSP</code>, are expected to be recognized so they’re handed to the proper protocol handler. Our silver bullet here is abstraction, but then we’re using Go, and Go doesn’t have native support for abstractions. So how do we solve this?</p>
</div>
<a href="/ZGPS-Achieving-Abstraction-with-Golang/" class="button button-primary">Read More</a>
</article>
<article class="post">
<h1><a href="/Generic-Types-in-Strongly-Typed-Languages/">Generic Types in Strongly Typed Languages</a></h1>
<small>
<a href="https://github.com/alexcorvi">Alex Corvi</a>
on
<time datetime="2017-11-14T05:00:00+00:00" itemprop="datePublished">
Nov 14, 2017
</time>
</small>
<div class="entry">
<p>Few days ago, I wrote <a href="https://github.com/alexcorvi/mongots">mongots</a>, an alternative API for <a href="https://www.mongodb.com/">MongoDB</a> to make it work better with <a href="https://www.typescriptlang.org/">TypeScript</a> (a strongly-typed language that compiles to JS) on the NodeJS environment.</p>
</div>
<a href="/Generic-Types-in-Strongly-Typed-Languages/" class="button button-primary">Read More</a>
</article>
<article class="post">
<h1><a href="/Constructors-and-Destructors-in-C/">Constructors and Destructors in C</a></h1>
<small>
<a href="https://github.com/alkass">Fadi Hanna Al-Kass</a>
on
<time datetime="2017-10-25T05:00:00+00:00" itemprop="datePublished">
Oct 25, 2017
</time>
</small>
<div class="entry">
<blockquote>
<p>Everything discussed here is a feature brought to you by the <a href="https://gcc.gnu.org/"><code class="language-plaintext highlighter-rouge">GCC</code></a> compiler. If you happen to be using a different compiler, I’m not sure all or any of this would apply given the fact that these features aren’t part of the <code class="language-plaintext highlighter-rouge">C</code> programming language per se.</p>
</blockquote>
</div>
<a href="/Constructors-and-Destructors-in-C/" class="button button-primary">Read More</a>
</article>
<article class="post">
<h1><a href="/Remote-Procedure-Calls-in-C/">Remote Procedure Calls in C</a></h1>
<small>
<a href="https://github.com/alkass">Fadi Hanna Al-Kass</a>
on
<time datetime="2017-10-22T05:00:00+00:00" itemprop="datePublished">
Oct 22, 2017
</time>
</small>
<div class="entry">
<p>I have recently put together a quick Remote Procedure Call (RPC) demo in C and checked it into <a href="https://github.com/Alkass/cRPC">my Github account</a>, then I realized I still have a couple of minutes left on my hands, so I decided to write a walk-through blog post.</p>
</div>
<a href="/Remote-Procedure-Calls-in-C/" class="button button-primary">Read More</a>
</article>
<article class="post">
<h1><a href="/Crafting-Code-1/">Crafting Code - Building Common Interfaces</a></h1>
<small>
<a href="https://github.com/alkass">Fadi Hanna Al-Kass</a>
on
<time datetime="2017-06-20T05:00:00+00:00" itemprop="datePublished">
Jun 20, 2017
</time>
</small>
<div class="entry">
<p>When writing libraries, APIs, and SDKs, the less stuff you ask your user to memorize the better it looks to you and feels to them. For instance, if you were to write a Math library that performs some arithmetic operations, you could write your library functions as so:</p>
</div>
<a href="/Crafting-Code-1/" class="button button-primary">Read More</a>
</article>
<article class="post">
<h1><a href="/Enum-and-Match-Systems-in-Rust/">Enum and Match Systems in Rust</a></h1>
<small>
<a href="https://github.com/alkass">Fadi Hanna Al-Kass</a>
on
<time datetime="2017-06-17T05:00:00+00:00" itemprop="datePublished">
Jun 17, 2017
</time>
</small>
<div class="entry">
<p>You’ve probably worked with <code class="language-plaintext highlighter-rouge">enums</code> before, but if you haven’t, they’re basically a way to have a selection out of a number of different options. A <code class="language-plaintext highlighter-rouge">Person</code> struct could contain a <code class="language-plaintext highlighter-rouge">gender</code> field that points to an enum of three options (<code class="language-plaintext highlighter-rouge">Male</code>, <code class="language-plaintext highlighter-rouge">Female</code>, and <code class="language-plaintext highlighter-rouge">Undisclosed</code>), i.e.:</p>
</div>
<a href="/Enum-and-Match-Systems-in-Rust/" class="button button-primary">Read More</a>
</article>
<article class="post">
<h1><a href="/My-Thoughts-on-TypeScript/">My Thoughts on TypeScript</a></h1>
<small>
<a href="https://github.com/alexcorvi">Alex Corvi</a>
on
<time datetime="2017-04-14T05:00:00+00:00" itemprop="datePublished">
Apr 14, 2017
</time>
</small>
<div class="entry">
<p>I was introduced to TypeScript when it first came with angular 2. However, I tried to avoid it as much as possible. This was actually the main reason of why I left angular in favor of Vue. “A new quirky front-end language is the last thing I would need,” I thought.</p>
</div>
<a href="/My-Thoughts-on-TypeScript/" class="button button-primary">Read More</a>
</article>
<article class="post">
<h1><a href="/Rust-for-High-Level-Programming-Language-Developers/">Rust for High-Level Programming Language Developers</a></h1>
<small>
<a href="https://github.com/alkass">Fadi Hanna Al-Kass</a>
on
<time datetime="2017-04-12T05:00:00+00:00" itemprop="datePublished">
Apr 12, 2017
</time>
</small>
<div class="entry">
<p>So you’ve been doing high-level programming all your life, and you’ve been eyeing Rust for some time now, and you’re not sure where to start (or how to start). Well, this walk-through-like post will guide you through some of the common tasks you preform in high-level languages like JavaScript, Python, or even C#.</p>
</div>
<a href="/Rust-for-High-Level-Programming-Language-Developers/" class="button button-primary">Read More</a>
</article>
</div>
</div>
<div class="wrapper-footer">
<div class="container">
<footer class="footer">
<div class="svg-icon">
<a href="https://github.com/iqdevs"><i class="icon-github icon-2x"></i></a>
</div>
</footer>
</div>
</div>
</body>
</html>