<?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: JAKE</title>
    <description>The latest articles on DEV Community by JAKE (@jake0011).</description>
    <link>https://dev.to/jake0011</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%2F888126%2Fe4d977e5-9d7a-47e2-95cd-92afef60e104.jpg</url>
      <title>DEV Community: JAKE</title>
      <link>https://dev.to/jake0011</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jake0011"/>
    <language>en</language>
    <item>
      <title>Top 50 Linux Commands You Must Know as a Regular User.</title>
      <dc:creator>JAKE</dc:creator>
      <pubDate>Thu, 09 Feb 2023 12:38:17 +0000</pubDate>
      <link>https://dev.to/jake0011/top-50-linux-commands-you-must-know-as-a-regular-user-3j04</link>
      <guid>https://dev.to/jake0011/top-50-linux-commands-you-must-know-as-a-regular-user-3j04</guid>
      <description>&lt;p&gt;&lt;strong&gt;ls *&lt;em&gt;- The most frequently used command in Linux to list directories&lt;br&gt;
**pwd *&lt;/em&gt;- Print working directory command in Linux&lt;br&gt;
*&lt;em&gt;cd *&lt;/em&gt;- Linux command to navigate through directories&lt;br&gt;
*&lt;em&gt;mkdir *&lt;/em&gt;- Command used to create directories in Linux&lt;br&gt;
*&lt;em&gt;mv *&lt;/em&gt;- Move or rename files in Linux&lt;br&gt;
*&lt;em&gt;cp *&lt;/em&gt;- Similar usage as mv but for copying files in Linux&lt;br&gt;
*&lt;em&gt;rm *&lt;/em&gt;- Delete files or directories&lt;br&gt;
**touch&lt;/strong&gt; - Create blank/empty files&lt;br&gt;
&lt;strong&gt;ln *&lt;em&gt;- Create symbolic links (shortcuts) to other files&lt;br&gt;
**cat *&lt;/em&gt;- Display file contents on the terminal&lt;br&gt;
*&lt;em&gt;clear *&lt;/em&gt;- Clear the terminal display&lt;br&gt;
*&lt;em&gt;echo *&lt;/em&gt;- Print any text that follows the command&lt;br&gt;
*&lt;em&gt;less *&lt;/em&gt;- Linux command to display paged outputs in the terminal&lt;br&gt;
*&lt;em&gt;man *&lt;/em&gt;- Access manual pages for all Linux commands&lt;br&gt;
*&lt;em&gt;uname *&lt;/em&gt;- Linux command to get basic information about the OS&lt;br&gt;
*&lt;em&gt;whoami *&lt;/em&gt;- Get the active username&lt;br&gt;
*&lt;em&gt;tar *&lt;/em&gt;- Command to extract and compress files in Linux&lt;br&gt;
**grep&lt;/strong&gt; - Search for a string within an output&lt;br&gt;
&lt;strong&gt;head *&lt;em&gt;- Return the specified number of lines from the top&lt;br&gt;
**tail *&lt;/em&gt;- Return the specified number of lines from the bottom&lt;br&gt;
*&lt;em&gt;diff *&lt;/em&gt;- Find the difference between two files&lt;br&gt;
*&lt;em&gt;cmp *&lt;/em&gt;- Allows you to check if two files are identical&lt;br&gt;
*&lt;em&gt;comm *&lt;/em&gt;- Combines the functionality of diff and cmp&lt;br&gt;
*&lt;em&gt;sort *&lt;/em&gt;- Linux command to sort the content of a file while outputting&lt;br&gt;
*&lt;em&gt;export *&lt;/em&gt;- Export environment variables in Linux&lt;br&gt;
*&lt;em&gt;zip *&lt;/em&gt;- Zip files in Linux&lt;br&gt;
*&lt;em&gt;unzip *&lt;/em&gt;- Unzip files in Linux&lt;br&gt;
*&lt;em&gt;ssh *&lt;/em&gt;- Secure Shell command in Linux&lt;br&gt;
*&lt;em&gt;service *&lt;/em&gt;- Linux command to start and stop services&lt;br&gt;
*&lt;em&gt;ps *&lt;/em&gt;- Display active processes&lt;br&gt;
*&lt;em&gt;kill **and **killall *&lt;/em&gt;- Kill active processes by process ID or name&lt;br&gt;
*&lt;em&gt;df *&lt;/em&gt;- Display disk filesystem information&lt;br&gt;
*&lt;em&gt;mount *&lt;/em&gt;- Mount file systems in Linux&lt;br&gt;
*&lt;em&gt;chmod *&lt;/em&gt;- Command to change file permissions&lt;br&gt;
*&lt;em&gt;chown *&lt;/em&gt;- Command for granting ownership of files or folders&lt;br&gt;
*&lt;em&gt;ifconfig *&lt;/em&gt;- Display network interfaces and IP addresses&lt;br&gt;
*&lt;em&gt;traceroute *&lt;/em&gt;- Trace all the network hops to reach the destination&lt;br&gt;
*&lt;em&gt;wget *&lt;/em&gt;- Direct download files from the internet&lt;br&gt;
*&lt;em&gt;ufw *&lt;/em&gt;- Firewall command&lt;br&gt;
**iptables&lt;/strong&gt; - Base firewall for all other firewall utilities to interface with&lt;br&gt;
&lt;strong&gt;apt, pacman, yum, rpm&lt;/strong&gt; - Package managers depending on the distro&lt;br&gt;
&lt;strong&gt;sudo *&lt;em&gt;- Command to escalate privileges in Linux&lt;br&gt;
**cal *&lt;/em&gt;- View a command-line calendar&lt;br&gt;
*&lt;em&gt;alias *&lt;/em&gt;- Create custom shortcuts for your regularly used commands&lt;br&gt;
*&lt;em&gt;dd *&lt;/em&gt;- Majorly used for creating bootable USB sticks&lt;br&gt;
*&lt;em&gt;whereis *&lt;/em&gt;- Locate the binary, source, and manual pages for a command&lt;br&gt;
**whatis&lt;/strong&gt; - Find what a command is used for&lt;br&gt;
&lt;strong&gt;top **- View active processes live with their system usage&lt;br&gt;
**useradd **and usermod - Add new user or change existing users data&lt;br&gt;
**passwd&lt;/strong&gt; - Create or update passwords for existing users&lt;/p&gt;

