<?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: Burnleydev1</title>
    <description>The latest articles on DEV Community by Burnleydev1 (@burnleydev).</description>
    <link>https://dev.to/burnleydev</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%2F628157%2F2e9a893d-56f7-439f-bf97-65ead455ab9e.jpeg</url>
      <title>DEV Community: Burnleydev1</title>
      <link>https://dev.to/burnleydev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/burnleydev"/>
    <language>en</language>
    <item>
      <title>Outreachy Mid-Point Progress</title>
      <dc:creator>Burnleydev1</dc:creator>
      <pubDate>Thu, 27 Jul 2023 22:33:31 +0000</pubDate>
      <link>https://dev.to/burnleydev/outreachy-mid-point-progress-ea5</link>
      <guid>https://dev.to/burnleydev/outreachy-mid-point-progress-ea5</guid>
      <description>&lt;p&gt;As an Outreachy intern working on the OCaml project, I have reached the mid-point of my internship, and it's been a challenging and rewarding experience so far. For those who may not be familiar, Outreachy is a program that provides internships for underrepresented groups in technology, including women, people of color, and members of the LGBTQ+ community.&lt;/p&gt;

&lt;p&gt;When I first applied for the program, I had no experience with open-source development and was nervous about my ability to contribute to such a high-profile project. However, with the support of my mentor PAUL-ELLIOT, the OCaml community, the Outreachy Community Administrators (Omotola, Sage, and Anna), and my co-interns, I have been able to make meaningful contributions to the project, improve my technical skills, and Interpersonal skills.&lt;/p&gt;

&lt;p&gt;My main project for the internship is to &lt;strong&gt;&lt;em&gt;Improve error reporting in existing ppxlib-based PPXs&lt;/em&gt;&lt;/strong&gt;, This was to be done by first enabling many errors to be reported by the editor, this is to be done by making the rewriting process to not stop once an exception is raised, but to catch that exception, recover from and move on to the next rewriter, by so doing, rewriters that were not supposed to raise an error are run and more information is displayed to the user. Then after that, to work on PPXs in the ecosystem to embed errors in the Parsetree(and reporting all these errors at the end of the compilation) instead of raising them.&lt;/p&gt;

