layout | section_id | slides | works | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
default |
home |
|
|
{% include section-header.html title="Internet Research Laboratory" tagline="University of California, Los Angeles (UCLA)" color="#000000" class="big" %}
Welcome to the Internet Research Laboratory (IRL), part of the Computer Science department at the University of California, Los Angeles (UCLA). The IRL's research primarily focuses on Named Data Networking. Previously, our research covered fault tolerance in large scale distributed systems, Internet routing infrastructure, inter-domain routing (namely, BGP), and protocol design principles for large-scale, self-organizing systems. Our group has produced numerous publications over the years.
The Internet Research Laboratory is headed by Prof. Lixia Zhang.
{% include section-header.html title="Our recent projects" %}
{% for project in site.data.projects %}
{% if forloop.index > 3 %}
{% break %}
{% endif %}
<div class='large-4 medium-4 columns'>
<div class='mod modBlogPost'>
<div class='content'>
<p class='date'>{{project.year}}</p>
<h4><a href="{{project.url}}">{{project.name}}</a></h4>
<p>{{project.abs}}</p>
<!--
<div class="tags">
{% for cat in post.categories %}
<a href="#">{{cat | capitalize}}</a>
{% unless forloop.last %}
,
{% endunless %}
{% endfor %}
</div>
-->
</div>
</div>
</div>
{% endfor %}
{% include section-header.html title="Our recent posts" %}
Here are the most recent blog posts from the members of the IRL team.
{% for post in site.posts %}
{% if forloop.index > 3 %}
{% break %}
{% endif %}
<div class='large-4 medium-4 columns'>
<div class='mod modBlogPost'>
{% for image in post.images %}
{% unless forloop.first %}
{% break %}
{% endunless %}
<a href="{{post.url}}"><img alt="" src="{{image}}" /></a>
{% endfor %}
<div class='content'>
<p class='date'>{{post.date | date: "%B %d, %Y" }}</p>
<h4><a href="{{post.url}}">{{post.title}}</a></h4>
<p>{{post.excerpt}}</p>
<!--
<div class="tags">
{% for cat in post.categories %}
<a href="#">{{cat | capitalize}}</a>
{% unless forloop.last %}
,
{% endunless %}
{% endfor %}
</div>
-->
</div>
</div>
</div>
{% endfor %}