<?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: Stephanie Okolie</title>
    <description>The latest articles on DEV Community by Stephanie Okolie (@chinemereem).</description>
    <link>https://dev.to/chinemereem</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%2F639845%2F9fc62f1c-6e9e-4e95-9510-d01b2a55cdad.jpeg</url>
      <title>DEV Community: Stephanie Okolie</title>
      <link>https://dev.to/chinemereem</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/chinemereem"/>
    <language>en</language>
    <item>
      <title>How I made my CSS Remote Workspace with The Little Human</title>
      <dc:creator>Stephanie Okolie</dc:creator>
      <pubDate>Wed, 22 Sep 2021 22:35:04 +0000</pubDate>
      <link>https://dev.to/chinemereem/how-i-made-my-css-remote-workspace-with-the-little-human-5f47</link>
      <guid>https://dev.to/chinemereem/how-i-made-my-css-remote-workspace-with-the-little-human-5f47</guid>
      <description>&lt;p&gt;Since I started learning software development, I have cloned sites like &lt;a href="https://github.com/Chinemereem/twitterclone"&gt;Twitter&lt;/a&gt;, &lt;a href="https://github.com/Chinemereem/email-clone"&gt;Email&lt;/a&gt;, and &lt;a href="https://codepen.io/stephanieokolie"&gt;others&lt;/a&gt;, but my biggest challenge was making my own design with CSS and HTML. First, I thought about designing a human look-alike with CSS.&lt;br&gt;
 &lt;br&gt;
I had been trying to do this for a long time. My first trial ended in a disaster as I tried to create a head shape that looked far from what I had imagined. &lt;br&gt;
 &lt;br&gt;
After so many trials that did not work, I decided to pause until one day, as I sat in front of my computer, a tweet popped up on my screen; someone I was following had designed a project with CSS that was so good.&lt;br&gt;
 &lt;br&gt;
After the tweet, I said to myself, 'no, if this person can make a design like this, you bet I can too.' I started thinking about circles. And after that, I thought about more circles until further thoughts started flowing in my head as ideas.&lt;br&gt;
 &lt;br&gt;
Then, I had an epiphany: the human head is a circle-like shape, some are diamond and some are oval. If I can create a circle with CSS, I can achieve my goal the same way. &lt;/p&gt;

&lt;p&gt;I immediately logged into chrome and Googled How To Make CSS Shapes. The results brought many answers to my screen. &lt;br&gt;
 &lt;br&gt;
One was from w3schools.com, while the other was from CSS Tricks. After binge-learning on these sites, I achieved a head shape with eyes and other attributes that form the head.&lt;br&gt;
 &lt;br&gt;
The eyes shape was achieved using an oval shape with a much smaller width and height. Then I browsed for human eye colour in hex code; many colour options came up as usual, and I selected the ones I wanted to use for my code.&lt;br&gt;
 &lt;br&gt;
Best to know that Instead of creating too many divs for one object like for the eyes, you know in the eyes, we have the white part, the brown part, and the black part. So instead of creating three divs for these three elements, I made one div for them. Using before and after for that div as shown below.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.eyes{
Add preferred styling here
}