</description>
      <category>devmeme</category>
    </item>
    <item>
      <title>DESIGN SUNDAYS: Part 1: LOGO DESIGN</title>
      <dc:creator>JAKE</dc:creator>
      <pubDate>Sun, 13 Nov 2022 13:18:58 +0000</pubDate>
      <link>https://dev.to/jake0011/design-sundays-part-1-logo-design-3n5a</link>
      <guid>https://dev.to/jake0011/design-sundays-part-1-logo-design-3n5a</guid>
      <description>&lt;p&gt;Hello everyone,&lt;/p&gt;

&lt;p&gt;I'm excited to announce the start of a new series where I'll be sharing my journey in the world of graphic design. While none of you may know me (yet!), I'm just an ordinary guy with a passion for tech and a particular interest in design (UI/UX/Graphics), web development, and cybersecurity. But enough about me; let's dive into what you came here for.&lt;/p&gt;

&lt;p&gt;Starting today, I'll be sharing my graphic design knowledge with you every Sunday. I want to be upfront and say that I may not be perfect in my delivery, as I'm relatively new to blogging. So, I'm open to criticism and valuable feedback to help me improve.&lt;/p&gt;

&lt;p&gt;Now, let's jump into today's topic: Logo design.&lt;/p&gt;

&lt;p&gt;Logos are everywhere, and we encounter them daily. Instead of delving into the definition of logos, let's explore the three primary types of logos in the design world:&lt;/p&gt;

&lt;p&gt;Here is one way to format the list properly in Markdown:&lt;/p&gt;

&lt;p&gt;1. &lt;strong&gt;Wordmark Logos:&lt;/strong&gt; These logos are crafted from the chosen business or client's name, mostly consisting of the business name itself. Some examples include CocaCola, FedEx, YouTube, and Google.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--9wS62bfq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/elz2vt59r7w56ou900dt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--9wS62bfq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/elz2vt59r7w56ou900dt.png" alt="Wordmark logos sample images" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;2. &lt;strong&gt;Monogram Logos:&lt;/strong&gt; Monogram logos feature a company or business's initials, usually positioned at the center of the design. Examples include Louis Vuitton, Dream Chasers, and Chanel.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--cGY1CK8w--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/q5x6sclbh0gmwojihuz0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cGY1CK8w--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/q5x6sclbh0gmwojihuz0.png" alt="monogram logos sample images" width="600" height="430"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;3. &lt;strong&gt;Pictogram Logos:&lt;/strong&gt; These logos consist of unique images that represent a company or business. Examples include Instagram, WhatsApp, Apple, Chrome, and Twitter.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IP3p4R6M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pc05gc655mn6n3f3ezhx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IP3p4R6M--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pc05gc655mn6n3f3ezhx.png" alt="pictogram logos sample images" width="798" height="329"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The key is to make sure there is a blank line before each list item to separate them. Markdown requires this blank line as a visual indicator that a new list item is starting.&lt;/p&gt;

&lt;p&gt;Let me know if you have any other questions!&lt;br&gt;
Now that we know the different types of logos, let's explore some fundamental principles that will help you create effective logos:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Simplicity:&lt;/strong&gt; Simplicity is key in logo design. Keeping your design simple will make it more memorable and emotionally evocative. Remember the acronym KISS (Keep It Simple Stupid) when making design decisions.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Relevance:&lt;/strong&gt; Ensure your logo design is relevant to your client or the intended audience. Think about the client's persona and design accordingly. Consider categories like "Friendly and Loud," "Superior and Proud," and "Modest and Quiet."&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Legibility:&lt;/strong&gt; Logos need to be legible, especially when they are scaled down for various applications. Pay attention to text legibility and use techniques like leading, kerning, sizing, and font pairing to enhance it.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Scalability:&lt;/strong&gt; Logos should be scalable to fit different sizes while maintaining quality. Test your logo on various platforms and sizes to ensure it looks great everywhere it's used.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That's a wrap! I hope you've gained some valuable insights from this post. Please feel free to leave feedback in the comments—I'd love to hear your thoughts.&lt;/p&gt;

