<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Tiago Martins Peres 李大仁</title>
    <description>The latest articles on DEV Community by Tiago Martins Peres 李大仁 (@tiagoperes).</description>
    <link>https://dev.to/tiagoperes</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F198645%2Fa8862122-b8b3-4537-ba09-99caaccf1cf9.jpg</url>
      <title>DEV Community: Tiago Martins Peres 李大仁</title>
      <link>https://dev.to/tiagoperes</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tiagoperes"/>
    <language>en</language>
    <item>
      <title>Imagine a World Where Books Answer Your Questions: A Brief and Enthusiastic Introduction to LLMs like OpenAI GPT-4</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Thu, 06 Apr 2023 14:02:49 +0000</pubDate>
      <link>https://dev.to/tiagoperes/imagine-a-world-where-books-answer-your-questions-a-brief-and-enthusiastic-introduction-to-llms-like-openai-gpt-4-338h</link>
      <guid>https://dev.to/tiagoperes/imagine-a-world-where-books-answer-your-questions-a-brief-and-enthusiastic-introduction-to-llms-like-openai-gpt-4-338h</guid>
      <description>&lt;p&gt;Ever wondered what it would be like to ask questions directly to books? Large Language Models (LLMs) like OpenAI GPT-4 are making this a reality. In this concise guide, we delve into the captivating realm of LLMs and their potential to transform various industries. Learn how connecting LLMs to external data sources can unveil incredible possibilities and enhance our interaction with written knowledge. Let’s be inspired together!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://weblog.tiagoperes.eu/2023/04/06/imagine-a-world-where-books-answer-your-questions-a-brief-and-enthusiastic-introduction-to-llms-like-openai-gpt-4/"&gt;Read more about it here&lt;/a&gt;&lt;/p&gt;

</description>
      <category>openai</category>
      <category>langchain</category>
      <category>pinecone</category>
      <category>llm</category>
    </item>
    <item>
      <title>Quick JS Review before an Interview</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Fri, 23 Oct 2020 10:17:39 +0000</pubDate>
      <link>https://dev.to/tiagoperes/quick-js-review-before-an-interview-26f2</link>
      <guid>https://dev.to/tiagoperes/quick-js-review-before-an-interview-26f2</guid>
      <description>&lt;p&gt;Read more about it here: &lt;a href="https://weblog.tiagoperes.eu/quick-js-review-before-an-interview/"&gt;https://weblog.tiagoperes.eu/quick-js-review-before-an-interview/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>code</category>
      <category>programming</category>
      <category>interview</category>
    </item>
    <item>
      <title>AWS Cloud for Technical Professionals</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Mon, 12 Oct 2020 08:04:17 +0000</pubDate>
      <link>https://dev.to/tiagoperes/aws-cloud-for-technical-professionals-324k</link>
      <guid>https://dev.to/tiagoperes/aws-cloud-for-technical-professionals-324k</guid>
      <description>&lt;p&gt;This article consists of notes and excerpts I considered relevant from the AWS Cloud for Technical Professionals which consists of AWS training on how to build cloud-native solutions on the AWS platform covering security, access, computation, networking, storage, databases, monitoring and optimization.&lt;/p&gt;

&lt;p&gt;Thank you &lt;a href="https://www.linkedin.com/in/alanalayton/"&gt;Alana Layton&lt;/a&gt; for leading this cool project.&lt;/p&gt;

&lt;p&gt;Read more about it here: &lt;a href="https://weblog.tiagoperes.eu/aws-cloud-for-technical-professionals/"&gt;https://weblog.tiagoperes.eu/aws-cloud-for-technical-professionals/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cloud</category>
      <category>aws</category>
      <category>tech</category>
    </item>
    <item>
      <title>Automating Apps Deployment to Amazon Lightsail</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Fri, 02 Oct 2020 09:24:57 +0000</pubDate>
      <link>https://dev.to/tiagoperes/automating-apps-deployment-to-amazon-lightsail-4p4o</link>
      <guid>https://dev.to/tiagoperes/automating-apps-deployment-to-amazon-lightsail-4p4o</guid>
      <description>&lt;p&gt;In this article I’m going through &lt;a href="https://aws.amazon.com/blogs/compute/using-aws-codedeploy-and-aws-codepipeline-to-deploy-applications-to-amazon-lightsail/"&gt;this documentation page&lt;/a&gt; where Mike Coleman takes us on Using AWS CodeDeploy and AWS CodePipeline to Deploy Applications to Amazon Lightsail. It’s basically a guide of the process of setting up a deployment pipeline. In it, we’ll start by creating a service role for CodeDeploy, an &lt;a href="https://aws.amazon.com/s3/"&gt;Amazon S3&lt;/a&gt; bucket, and an &lt;a href="https://aws.amazon.com/iam/"&gt;IAM user&lt;/a&gt;. After deploying these services, we’ll create a Lightsail instance. In addition to that, we will install and configure the CodeDeploy agent, as well as registering the instance with CodeDeploy. Finally, we’ll create an application in CodeDeploy, and configure CodePipeline to kick off a new deployment whenever we push changes to GitHub.&lt;/p&gt;

