<?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: Austin</title>
    <description>The latest articles on DEV Community by Austin (@austin424).</description>
    <link>https://dev.to/austin424</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%2F1256141%2Ffa0683aa-10d0-41ea-b5e9-07da71b7bcf4.png</url>
      <title>DEV Community: Austin</title>
      <link>https://dev.to/austin424</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/austin424"/>
    <language>en</language>
    <item>
      <title>The Double-Edged Sword of AI in Education</title>
      <dc:creator>Austin</dc:creator>
      <pubDate>Fri, 29 Mar 2024 04:12:13 +0000</pubDate>
      <link>https://dev.to/austin424/the-double-edged-sword-of-ai-in-education-5241</link>
      <guid>https://dev.to/austin424/the-double-edged-sword-of-ai-in-education-5241</guid>
      <description>&lt;p&gt;In the ever-evolving landscape of education, Artificial Intelligence has emerged as a transformative force, promising to revolutionize the way we teach and learn. With its ability to personalize learning experiences, automate administrative tasks, and provide real time feedback, AI holds immense potential to enhance educational outcomes. However, as with any powerful tool, there exists a fine line between leveraging AI to its fullest potential and allowing it to overshadow essential aspects of learning. &lt;/p&gt;

&lt;p&gt;Despite its benefits, excessive reliance on AI in education can have detrimental effects on students' development of critical thinking and problem-solving skills. When AI systems provide instant answers and solutions, students may become dependent on technology to solve problems without fully engaging in the learning process. This dependency can stifle creativity and innovation, undermining the development of essential cognitive skills.&lt;/p&gt;

&lt;p&gt;The widespread adoption of AI in education also raises significant privacy and ethical considerations. AI systems collect vast amounts of data on students' behavior, preferences, and academic performance, raising concerns about data security, consent, and potential misuse of sensitive information. Moreover, the use of AI-powered surveillance tools in educational settings can infringe upon students' privacy rights and contribute to a culture of constant monitoring and surveillance.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>"Why don't quantum computers ever get lost? Because they always know their state!"</title>
      <dc:creator>Austin</dc:creator>
      <pubDate>Thu, 07 Mar 2024 19:32:05 +0000</pubDate>
      <link>https://dev.to/austin424/why-dont-quantum-computers-ever-get-lost-because-they-always-know-their-state-gce</link>
      <guid>https://dev.to/austin424/why-dont-quantum-computers-ever-get-lost-because-they-always-know-their-state-gce</guid>
      <description>&lt;p&gt;When broken down to it's most basic of operations, our everyday, run of the mill computing devices operate of a binary system. Binary meaning a set of two pairs, those to pairs are 0 and 1.&lt;/p&gt;

&lt;p&gt;0 equals 0, 1 equals 1. &lt;/p&gt;

&lt;p&gt;How do we make any number higher than 1?&lt;/p&gt;

&lt;p&gt;Well each set of 0 or 1 is considered a bit (i like to think of it as a &lt;em&gt;bit&lt;/em&gt; of something bigger) and we can pair them together. So 2 in binary weirdly is 10.&lt;/p&gt;

&lt;p&gt;To explain that i need to let you know that if we have 8 bits together we call that a byte (the puns write themselves).&lt;/p&gt;

&lt;p&gt;In a byte we can have all a minimum of 0|0|0|0|0|0|0|0 and a maximum of 1|1|1|1|1|1|1|1 but again that doesn't translate to 11,111,111.&lt;/p&gt;

&lt;p&gt;In the binary system, each bit represents an increasing power of 2, with the rightmost bit representing 2^0, the next representing 2^1, then 2^2, and so on. &lt;/p&gt;

&lt;p&gt;Another way to think about it would be 128|64|32|16|8|4|2|1 ; if there's anyone 1 in the binary that's the number it'll represent you simply add them together to find out what number is being shown. all 0's mean...well 0 and all 1's you add them so 255&lt;/p&gt;

&lt;p&gt;But let's try something not the absolute max or min, let's do: 0|1|0|1|0|0|0|1 we can translate that to mean 1 + 16 + 64 = 81. Another one? Sure! 0|1|0|0|1|0|1|1 let's add them up 1 + 2 + 8 + 64 = 77. &lt;/p&gt;

&lt;p&gt;Binary isn't only just for regular numbers, it can represent alphabets, decimals, fractions and even negative numbers. They still operate like a light switch so to speak; either one or off, no middle ground, no dimmer switch...but what if there was? &lt;/p&gt;

&lt;p&gt;Imagine for a second we have a cat in a box (i know super weird left turn we just made, but trust me), in that box we also have a vial of poison that's 100% guaranteed to kill the fluff ball, we also have a timer attached to the vial, and 50% of the time it'll break the vial and 50% of the time does nothing. We seal the box and we wait...we hear the timer go off. Is Whiskers dead (0), is he alive(1)? Could he be both?&lt;/p&gt;

&lt;p&gt;That thought experiment is know as Schrodinger's Cat paradox. &lt;/p&gt;

&lt;p&gt;An snippet from Wikipedia:&lt;/p&gt;