&lt;p&gt;Enjoy the rest of your weekend! 😄🎨🚀&lt;/p&gt;

&lt;p&gt;About Me: &lt;a href="https://twitter.com/jonathan_a_edem"&gt;Twitter&lt;/a&gt;&lt;/p&gt;

</description>
      <category>design</category>
      <category>graphics</category>
      <category>graphic</category>
      <category>graphicdesign</category>
    </item>
    <item>
      <title>How To Open and Add ICS Files to iPhone Calendar.</title>
      <dc:creator>JAKE</dc:creator>
      <pubDate>Sun, 06 Nov 2022 13:34:52 +0000</pubDate>
      <link>https://dev.to/jake0011/how-to-open-and-add-ics-files-to-iphone-calendar-ldp</link>
      <guid>https://dev.to/jake0011/how-to-open-and-add-ics-files-to-iphone-calendar-ldp</guid>
      <description>&lt;p&gt;Apple not allowing users to directly be able to add a calendar event file(.ics file) from whatever app they received it actually a pain in the ass of many, and i guess you are one of the many, hence your appearance under this article.&lt;/p&gt;

&lt;p&gt;However, there is a way around it; Follow these few steps to easily attach your calendar event file to your iPhone Calendar app other than copying the event details one by one.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Attach the .ics file to an email and send(could be to yourself).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Open that email on your iPhone and click that attachment, You will see an option to "Accept", "Maybe" or  "Decline" the calendar event to your calendar, Click "Accept" and close the Mail app.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Now open the Calendar app on your iPhone and navigate to the day which the event is supposed to be found, now click on the event if found and repeat the latter actions in step 2.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Boom you are done!!!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I hope this helped, Kindly leave your thoughts, corrections and suggestions in the comments.&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;

&lt;p&gt;Connect with me : &lt;br&gt;
&lt;a href="https://twitter.com/jonathan_a_edem"&gt;Twitter&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.instagram.com/jake__graphics/"&gt;Instagram&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ipad</category>
      <category>iphone</category>
    </item>
    <item>
      <title>Free CyberSecurity Learning Resources</title>
      <dc:creator>JAKE</dc:creator>
      <pubDate>Sun, 16 Oct 2022 10:59:36 +0000</pubDate>
      <link>https://dev.to/jake0011/free-cybersecurity-learning-resources-955</link>
      <guid>https://dev.to/jake0011/free-cybersecurity-learning-resources-955</guid>
      <description>&lt;p&gt;&lt;strong&gt;Here are 27 ways to learn ethical hacking for free:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;- Root Me — Challenges.&lt;/li&gt;
&lt;li&gt;- Stök's YouTube — Videos.&lt;/li&gt;
&lt;li&gt;- Hacker101 Videos — Videos.&lt;/li&gt;
&lt;li&gt;- InsiderPhD YouTube — Videos.&lt;/li&gt;
&lt;li&gt;- EchoCTF — Interactive Learning.&lt;/li&gt;
&lt;li&gt;- Vuln Machines — Videos and Labs.&lt;/li&gt;
&lt;li&gt;- Try2Hack — Interactive Learning.&lt;/li&gt;
&lt;li&gt;- Pentester Land — Written Content.&lt;/li&gt;
&lt;li&gt;- Checkmarx — Interactive Learning.&lt;/li&gt;
&lt;li&gt;- Cybrary — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- RangeForce — Interactive Exercises.&lt;/li&gt;
&lt;li&gt;- Vuln Hub — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- TCM Security — Interactive Learning.&lt;/li&gt;
&lt;li&gt;- HackXpert — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- Try Hack Me — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- OverTheWire — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- Hack The Box — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- CyberSecLabs — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- Pentester Academy — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- Bug Bounty Reports Explained YouTube — Videos.&lt;/li&gt;
&lt;li&gt;- Web Security Academy — Written Content and Labs.&lt;/li&gt;
&lt;li&gt;- Securibee's Infosec Resources — Written Content.&lt;/li&gt;
&lt;li&gt;- Jhaddix Bug Bounty Repository — Written Content.&lt;/li&gt;
&lt;li&gt;- Zseano's Free Bug Bounty Methodology — Free Ebook.&lt;/li&gt;
&lt;li&gt;- Awesome AppSec GitHub Repository — Written Content.&lt;/li&gt;
&lt;li&gt;- NahamSec's Bug Bounty Beginner Repository — Written Content.&lt;/li&gt;
&lt;li&gt;- Kontra Application Security Training — Interactive Learning.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Just search them with the keywords in this article and follow the link to open. &lt;/p&gt;

&lt;p&gt;Connect with me: &lt;br&gt;
&lt;a href="https://twitter.com/jonathan_a_edem"&gt;Twitter&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>blackhat</category>
      <category>ethicalhacking</category>
    </item>
  </channel>
</rss>