&lt;p&gt;Read more about it here: &lt;a href="https://weblog.tiagoperes.eu/automating-apps-deployment-to-amazon-lightsail/"&gt;https://weblog.tiagoperes.eu/automating-apps-deployment-to-amazon-lightsail/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>apps</category>
      <category>deployment</category>
      <category>devops</category>
    </item>
    <item>
      <title>Modern JavaScript Essentials</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Thu, 01 Oct 2020 18:04:54 +0000</pubDate>
      <link>https://dev.to/tiagoperes/modern-javascript-essentials-10o2</link>
      <guid>https://dev.to/tiagoperes/modern-javascript-essentials-10o2</guid>
      <description>&lt;p&gt;This article consists of notes taken in a practical introduction to the native modern JavaScript language by &lt;a href="https://www.linkedin.com/in/samerbuna/"&gt;Samer Buna&lt;/a&gt;. This introduction covered topics such as objects, functions, scopes, promises, modules, and APIs.&lt;/p&gt;

&lt;p&gt;Read more about it here: &lt;a href="https://weblog.tiagoperes.eu/modern-javascript-essentials/"&gt;https://weblog.tiagoperes.eu/modern-javascript-essentials/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>javascript</category>
      <category>programming</category>
      <category>code</category>
    </item>
    <item>
      <title>Production ready Django App in Amazon Lighsail</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Tue, 29 Sep 2020 19:01:29 +0000</pubDate>
      <link>https://dev.to/tiagoperes/production-ready-django-app-in-amazon-lighsail-4b8f</link>
      <guid>https://dev.to/tiagoperes/production-ready-django-app-in-amazon-lighsail-4b8f</guid>
      <description>&lt;p&gt;This article is based in &lt;a href="https://aws.amazon.com/getting-started/hands-on/deploy-python-application/"&gt;this documentation page&lt;/a&gt; and &lt;a href="https://youtu.be/6p8tEIqvGoo"&gt;this video&lt;/a&gt; where Mike Coleman takes us how to deploy a Django application on Amazon Lightsail. It was also considered two articles from Bitnami (&lt;a href="https://docs.bitnami.com/aws/infrastructure/django/get-started/get-started/"&gt;Getting started with Django&lt;/a&gt;, and &lt;a href="https://docs.bitnami.com/aws/infrastructure/django/get-started/deploy-django-project/"&gt;Deploy a Django project&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Read more about it here: &lt;a href="https://weblog.tiagoperes.eu/production-ready-django-app-in-amazon-lighsail/"&gt;https://weblog.tiagoperes.eu/production-ready-django-app-in-amazon-lighsail/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cloudcomputing</category>
      <category>aws</category>
      <category>deployment</category>
      <category>apps</category>
    </item>
    <item>
      <title>Notes for Containers on AWS (1/10)</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Tue, 22 Sep 2020 09:59:04 +0000</pubDate>
      <link>https://dev.to/tiagoperes/notes-for-containers-on-aws-1-10-4h65</link>
      <guid>https://dev.to/tiagoperes/notes-for-containers-on-aws-1-10-4h65</guid>
      <description>&lt;p&gt;This article consists of the initial notes on deploying, managing and scaling containarized applications into AWS container infrastructure using Docker on Amazon EC2, Amazon Elastic Container Service (ECS), and AWS Elastic Kubernetes Service (EKS) taken while reading the book &lt;a href="https://g.co/kgs/j6KYsT"&gt;Deploy Containers on AWS: With EC2, ECS, and EKS&lt;/a&gt; from &lt;a href="https://www.linkedin.com/in/shimon-ifrah-1905893a/"&gt;Shimon Ifrah&lt;/a&gt;. I do want to do nine more articles any time in the future covering the notes in following sections of the book:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Storing, Managing, and Deploying Docker Container Images with Amazon ECR&lt;/li&gt;
&lt;li&gt;Deploying Containerized Applications with Amazon ECS&lt;/li&gt;
&lt;li&gt;Deploy a Containerized Application with Amazon EKS&lt;/li&gt;
&lt;li&gt;Installing a Docker Host on an Amazon EC2 Instance&lt;/li&gt;
&lt;li&gt;Securing Your Containerized Environment&lt;/li&gt;
&lt;li&gt;Scaling the AWS EKS, ECS, and ECR Containerized Environments&lt;/li&gt;
&lt;li&gt;Monitoring Your Containerized Environment&lt;/li&gt;
&lt;li&gt;Backing Up and Restoring Your Containers and Hosts on Amazon AWS&lt;/li&gt;
&lt;li&gt;Troubleshooting Amazon AWS Containerized Solutions&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://weblog.tiagoperes.eu/notes-for-containers-on-aws-1-10/"&gt;Read it here&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>containers</category>
      <category>softwareengineering</category>
    </item>
    <item>
      <title>Notes on Angular development (1/4)</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Mon, 07 Sep 2020 17:23:40 +0000</pubDate>
      <link>https://dev.to/tiagoperes/notes-on-angular-development-1-4-51op</link>
      <guid>https://dev.to/tiagoperes/notes-on-angular-development-1-4-51op</guid>
      <description>&lt;p&gt;This article consists of notes on Angular Basics, Debugging, Components, Data Binding, Directives, Services, Dependency Injection and Routing taken while doing the course Angular – The Complete Guide (2020 Edition) from Maximilian Schwarzmüller. I do want to do at least three more articles any time in the future covering the following respective aspects&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Observables, Forms, Pipes, HTTP Requests and Authentication.&lt;/li&gt;
&lt;li&gt;Dynamic Components, Angular Modules, Deployment, NgRX and Angular Universal.&lt;/li&gt;
&lt;li&gt;Angular Animations, Offline Capabilities, Unit Testing and Typescript.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Read it here - &lt;a href="https://weblog.tiagoperes.eu/notes-on-angular-development-1-4/"&gt;https://weblog.tiagoperes.eu/notes-on-angular-development-1-4/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>web</category>
      <category>programming</category>
      <category>angular</category>
      <category>frontend</category>
    </item>
    <item>
      <title>Enterprise Architecting - The Workforce</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Fri, 24 Jul 2020 10:14:42 +0000</pubDate>
      <link>https://dev.to/tiagoperes/enterprise-architecting-the-workforce-875</link>
      <guid>https://dev.to/tiagoperes/enterprise-architecting-the-workforce-875</guid>
      <description>&lt;p&gt;One of my favourite ways to visualize the relationship between workforce and enterprise. Very handy, for instances, to visualise how one person can improve own value and express that in a way that's understandable and structured.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--h3uYrDPl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/i/owp9k9955x77qvgbgu2g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--h3uYrDPl--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/i/owp9k9955x77qvgbgu2g.png" alt="Alt Text" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;By Marc Gewertz&lt;/p&gt;

&lt;p&gt;#entarch #ea #work&lt;/p&gt;

</description>
      <category>ea</category>
      <category>enterprisearchitecture</category>
      <category>entarch</category>
      <category>business</category>
    </item>
    <item>
      <title>iLRN 2020 VR Conference Production Design</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Sun, 19 Jul 2020 18:16:14 +0000</pubDate>
      <link>https://dev.to/tiagoperes/ilrn-2020-vr-conference-production-design-20on</link>
      <guid>https://dev.to/tiagoperes/ilrn-2020-vr-conference-production-design-20on</guid>
      <description>&lt;p&gt;Remember that conference where there were respected speakers from immersive learning research and industry, vetted scientific and practitioner research presented in the flipped model, guided adventures as field trips...and hosted in at least 3 virtual platforms (VirBELA FrameVR AltspaceVR)? &lt;br&gt;
We do! Heather and Tiago eagerly put our hands to the work of making the dreams of ilRN 2020 become a reality. Here is a peek behind the scenes on the design of this amazing conference, and some of the decisions and details that made iLRN 2020 happen. &lt;/p&gt;

&lt;p&gt;Written together with Heather Dodds.&lt;/p&gt;

&lt;p&gt;Read more about it here - &lt;a href="https://www.linkedin.com/pulse/ilrn-2020-vr-conference-production-design-tiago-martins-peres-%E6%9D%8E%E5%A4%A7%E4%BB%81"&gt;https://www.linkedin.com/pulse/ilrn-2020-vr-conference-production-design-tiago-martins-peres-%E6%9D%8E%E5%A4%A7%E4%BB%81&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;#design #productiondesign #econference #ilrn #ilrn2020 #virtualworld #vr #immersion #interaction #2020EdInVR #v2ec #lavalvirtual2020 #changemapping #expo #ea #virbela #asvr #framevr #mozillahubs #engagevr #discord #sched #youtube #twitch #zoom #tech #accessibility #engagement #remotelearning #code #community #trello #virtualconferences #edtech #education #business #virtualreality #VR #XR #AR #MR #EasyChair #timezones #serendipity &lt;/p&gt;

</description>
      <category>design</category>
      <category>productiondesign</category>
      <category>econference</category>
      <category>ilrn</category>
    </item>
    <item>
      <title>A Taxonomy of VR Platforms</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Mon, 29 Jun 2020 16:23:05 +0000</pubDate>
      <link>https://dev.to/tiagoperes/a-taxonomy-of-vr-platforms-bfh</link>
      <guid>https://dev.to/tiagoperes/a-taxonomy-of-vr-platforms-bfh</guid>
      <description>&lt;p&gt;Genesis first, then classification; this is the design pattern for new productions. After seeing current efforts, we realize that writers are struggling to create a virtual reality platform taxonomy and are not reaching a satisfying conclusion. Thus, we present a taxonomy that suits our own priorities of accessibility, immersion, and functionality.&lt;br&gt;
Plus it is in 3D.&lt;/p&gt;

&lt;p&gt;And includes Special Quadrants.&lt;/p&gt;

&lt;p&gt;Because we're cool that way.&lt;/p&gt;

&lt;p&gt;Written together with Heather Dodds&lt;/p&gt;

&lt;p&gt;#taxonomy #accessibility #immersion #functionality #virtualreality #VR #classification #AltspaceVR #MozillaHubs #FrameVR #SomniumSpace #ENGAGE #rumii #VirBELA #RecRoom #iSeeVC #Sansar #NeosVR #JanusXR #VESTAJanusXR #Anyland #cryptovoxels #sinespace #universaldesign&lt;/p&gt;

&lt;p&gt;Read more about it here - &lt;a href="https://www.linkedin.com/pulse/taxonomy-vr-platforms-tiago-martins-peres-%25E6%259D%258E%25E5%25A4%25A7%25E4%25BB%2581"&gt;https://www.linkedin.com/pulse/taxonomy-vr-platforms-tiago-martins-peres-%25E6%259D%258E%25E5%25A4%25A7%25E4%25BB%2581&lt;/a&gt;&lt;/p&gt;

</description>
      <category>taxonomy</category>
      <category>virtualreality</category>
      <category>design</category>
    </item>
    <item>
      <title>Present your work in iLRN 2020 Doc Colloquium</title>
      <dc:creator>Tiago Martins Peres 李大仁</dc:creator>
      <pubDate>Thu, 11 Jun 2020 11:17:15 +0000</pubDate>
      <link>https://dev.to/tiagoperes/present-your-work-in-ilrn-2020-doc-colloquium-22kc</link>
      <guid>https://dev.to/tiagoperes/present-your-work-in-ilrn-2020-doc-colloquium-22kc</guid>
      <description>&lt;p&gt;Hi all&lt;/p&gt;

&lt;p&gt;I wonder if there is someone in here doing a PhD in something related to immersive environments / XR / VR / AR, or that knows someone (that knows someone) that matches that criteria.&lt;/p&gt;

&lt;p&gt;This year the conference organized by Immersive Learning Research Network will take place online and participants are sought to present their work at the Doc Colloquium.&lt;/p&gt;

&lt;p&gt;With this you (or the person you mention) will have an opportunity to meet people who share the same interest, gain visibility in the work and receive feedback from other academics.&lt;/p&gt;

&lt;p&gt;Get in touch with me if you are interested, want to refer someone or want to know more information.&lt;/p&gt;

&lt;p&gt;#vr #xr #immersion #phd&lt;/p&gt;

&lt;p&gt;Read more about it here - &lt;a href="https://immersivelrn.org/ilrn2020/dc/"&gt;https://immersivelrn.org/ilrn2020/dc/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>vr</category>
      <category>xr</category>
      <category>immersion</category>
      <category>phd</category>
    </item>
  </channel>
</rss>