.eyes:before{
Add preferred styling here
content: "";
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Without &lt;code&gt;this content:" "&lt;/code&gt;, these styles will not be added to the output of your code. Always remember this.&lt;/p&gt;

&lt;p&gt;You can also use &lt;code&gt;z-index&lt;/code&gt;. This &lt;code&gt;z-index&lt;/code&gt; helps to show your style below or above another style.&lt;br&gt;
 &lt;br&gt;
Like this &lt;code&gt;:before&lt;/code&gt;, You can also use &lt;code&gt;:after&lt;/code&gt; the same way as &lt;code&gt;.eye:before {&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
 &lt;br&gt;
The hair of my human was made using separate &lt;code&gt;:before&lt;/code&gt; and &lt;code&gt;:after&lt;/code&gt; &lt;code&gt;divs&lt;/code&gt; for each fringe. Both &lt;code&gt;height&lt;/code&gt;, &lt;code&gt;width&lt;/code&gt;, &lt;code&gt;border-radius&lt;/code&gt; and &lt;code&gt;background colour&lt;/code&gt; were also used as below:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.full-fringe{
position: absolute;
top: 30px;
left: 605px;
margin-left: 94px;
width: 150px;
height: 150px;
border-top: #2e1103 solid 20px;
border-radius: 24px 50px 0px 0px;
transform: rotate(-90deg);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;I aligned each object by positioning them.&lt;/p&gt;

&lt;p&gt;I used &lt;code&gt;relative&lt;/code&gt; positioning for the parent div, and I positioned the child div with &lt;code&gt;absolute&lt;/code&gt; positioning. Then I adjusted the &lt;code&gt;top&lt;/code&gt;, &lt;code&gt;left&lt;/code&gt; or &lt;code&gt;right&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;See below:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;position: relative,
top: 10px or -10,
Left: 10px or -10.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt; &lt;br&gt;
To get the perfect shape to the taste of your liking, I used transform property. To skew or to rotate the object in different degrees for a certain style type.&lt;/p&gt;

&lt;p&gt;Like this: &lt;code&gt;transform: (rotate 20 deg)&lt;/code&gt; or (-20deg, whichever one you like)&lt;br&gt;
 &lt;br&gt;
I gave the neck a background colour that is the same as the head, hands, and fingers. The pants and shoes all have a different colour.&lt;/p&gt;

&lt;p&gt;And after everything, may I introduce you to &lt;a href="https://codepen.io/stephanieokolie/full/OJmyWxW"&gt;my Remote Workspace with one of my favourite humans&lt;/a&gt;?&lt;br&gt;
 &lt;br&gt;
I would like to mention here that I make Google my friend. I have learnt to never dawdle when I'm stuck but to Google. Someone like me must have had a similar problem and written about it, just as I am sharing my experience with you. Don't call it quits, rather ransack the internet and make use of the resources on there.&lt;br&gt;
 &lt;br&gt;
And a final one: when I'm frustrated with my code, I try to channel my anger to make cool things I never knew I could do, just like this article I'm working on or when I made my first clone. I remembered how mad I was, but instead of throwing shits and stuff, I channelled them into my code and made something really nice out of it&lt;/p&gt;

&lt;p&gt;Thank you. &lt;/p&gt;

&lt;p&gt;You may check out my other works on my &lt;a href="https://github.com/Chinemereem"&gt;GitHub page&lt;/a&gt; or &lt;a href="https://codepen.io/stephanieokolie"&gt;CodePen.&lt;/a&gt; Please, comment and let me know what you think.&lt;/p&gt;

</description>
      <category>css</category>
      <category>html</category>
      <category>design</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>My Internship Goals for the HNGi8 Program</title>
      <dc:creator>Stephanie Okolie</dc:creator>
      <pubDate>Sat, 21 Aug 2021 17:34:44 +0000</pubDate>
      <link>https://dev.to/chinemereem/my-internship-goals-for-the-hngi8-program-fi9</link>
      <guid>https://dev.to/chinemereem/my-internship-goals-for-the-hngi8-program-fi9</guid>
      <description>&lt;p&gt;Before October 2020, I never would have imagined a girl like me could write codes. I started learning to code in October last year, and this period has been an exciting phase of my life.&lt;/p&gt;

&lt;p&gt;I love learning. I enjoy writing codes as much as I love writing. I am confident that I would be more proficient in software engineering at the end of &lt;a href="https://internship.zuri.team/"&gt;this&lt;/a&gt; program. &lt;/p&gt;

&lt;p&gt;If I could go back in time, I would tell my younger self that I could do anything I set my mind to and that anyone could be an engineer.&lt;/p&gt;

&lt;p&gt;I would love to get the experience I need to get set in the tech industry; this experience would help me learn more about working in a community of tech-related people.&lt;/p&gt;

&lt;p&gt;This program would add a lot to my experience as I push to perfect my skills in software engineering.&lt;/p&gt;

&lt;p&gt;My goal for &lt;a href="https://zuri.team"&gt;this internship program&lt;/a&gt; is to&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Improve my coding skills.&lt;/li&gt;
&lt;li&gt;Improve my communication and collaboration skills.&lt;/li&gt;
&lt;li&gt;To make progress towards my track as a Software Engineer.&lt;/li&gt;
&lt;li&gt;Gain more experience of working in a community of 
tech-related people.&lt;/li&gt;
&lt;li&gt;By the end of 8 weeks, I would have achieved a wider knowledge and be in a better position than I was before I started this program. &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Through this internship, I hope to teach young people that it is not impossible to write codes, and all that's needed is to believe in themselves and have the determination and perseverance to push through. I hope to make resources readily available for anyone who has the interest to learn software development.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;See below some noteworthy tutorial references:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Figma is one of the hot interface design application tools out there. It's made for collaboration and working with others on digital-based projects.&lt;br&gt;
Here is beginner &lt;a href="https://trydesignlab.com/figma-101-course/introduction-to-figma/#:~:text=Getting%20started%20in%20Figma%20is,and%20we'll%20get%20started!"&gt;tutorial&lt;/a&gt; for designing with Figma&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;HTML is the standard markup language for Web pages, with HTML you can create your own Website.&lt;br&gt;
HTML is easy to learn!&lt;br&gt;
Here is a &lt;a href="https://www.w3schools.com/html/"&gt;tutorial link&lt;/a&gt; link for HTML.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Git is a version-control system for tracking changes in computer files and coordinating work on those files among multiple people.&lt;br&gt;
&lt;a href="https://www.freecodecamp.org/news/learn-the-basics-of-git-in-under-10-minutes-da548267cc91/"&gt;tutorial link&lt;/a&gt; link for Git&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;JavaScript is the world's most popular programming language.JavaScript is the programming language of the Web.&lt;br&gt;
&lt;a href="https://www.w3schools.com/js/"&gt;tutorial&lt;/a&gt; link for js&lt;br&gt;
Youtube &lt;a href="https://www.youtube.com/watch?v=PkZNo7MFNFg"&gt;tutorial link&lt;/a&gt; for basic training in JavaScript&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Node.js is an open source server environment. Node.js allows you to run JavaScript on the server.&lt;br&gt;
&lt;a href="https://www.w3schools.com/nodejs/"&gt;tutorial link&lt;/a&gt; link for basic training in node.js. Video tutorial for basic training in node.js&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>internship</category>
      <category>codenewbie</category>
      <category>hngi8</category>
    </item>
  </channel>
</rss>