&lt;p&gt;"The EPR article highlighted the counterintuitive nature of quantum superpositions, in which a quantum system such as an atom or photon can exist as a combination of multiple states corresponding to different possible outcomes.&lt;/p&gt;

&lt;p&gt;The prevailing theory, called the Copenhagen interpretation, says that a quantum system remains in superposition until it interacts with, or is observed by, the external world. When this happens, the superposition collapses into one or another of the possible definite states."&lt;/p&gt;

&lt;p&gt;-&lt;a href="https://en.wikipedia.org/wiki/Schr%C3%B6dinger%27s_cat"&gt;https://en.wikipedia.org/wiki/Schr%C3%B6dinger%27s_cat&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You may be thinking how does this have any relation to binary and computing.&lt;/p&gt;

&lt;p&gt;Quantum Computers!!!!&lt;/p&gt;

&lt;p&gt;IBM is developing a computer that doesn't run of a bits like 0's and 1s. But it's quantum counterpart the Qubit. No longer being held down by a simple binary system of on's or off's but instead a superposition of both. Is it a 1 is it a 0? Yes!&lt;/p&gt;

&lt;p&gt;"No cat was hurt making this blog"&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Phase 2</title>
      <dc:creator>Austin</dc:creator>
      <pubDate>Thu, 15 Feb 2024 19:40:43 +0000</pubDate>
      <link>https://dev.to/austin424/phase-2-528n</link>
      <guid>https://dev.to/austin424/phase-2-528n</guid>
      <description>&lt;p&gt;Phase 2 is in the books...kinda waiting for grades to come in, I should be fine.&lt;/p&gt;

&lt;p&gt;React was the focus of our learning. In the the beginning it felt like everything we learn in the first phase got flipped on it's head.&lt;/p&gt;

&lt;p&gt;We first learned about components (what even is that?) turns out to be a really cool way to write my JSX (Reacts version of HTML). What started of as a complicated concept turned out to be my favorite part of the phase, writing one set of code for a header or footer and being able to reuse it and avoid retyping the same code over and over is such a time saver.&lt;/p&gt;

&lt;p&gt;Functions became easier to write for me as well; i struggled heard last phase to write them, they irked me to know end.&lt;/p&gt;

&lt;p&gt;Props was easy for me to get conceptually but not technically. I understood how they worked but for the life of me, passing a prop through components eluded me until recently when my cohort member Kirstyn (Hi Kirstyn, thanks for the help) helped me finish the code challenge that required it.&lt;/p&gt;

&lt;p&gt;State was a middle ground area, again i understand how it's suppose to be use and set up but i forget how to apply sometimes.&lt;/p&gt;

&lt;p&gt;Effect was fairly simple, we surround a fetch in it to be able to access an external source without causing re-renders or infinite loops.&lt;/p&gt;

&lt;p&gt;Forms i will need to continue to work on, getting it on the page is fine but in tandem with with a POST is still a struggle to me. I will however continue to practice React when we move on the phase 3 so i can keep up on the language and add more projects to my portfolio as well.&lt;/p&gt;

&lt;p&gt;Overall all I like react a lot and I'm glad to have learned it. Glad to have had Sakib as my instructor, hopefully i can keep the enthusiasm up in Phase 3.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Coding Journey WEEK 1</title>
      <dc:creator>Austin</dc:creator>
      <pubDate>Sat, 13 Jan 2024 23:23:25 +0000</pubDate>
      <link>https://dev.to/austin424/coding-journey-week-1-5bpa</link>
      <guid>https://dev.to/austin424/coding-journey-week-1-5bpa</guid>
      <description>&lt;p&gt;I've just started my Flatiron Journey instructed by Sakib and a apart of an amazing cohort.&lt;/p&gt;

&lt;p&gt;I came into the bootcamp with prior knowledge in HTML &amp;amp; CSS; my JavaScript knowledge was super limited only up to arrays and I hated them. The prep work for JS was daunting on my own DOM almost made me want to give up.&lt;/p&gt;

&lt;p&gt;By around day 2 or 3 (it's been a long week) Sakib has helped me take my understanding from barely existing to a decent grasp. When he informed me that a Node was what JS calls a  he blew my mind and made sense of what i learned during the prep work.&lt;/p&gt;

&lt;p&gt;Overall we've established our fundamentals: HTML, (spent around 10 seconds on css) and delved into a deeper understanding of JS. We now know how to manipulate the DOM and fill even a bareboned HTML file only using only JS's .querySelector and .append; we can even add readable text with .textContent.&lt;/p&gt;

&lt;p&gt;Most recently we learned about DB.json and how we can set up a local database, and use that DB to then manipulate the DOM with that information as well and we use GET and POST methods to achieve that.&lt;/p&gt;

&lt;p&gt;It's fun to see the stuff we're working on and then realizing how much we use it on a daily bases and don't even think about it. I've now been viewing everything I do online through the lenses of my new found knowledge.&lt;/p&gt;

&lt;p&gt;*This blog post is being created and added to a database and I understand how it works!!!&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
