-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ccf02a
commit 8fec130
Showing
32 changed files
with
513 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<br> | ||
<hr> | ||
<br> | ||
|
||
If you found this useful, please cite this as: | ||
|
||
{% capture citation_quote -%} | ||
> {{ site.last_name }}, {{ site.first_name }}{% if site.middle_name %} {{ site.middle_name }}{% endif %} ({{ page.date | date: "%b %Y" }}). {{ page.title }}. {% if site.title != 'blank' %}{{ site.title }}. {% endif %}{{ site.url }}. | ||
{%- endcapture %} | ||
{{ citation_quote | markdownify }} | ||
|
||
<p>or as a BibTeX entry:</p> | ||
|
||
{% capture citation_code -%} | ||
```bibtex | ||
@article{ {{- site.last_name | downcase }}{{ page.date | date: "%Y" }}{{ page.title | slugify }}, | ||
title = { {{- page.title -}} }, | ||
author = { {{- site.last_name }}, {{ site.first_name }}{% if site.middle_name %} {{ site.middle_name }}{% endif -%}}, | ||
{%- if site.title != 'blank' %}journal = { {{- site.title -}} },{% endif %} | ||
year = { {{- page.date | date: "%Y" -}} }, | ||
month = { {{- page.date | date: "%b" -}} }, | ||
url = { {{- site.url }}{{ page.url -}} } | ||
} | ||
``` | ||
{%- endcapture %} | ||
{{ citation_code | markdownify }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!-- Pagination links --> | ||
{% if paginator.total_pages > 1 %} | ||
<div class="pagination"> | ||
{% if paginator.previous_page %} | ||
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}">« Prev</a> | ||
{% else %} | ||
<span>« Prev</span> | ||
{% endif %} | ||
|
||
{% for page in (1..paginator.total_pages) %} | ||
{% if page == paginator.page %} | ||
<span class="active">{{ page }}</span> | ||
{% elsif page == 1 %} | ||
<a href="{{ '/blog/index.html' | prepend: site.baseurl | replace: '//', '/' }}">{{ page }}</a> | ||
{% else %} | ||
<a href="{{ site.paginate_path | prepend: site.baseurl | replace: '//', '/' | replace: ':num', page }}">{{ page }}</a> | ||
{% endif %} | ||
{% endfor %} | ||
|
||
{% if paginator.next_page %} | ||
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}">Next »</a> | ||
{% else %} | ||
<span>Next »</span> | ||
{% endif %} | ||
</div> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
|
||
{% assign year = page.date | date: '%Y' %} | ||
{% assign tags = page.tags | join: '' %} | ||
{% assign categories = page.categories | join: '' %} | ||
|
||
{% if page._styles %} | ||
<!-- Page/Post style --> | ||
<style type="text/css"> | ||
{{ page._styles }} | ||
</style> | ||
{% endif %} | ||
|
||
{% assign url_beginning = page.url | slice: 0, 6 %} | ||
|
||
<div class="post"> | ||
<header class="post-header"> | ||
<h1 class="post-title">{{ page.title }}</h1> | ||
<p class="post-meta"> | ||
Created in {{ page.date | date: '%B %d, %Y' }} | ||
{% if page.author %}by {{ page.author }}{% endif %} | ||
{% if page.last_updated %}, last updated in {{ page.last_updated | date: '%B %d, %Y' }}{% endif %} | ||
{% if page.meta %}• {{ page.meta }}{% endif %} | ||
</p> | ||
<p class="post-tags"> | ||
{% if url_beginning == '/blog/' %} | ||
<a href="{{ year | prepend: '/blog/' | prepend: site.baseurl}}"> <i class="fa-solid fa-calendar fa-sm"></i> {{ year }} </a> | ||
{% else %} | ||
<i class="fa-solid fa-calendar fa-sm"></i> {{ year }} | ||
{% endif %} | ||
{% if tags != '' %} | ||
· | ||
{% for tag in page.tags %} | ||
{% if url_beginning == '/blog/' %} | ||
<a href="{{ tag | slugify | prepend: '/blog/tag/' | prepend: site.baseurl}}"> <i class="fa-solid fa-hashtag fa-sm"></i> {{ tag }}</a> | ||
{% else %} | ||
<i class="fa-solid fa-hashtag fa-sm"></i> {{ tag }} | ||
{% endif %} | ||
{% unless forloop.last %} | ||
| ||
{% endunless %} | ||
{% endfor %} | ||
{% endif %} | ||
|
||
{% if categories != '' %} | ||
· | ||
{% for category in page.categories %} | ||
{% if url_beginning == '/blog/' %} | ||
<a href="{{ category | slugify | prepend: '/blog/category/' | prepend: site.baseurl}}"> | ||
<i class="fa-solid fa-tag fa-sm"></i> {{ category -}} | ||
</a> | ||
{% else %} | ||
<i class="fa-solid fa-tag fa-sm"></i> {{ category }} | ||
{% endif %} | ||
{% unless forloop.last %} | ||
| ||
{% endunless %} | ||
{% endfor %} | ||
{% endif %} | ||
</p> | ||
</header> | ||
|
||
<article class="post-content"> | ||
|
||
<div id="markdown-content"> | ||
{{ content }} | ||
</div> | ||
</article> | ||
|
||
{% if page.citation %} | ||
{% include citation.liquid %} | ||
{% endif %} | ||
|
||
|
||
{% if site.related_blog_posts.enabled %} | ||
{% if page.related_posts == null or page.related_posts %} | ||
{% include related_posts.liquid %} | ||
{% endif %} | ||
{% endif %} | ||
|
||
{% if site.disqus_shortname and page.disqus_comments %} | ||
{% include disqus.liquid %} | ||
{% endif %} | ||
{% if site.giscus and page.giscus_comments %} | ||
{% include giscus.liquid %} | ||
{% endif %} | ||
</div> | ||
|
||
{% if page.previous_in_category %} | ||
<a href="{{ page.previous_in_category.url }}">{{ page.previous_in_category.title }}</a> | ||
{% endif %} | ||
|
||
{% if page.next_in_category %} | ||
<a href="{{ page.next_in_category.url }}">{{ page.next_in_category.title }}</a> | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
layout: post | ||
title: (Here) We are Y! | ||
date: 2024-08-01 16:00:00 | ||
description: Hello World! | ||
tags: welcome introduction | ||
categories: news | ||
--- | ||
|
||
Imagine a virtual world where you can simulate and analyze the intricate dynamics of social media platforms. Picture a digital space that mimics real-life interactions, allowing researchers to experiment and learn without the constraints and unpredictability of the real world. Welcome to the era of digital twins—specifically, a groundbreaking project called Y. | ||
|
||
Y is a digital twin of an Online Social Media platform that takes advantage of cutting-edge artificial intelligence, particularly large language models (LLMs), to create interacting agents that mimic real user behavior. | ||
|
||
Think of Y as a sophisticated mirror of social media, where every like, share, and tweet can be explored in a controlled environment. | ||
|
||
##### What is a "Digital Twin"? | ||
|
||
Digital twins are virtual replicas of physical systems, allowing for detailed analysis and experimentation. | ||
|
||
<img src="../assets/images/dt.jpg" style="width: 700px;"> | ||
|
||
In the realm of social media, digital twins like Y open up new possibilities for understanding complex online interactions. | ||
By providing a safe space to explore how users interact, share information, and influence one another, Y offers researchers a unique opportunity to uncover the hidden dynamics that drive our digital lives. | ||
|
||
##### Harnessing the Power of LLMs | ||
|
||
At the heart of Y are large language models, the same technology that powers advanced AI systems like ChatGPT. | ||
|
||
These models allow Y to generate realistic text content and predict user responses, making the virtual interactions within Y remarkably lifelike. | ||
By simulating how users might engage with content, Y provides insights into user behavior, the spread of information, and the potential impact of different platform policies. | ||
|
||
##### Why It Matters? | ||
|
||
The implications of Y's capabilities are vast. | ||
Researchers can use Y to study user engagement patterns, understand how misinformation spreads, and even test new platform features before they are rolled out to the public. | ||
|
||
Imagine being able to predict the next viral trend or identify the most influential users on a platform—all without risking real-world consequences. | ||
|
||
|
||
##### Shaping the Future of Social Media Research | ||
|
||
As we continue to navigate the complexities of our digital world, tools like Y are crucial in helping us understand and shape the future of online interactions. | ||
|
||
By providing a window into the inner workings of social media, digital twins offer valuable insights that can guide the development of more user-friendly, ethical, and effective platforms. | ||
|
||
|
||
Y represents a new frontier in social media research, offering a powerful tool for exploring the intricate dynamics of online interactions. | ||
|
||
*Stay with us as we explore the world of Y and uncover the fascinating insights it has to offer.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
# Feel free to add content and custom Front Matter to this file. | ||
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults | ||
|
||
layout: home | ||
title: "Blog" | ||
subtitle: "News from the agents" | ||
show_sidetoc: true | ||
header_type: hero #base, post, hero,image, splash | ||
header_img: assets/images/blog.jpg | ||
header_title: "Blog" | ||
vega: true | ||
--- | ||
|
||
|
||
|
||
{% for post in paginator.posts %} | ||
<h1>{{ post.title }}</h1> | ||
<p class="author"> | ||
<span class="date">{{ post.date }}</span> | ||
</p> | ||
<div class="content"> | ||
{{ post.content }} | ||
</div> | ||
{% endfor %} | ||
|
||
<!-- Pagination links --> | ||
<div class="pagination" style="display: block; text-align: center"> | ||
{% if paginator.previous_page %} | ||
<a href="{{ paginator.previous_page_path }}" class="previous"> | ||
Previous | ||
</a> | ||
{% else %} | ||
<span class="previous">Previous</span> | ||
{% endif %} | ||
<!-- <span class="page_number "> | ||
Page: {{ paginator.page }} of {{ paginator.total_pages }} | ||
</span> --> | ||
{% if paginator.next_page %} | ||
<a href="{{ paginator.next_page_path }}" class="next">Next</a> | ||
{% else %} | ||
<span class="next ">Next</span> | ||
{% endif %} | ||
</div> |
Oops, something went wrong.