www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

index.html (2414B)


      1 <!DOCTYPE html>
      2 <html>
      3 	<head>
      4 		<title>banna - ramblings</title>
      5 		<meta name="viewport" content="width=device-width, initial-scale=1">
      6 		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
      7 		<link rel="stylesheet" href="/styles/style.css" />
      8 		<link rel="stylesheet" href="/styles/look.css" />
      9 		<link rel="stylesheet" href="/styles/codetheme.css" />
     10 		<script src="/scripts/highlight.js"></script>
     11 		<script>hljs.initHighlightingOnLoad();</script>
     12 	</head>
     13 
     14 	<body>
     15 		<div id="sidebar">
     16 			<div id="logo">
     17 				<a href="/">
     18 					<img src="/banna.png" alt="banna.tech" height="45" width="201" />
     19 				</a>
     20 			</div>
     21 			<div id="nav">
     22 				<a class="current" href="/post">blog</a>
     23 				<a class="" href="/things">things</a>
     24 				<a class="" href="/about">about</a>
     25 			</div>
     26 		</div>
     27 
     28 		<div id="wrapper">
     29 			<div id="content">
     30 <div class="post">
     31     <a href="/post/a_week_of_design" class="link"><h1 class="header">A Week of Design</h1></a>
     32     <span class="date">Posted on May, 04 2015</span>
     33     <div class="content">
     34 <p><img src="//i.banna.tech/130blog.jpg" style="box-shadow:0px 0px 3px #000000"></img></p>
     35 <p>The work on R3CI continues. In the previous week, my partner and I transformed an abstract idea of problems that R3CI would solve into a solidified set of problems. The next step is to take each component specified to fully design and lay out to be implemented. The first component on the list is the communication system and protocol.</p>
     36 <p>The week was spent pondering on implementation, efficiency, and most importantly, implementation. The protocol at its lowest level is handled by TCP, where the rest of the R3CI protocol is layered on top of. The data being transferred takes form as JSON, due to its simplicity and the wide availability of parser libraries for every mainstream language. This also implies that all data will be sent as text. This simplifies the system, although images must be encoded in base64 to be sent over the protocol. This will be interesting due to the conversion time, and how data may be inflated. Communication types will be dynamic, as the protocol will support database fetch/set, image identification, communication, and along with a system in place to add a custom subset to the protocol. In conclusion, the protocol should provide one necessary component to the R3CI system.   </p>
     37     </div>
     38 </div>
     39 
     40 
     41 			</div>
     42 		</div>
     43 	</body>
     44 </html>