&lt;p&gt;Below are the contributions made so far in this internship period:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;When a transformation raises, the last valid AST is used &lt;br&gt;
as input to the upcoming transformations. All errors are collected. At the end, the errors are appended, as extension nodes, at its beginning &lt;br&gt;
(&lt;a href="https://github.com/ocaml-ppx/ppxlib/pull/447"&gt;#447&lt;/a&gt;, @burnleydev1)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Embed errors in the AST instead of raising (&lt;a href="https://github.com/janestreet/ppx_fields_conv/pull/13/"&gt;#13&lt;/a&gt;, @burnleydev1) &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;NB: PPXLIB has a notion of transformations, that modifies(Rewrites) the AST, and are run one after the other in a particular order.&lt;/p&gt;

&lt;p&gt;Previously, when in the rewriting process(rewriting the AST), when a rewriter raises, the rewriting process stops in the middle of this process, canceling every other rewriter that has not yet been executed, converting this exception into an error and embedding it in the last valid AST.&lt;br&gt;
With these changes, instead of stopping the entire rewriting process when an exception is encountered, the raising rewriter is ignored, the exception is converted into an error, and added to a list of errors, the previous successful AST is used to continue the rewriting process. The rewriting process continues, at the end of the AST rewriting, the errors collected are appended at the beginning of the resulting AST.&lt;br&gt;
One of the biggest challenges I've faced so far is understanding the Syntax and workflow of the OCaml language. As someone who is new to open-source development, it can be overwhelming to navigate a large and complex codebase. However, by asking questions and seeking help from my mentor and the community, I have been able to gain a better understanding of the project and make progress on my tasks.&lt;/p&gt;

&lt;p&gt;Another challenge I've faced is dealing with the uncertainty and ambiguity that comes with working on an open-source project. In a traditional work setting, there are often clear expectations and deadlines, but in open-source development, things can be more fluid. This can be frustrating at times, but it has also taught me the importance of communication, flexibility, and patience.&lt;/p&gt;

&lt;p&gt;Despite these challenges, I have also had many positive experiences during my internship. One of the most rewarding aspects has been seeing my contributions merged and added as changes to the recent release, and to think that these will be used by others is really exciting to me and encourages me to work more.&lt;/p&gt;

&lt;p&gt;As I move into the second half of my internship, I am looking forward to continuing my work on PPXLIB and exploring other PPXs. I am also excited to continue learning and growing as a developer and open-source contributor. I would like to thank my mentor(Paul-Elliot), Sonja Heinze , my co-interns(Piziedust and Aryan Godara), the OCaml community, and the Outreachy program for giving me this opportunity and supporting me along the way.&lt;/p&gt;

&lt;p&gt;In conclusion, My mid-point experience has been a challenging but rewarding one. I have faced many obstacles, but with the support of my mentor, and the OCaml community, I have been able to make meaningful contributions to the project and improve my technical skills. I am excited to see what the next half of my internship holds and I am looking forward to continuing my work on PPXLIB and exploring other areas of the project.&lt;/p&gt;

</description>
      <category>outreachy</category>
      <category>opensource</category>
      <category>ocaml</category>
    </item>
    <item>
      <title>Outreachy Blog #1: Introduce Yourself</title>
      <dc:creator>Burnleydev1</dc:creator>
      <pubDate>Mon, 29 May 2023 12:17:40 +0000</pubDate>
      <link>https://dev.to/burnleydev/outreachy-blog-1-introduce-yourself-3794</link>
      <guid>https://dev.to/burnleydev/outreachy-blog-1-introduce-yourself-3794</guid>
      <description>&lt;p&gt;I'm Abongwa Bonalais, I studied Computer Engineering at the National Higher Polytechnic Institute at the University of Bamenda, I like coding, gaming, and listening to Rap.&lt;/p&gt;

&lt;p&gt;I did apply to Outreachy this year ( my 4th attempt ) as I’ve been rejected 3 times. I didn’t give up, I became more tenacious than ever before, And in this year's Outreachy May 2023 to August 2023 internship round, I got selected… Hurrayyyyy!!&lt;/p&gt;

&lt;p&gt;I’m Interning with OCaml on the project Improve error reporting in existing ppxlib-based PPXs my mentor for the project is Paul-Elliot.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Core Values
&lt;/h2&gt;

&lt;p&gt;I have many values that govern my life but I’ll pick up 3.&lt;/p&gt;

&lt;h3&gt;
  
  
  Determination
&lt;/h3&gt;

&lt;p&gt;I value Determination because, in recent years, I have realized that the first step to doing something successfully no matter how hard it is, is by first being determined and convicted that you can do it, with this will come a way. This concept has ruled most of my life consciously or unconsciously.&lt;/p&gt;

&lt;h3&gt;
  
  
  Self-respect
&lt;/h3&gt;

&lt;p&gt;I value self-respect because I believe that charity begins at home, If you do not respect yourself, people tend to look down on you almost automatically, so I think it is important to have self-respect, this also means respecting others' beliefs, boundaries, and ideologies.&lt;/p&gt;

&lt;h3&gt;
  
  
  Curiosity
&lt;/h3&gt;

&lt;p&gt;I am always ready to learn new things and like to know how something works, this value dropped recently because I got shy recently ( I really do not know why), but I am curious nevertheless.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Motivation for Outreachy
&lt;/h2&gt;

&lt;p&gt;The primary motivation for joining Outeachy is that I saw the opportunity to learn, grow and acquire the resources and knowledge I needed for my development career as a whole, for instance, my friend who is a past Outrachy intern, has been growing in the tech space since getting the internship, and I got inspired by her to give Outreachy a try, and I do not regret that decision. &lt;/p&gt;

&lt;h4&gt;
  
  
  What is Outreachy?
&lt;/h4&gt;

&lt;p&gt;Outreachy provides internships in open-source and open science. Outreachy offers internships to people subject to systemic bias and impacted by underrepresentation in the technology industry where they are living.&lt;/p&gt;

&lt;h4&gt;
  
  
  Why did I choose Outreachy?
&lt;/h4&gt;

&lt;p&gt;It’s Open source&lt;br&gt;
It’s diverse&lt;br&gt;
It’s paid&lt;br&gt;
It’s remote&lt;br&gt;
It has one of my values ( Freedom )&lt;br&gt;
I believe Outreachy is the platform that is going to skyrocket my career to the next level!&lt;/p&gt;

</description>
      <category>outreachy</category>
      <category>ocaml</category>
      <category>internship</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Hurray, I got selected for outreachy</title>
      <dc:creator>Burnleydev1</dc:creator>
      <pubDate>Tue, 16 May 2023 15:33:58 +0000</pubDate>
      <link>https://dev.to/burnleydev/hurray-i-got-selected-for-outreachy-13fg</link>
      <guid>https://dev.to/burnleydev/hurray-i-got-selected-for-outreachy-13fg</guid>
      <description></description>
    </item>
    <item>
      <title>Hello World</title>
      <dc:creator>Burnleydev1</dc:creator>
      <pubDate>Sun, 17 Oct 2021 03:48:37 +0000</pubDate>
      <link>https://dev.to/burnleydev/hi-chikarl-40d9</link>
      <guid>https://dev.to/burnleydev/hi-chikarl-40d9</guid>
      <description></description>
    </item>
  </channel>
</rss>
