Compare commits
31 Commits
hugo-netli
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
ceea34cb51 | ||
|
b94cfbdf76 | ||
|
255d6b1920 | ||
|
7fbedea388 | ||
|
f044b27a34 | ||
|
b10995bbef | ||
|
01298d0249 | ||
|
87f653243a | ||
|
d8cc6f8ef6 | ||
|
dbba94a679 | ||
|
2973477f69 | ||
|
942040d68b | ||
|
bc54bf81f7 | ||
|
bcca7464c3 | ||
|
f9f6b9331c | ||
|
94c8db5975 | ||
|
fdf342e205 | ||
|
c78fb4b0af | ||
|
4b02f3ef81 | ||
|
bacf147758 | ||
|
be4b6857fa | ||
|
13919c27e5 | ||
|
b5d59fec5e | ||
|
53f23794d4 | ||
|
c032f1ded8 | ||
|
46f7e466ec | ||
|
3e1d17c406 | ||
|
a2d4b78a37 | ||
|
0ac764778d | ||
|
0eab7a5df1 | ||
|
e31b13191b |
@@ -4,8 +4,8 @@ This is the repository for my personal website, which can be found at [sravanbal
|
|||||||
|
|
||||||
## Development Progress
|
## Development Progress
|
||||||
|
|
||||||
You can follow my current development plans for this website on my [GitHub project](https://github.com/balajsra/balajsra.github.io/projects/1).
|
You can follow the development of this website on my [GitHub project](https://github.com/balajsra/sravanbalaji.com).
|
||||||
|
|
||||||
## Feedback & Suggestions
|
## Feedback & Suggestions
|
||||||
|
|
||||||
If you find any issues or have suggestions for ways to improve my website, please submit a bug or enhancement request on [GitHub](https://github.com/balajsra/balajsra.github.io/issues).
|
If you find any issues or have suggestions for ways to improve my website, please submit a bug or enhancement request on [GitHub](https://github.com/balajsra/sravanbalaji.com/issues).
|
||||||
|
Before Width: | Height: | Size: 9.9 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 4.5 KiB |
Before Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 432 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 198 KiB |
Before Width: | Height: | Size: 112 KiB |
Before Width: | Height: | Size: 34 KiB |
Before Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 84 KiB |
Before Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 196 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 155 KiB |
@@ -1,179 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<script language="javascript" type="text/javascript" src="../common/header.txt"></script>
|
|
||||||
<title>Docker</title>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
img {
|
|
||||||
max-height: 500px;
|
|
||||||
margin: auto;
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<script language="javascript" type="text/javascript" src="../common/navbar.txt"></script>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<div class="container-fluid px-md-6">
|
|
||||||
<div class="row align-items-center">
|
|
||||||
<div class="col-md-2">
|
|
||||||
<!-- Nothing -->
|
|
||||||
</div>
|
|
||||||
<div class="col-md-8">
|
|
||||||
<!-- Title -->
|
|
||||||
<h1>Getting Started with Docker</h1>
|
|
||||||
|
|
||||||
<!-- Author & Date/Time -->
|
|
||||||
<p class="lead">
|
|
||||||
Updated on March 18, 2020
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<!-- Preview Image -->
|
|
||||||
<img class="img-fluid rounded" src="https://cdn.vox-cdn.com/thumbor/fbrTLtxuP2D29o8VJUaE-u3NKfU=/0x0:792x613/1200x800/filters:focal(300x237:426x363)/cdn.vox-cdn.com/uploads/chorus_image/image/59850273/Docker_logo_011.0.png" alt="">
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<!-- Post Content -->
|
|
||||||
<h2><a name="introduction">Introduction</a></h2>
|
|
||||||
<p>
|
|
||||||
Throughout my college career in computer science, I have found the need to develop applications that will be deployed in a Linux environment. As a windows user, I have usually turned to a couple of different options: virtual machines, <a href="https://docs.microsoft.com/en-us/windows/wsl/about" target="_blank">Windows Subsystem for Linux</a>, or <a href="https://www.cygwin.com" target="_blank">Cygwin</a>. Recently, I discovered an alternative method for building and testing Linux apps that is especially useful for collaboration and deployment. Docker allows you to package an OS and all the necessary dependencies into a <b>docker image</b>. You can then spin up an instance of this image called a <b>docker container</b> in which you can run your source code. Jake Wright's video was incredibly helpful in my understanding of what docker is, how it's different from virtual machines, and how to use it.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<div class="embed-responsive embed-responsive-16by9">
|
|
||||||
<iframe class="embed-responsive-item" src="https://www.youtube-nocookie.com/embed/YFl2mCHdv24" allowfullscreen></iframe>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h2><a name="installing_docker">Installing Docker</a></h2>
|
|
||||||
<p>
|
|
||||||
Depending on your host machine's operating system, you will install one of the following Docker products. If you have macOS or Windows, your first option should be Docker Desktop. Check if you meet the system requirements. If you do not, Docker Toolbox is the legacy option that uses Oracle VirtualBox rather than Hyper-V or HyperKit for virtualization. I am using a computer with Windows 10 Home, so I use Docker Toolbox for Windows. This blog post will discuss some solutions to edge-case issues with Docker Toolbox that Docker Desktop users will hopefully not have to deal with.
|
|
||||||
</p>
|
|
||||||
<ul>
|
|
||||||
<li>macOS</li>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://docs.docker.com/docker-for-mac/install/" target="_blank">Docker Desktop for Mac</a></li>
|
|
||||||
<li><a href="https://docs.docker.com/toolbox/toolbox_install_mac/" target="_blank">Docker Toolbox for macOS</a> (Legacy)</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<li>Windows</li>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://docs.docker.com/docker-for-windows/install/" target="_blank">Docker Desktop for Windows</a></li>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://chocolatey.org/packages/docker-desktop/2.2.0.4" target="_blank">Chocolatey</a>: <code>choco install docker-desktop</code></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<li><a href="https://docs.docker.com/toolbox/toolbox_install_windows/" target="_blank">Docker Toolbox for Windows</a> (Legacy)</li>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://chocolatey.org/packages/docker-toolbox" target="_blank">Chocolatey</a>: <code>choco install docker-toolbox</code></li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<li>Linux</li>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://docs.docker.com/install/linux/docker-ce/centos/" target="_blank">Docker Engine - Community for CentOS</a></li>
|
|
||||||
<li><a href="https://docs.docker.com/install/linux/docker-ce/debian/" target="_blank">Docker Engine - Community for Debian</a></li>
|
|
||||||
<li><a href="https://docs.docker.com/install/linux/docker-ce/fedora/" target="_blank">Docker Engine - Community for Fedora</a></li>
|
|
||||||
<li><a href="https://docs.docker.com/install/linux/docker-ce/ubuntu/" target="_blank">Docker Engine - Community for Ubuntu</a></li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h3>Docker Toolbox & WSL</h3>
|
|
||||||
<p>
|
|
||||||
As mentioned previously, I am using Docker Toolbox since Windows 10 Home does not support Hyper-V for virtualization with Docker Desktop. You can run docker toolbox in a command prompt or powershell terminal, but I personally prefer to use WSL because I am more familiar with bash terminal commands. If you are interested in this setup, continue reading this section. Otherwise, you can skip ahead.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h4>Installing WSL</h4>
|
|
||||||
<p>
|
|
||||||
The default way to install WSL is through the <a href="https://docs.microsoft.com/en-us/windows/wsl/about" target="_blank">Microsoft Store</a>. This will install WSL on your system drive (e.g. C:\). If you are like me and don't want to install it on your system drive, follow the instructions <a href="https://kontext.tech/column/tools/308/how-to-install-windows-subsystem-for-linux-on-a-non-c-drive" target="_blank">here</a>.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h4>Setting Up Docker Toolbox with WSL</h4>
|
|
||||||
<p>
|
|
||||||
After installing WSL, follow the instructions in <a href="https://medium.com/@joaoh82/setting-up-docker-toolbox-for-windows-home-10-and-wsl-to-work-perfectly-2fd34ed41d51" target="_blank">Setting Up Docker Toolbox for Windows Home 10 and WSL to Work Perfectly!</a> starting with <b>Install Docker and Docker Compose within WSL</b>. As you will have seen near the end of that post, there are some extra steps needed to ensure that volume mounts work. After setting <code>root = /</code>, you will need to configure shared folders for the <code>default</code> docker machine in VirtualBox.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<h4>Shared Folder Configuration for Volume Mounting</h4>
|
|
||||||
<p>
|
|
||||||
I configured all of my drives as shared folders so I can mount any folders on my host machine to any docker containers I run. In your WSL terminal, run <code>docker-machine.exe start</code> to start the <code>default</code> docker machine created by the Docker Quickstart Terminal. After your docker machine is running, open the shared folder settings as shown in <a href="https://medium.com/@Charles_Stover/fixing-volumes-in-docker-toolbox-4ad5ace0e572" target="_blank">Fixing Volumes in Docker Toolbox</a>. The image below shows how <code>C:\</code> on my host computer is mounted at <code>/</code> in folder <code>c</code> on my docker machine such that <code>C:\</code> maps to <code>/c</code>. Make sure you have enabled <code>Auto-mount</code> and <code>Make Permanent</code>. Click <b>OK</b> to save all settings, then go back to the WSL terminal and run <code>docker-machine.exe restart default</code>. Now your docker machine should be properly configured to allow volume mounting.
|
|
||||||
</p>
|
|
||||||
<img class="img-fluid mx-auto d-block" src="../assets/blog_posts/Docker/virtual_box_shared_folder.jpg">
|
|
||||||
|
|
||||||
<h4>Increase Docker Machine Resources</h4>
|
|
||||||
<p>
|
|
||||||
One issue I ran into with the default settings for the <code>default</code> docker machine is the amount of RAM allocated to it. I attempted to build the <a href="https://github.com/borglab/gtsam" target="_blank">GTSAM</a> library inside a docker container and ran into an <i>internal compiler error: Killed (program cc1plus)</i>. As mentioned <a href="https://github.com/docker/for-win/issues/403" target="_blank">here</a>, the solution is to increase the RAM allocated to the docker machine in VirtualBox. In the WSL terminal, run <code>docker-machine.exe stop</code> to shutdown the docker machine. When this is complete, right click on the <code>default</code> docker machine in VirtualBox and open <b>Settings</b>. In the <b>System</b> tab, increase <i>Base Memory</i>. Similar to virtual machines, I would not recommend allocating more than half of your system's RAM. For example, my computer has 16 GB of RAM, so I would only recommend allocating up to 8 GB of RAM to the docker machine. You can look through the other options, such as number of allocated processor cores, as well if you wish.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h2><a name="building_images_and_running_containers">Building Images & Running Containers</a></h2>
|
|
||||||
<p>
|
|
||||||
To learn about Dockerfiles and a basic example, check out the video in the <a href="#introduction">introduction</a>. To learn about Docker Compose, check out Jake Wright's video on the topic.
|
|
||||||
</p>
|
|
||||||
<div class="embed-responsive embed-responsive-16by9">
|
|
||||||
<iframe class="embed-responsive-item" src="https://www.youtube-nocookie.com/embed/Qw9zlE3t8Ko" allowfullscreen></iframe>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h2><a name="x_forwarding">X Forwarding for GUI Applications</a></h2>
|
|
||||||
<p>
|
|
||||||
In a virtual machine, you can easily run GUI applications such as a web browser, text editor, etc. In a docker container, the process is a little bit different. You will need to download an X Server such as <a href="https://sourceforge.net/projects/vcxsrv/" target="_blank">VcXsrv Windows X Server</a>. If you are using <a href="https://chocolatey.org/packages/vcxsrv" target="_blank">chocolatey</a>, you can run <code>choco install vcxsrv</code>.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<a href="https://dev.to/darksmile92/run-gui-app-in-linux-docker-container-on-windows-host-4kde" target="_blank">Run GUI app in linux docker container on windows host</a> provides a great explanation of why you would want to do this and how to run your docker container. The post discusses how to set your IP address as the <code>DISPLAY</code> environment variable that is passed to docker via the <code>-e DISPLAY=$DISPLAY</code> command line argument. You can alternatively pass your IP address as an environment variable in your docker compose file. This is shown in <a href="https://github.com/MAAV-Software/ros-tutorial" target="_blank">MAAV's ROS Tutorial</a> (reproduced below). The main settings to look at below are <code>environment</code> and <code>network_mode</code>. Set the <code>DISPLAY</code> environment variable to <code>[ip_address]:0.0</code> and set <code>network_mode: "host"</code>.
|
|
||||||
</p>
|
|
||||||
<pre>
|
|
||||||
<code>
|
|
||||||
# docker-compose.yml
|
|
||||||
version: "2"
|
|
||||||
|
|
||||||
services:
|
|
||||||
ros-demo:
|
|
||||||
image: ros-demo
|
|
||||||
privileged: true
|
|
||||||
volumes:
|
|
||||||
# Mount the current directory do everything in /tutorial within docker
|
|
||||||
- .:/tutorial:rw
|
|
||||||
environment:
|
|
||||||
- DISPLAY=1.1.1.1:0.0 # Change 1.1.1.1 to your IP Address
|
|
||||||
network_mode: "host"
|
|
||||||
container_name: ros-demo
|
|
||||||
command: "/bin/bash --init-file scripts/source-ros.sh" #source ros automatically
|
|
||||||
</code>
|
|
||||||
</pre>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h2><a name="helpful_commands">Helpful Docker Commands</a></h2>
|
|
||||||
<p>
|
|
||||||
<ul>
|
|
||||||
<li>System Prune to clear space on Docker Machine</li>
|
|
||||||
<ul>
|
|
||||||
<li><code>docker system prune --volumes</code></li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<h2><a name="conclusion">Conclusion</a></h2>
|
|
||||||
<p>
|
|
||||||
Hopefully by this point, you have a better understanding of what docker is, why you might want to use it, and how to get a docker machine setup so you can build and run docker containers. If you have any questions or suggestions for improvement, feel free to <a href="../web_pages/about.html#contact_me">contact me</a>.
|
|
||||||
</p>
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
</div>
|
|
||||||
<div class="col-md-2">
|
|
||||||
<!-- Nothing -->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<script language="javascript" type="text/javascript" src="../common/footer.txt"></script>
|
|
||||||
</footer>
|
|
||||||
</html>
|
|
@@ -1,9 +0,0 @@
|
|||||||
<div class="container-fluid px-md-6">
|
|
||||||
<div class="row align-items-center">
|
|
||||||
<div class="col-md-12">
|
|
||||||
<small>
|
|
||||||
Copyright © 2019 Sravan Balaji under <a rel="license" href="https://docs.google.com/gview?url=https://github.com/balajsra/balajsra.github.io/raw/master/LICENSE" target="_blank">MIT License</a>
|
|
||||||
</small>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@@ -1,22 +0,0 @@
|
|||||||
<!--Required meta tags-->
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="author" content="Sravan Balaji">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
|
|
||||||
<!-- Latest compiled and minified CSS -->
|
|
||||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
|
|
||||||
|
|
||||||
<!-- jQuery library -->
|
|
||||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
|
|
||||||
|
|
||||||
<!-- Popper JS -->
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
|
|
||||||
|
|
||||||
<!-- Latest compiled JavaScript -->
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
|
|
||||||
|
|
||||||
<!-- Stylesheet -->
|
|
||||||
<link rel="stylesheet" type="text/css" href="../common/styles.css"/>
|
|
||||||
|
|
||||||
<!-- Favicon -->
|
|
||||||
<link rel="icon" href="../assets/branding/favicon.ico" type="image/x-icon"/>
|
|
@@ -1 +0,0 @@
|
|||||||
document.write('<!--Required meta tags--> <meta charset="utf-8"> <meta name="author" content="Sravan Balaji"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> <!-- jQuery library --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <!-- Popper JS --> <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script> <!-- Latest compiled JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script> <!-- Stylesheet --> <link rel="stylesheet" type="text/css" href="../common/styles.css"/> <!-- Favicon --> <link rel="icon" href="../assets/branding/favicon.ico" type="image/x-icon"/>')
|
|
@@ -1,111 +0,0 @@
|
|||||||
<nav class="navbar my-nav navbar-expand-md fixed-top">
|
|
||||||
<!-- Brand -->
|
|
||||||
<a class="navbar-brand" href="../web_pages/index.html">
|
|
||||||
<img src="../assets/branding/logo.png" alt="Icon" width="30px" height="30px" class="d-inline-block align-top">
|
|
||||||
<img src="../assets/branding/name.png" alt="Name" height="30px" class="d-inline-block align-center">
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<!-- Toggler/collapsibe Button -->
|
|
||||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
|
|
||||||
<span class="navbar-toggler-icon"></span>
|
|
||||||
</button>
|
|
||||||
|
|
||||||
<!-- Navbar links -->
|
|
||||||
<div class="collapse navbar-collapse" id="collapsibleNavbar">
|
|
||||||
<ul class="navbar-nav">
|
|
||||||
<!-- About -->
|
|
||||||
<li class="nav-item dropdown">
|
|
||||||
<a class="nav-link dropdown-toggle" href="../web_pages/about.html" id="navbardrop" data-toggle="dropdown">
|
|
||||||
About
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu">
|
|
||||||
<a class="dropdown-item" href="../web_pages/about.html#bio">
|
|
||||||
Bio
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/about.html#contact_me">
|
|
||||||
Contact Me
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<!-- Portfolio -->
|
|
||||||
<li class="nav-item dropdown">
|
|
||||||
<a class="nav-link dropdown-toggle" href="../web_pages/portfolio.html" id="navbardrop" data-toggle="dropdown">
|
|
||||||
Portfolio
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu">
|
|
||||||
<a class="dropdown-item" href="../web_pages/portfolio.html#resume">
|
|
||||||
Resume
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/portfolio.html#education">
|
|
||||||
Education
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/portfolio.html#professional_experience">
|
|
||||||
Professional Experience
|
|
||||||
</a>
|
|
||||||
<!-- <a class="dropdown-item" href="../web_pages/portfolio.html#research">
|
|
||||||
Research
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/portfolio.html#projects">
|
|
||||||
Projects
|
|
||||||
</a> -->
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<!-- Personal -->
|
|
||||||
<li class="nav-item dropdown">
|
|
||||||
<a class="nav-link dropdown-toggle" href="../web_pages/personal.html" id="navbardrop" data-toggle="dropdown">
|
|
||||||
Personal
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu">
|
|
||||||
<a class="dropdown-item" href="../web_pages/personal.html#software">
|
|
||||||
Software
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/personal.html#hardware">
|
|
||||||
Hardware
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/personal.html#video_games">
|
|
||||||
Video Games
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/personal.html#podcasts">
|
|
||||||
Podcasts
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/personal.html#music">
|
|
||||||
Music
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<!-- Blog -->
|
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" href="../web_pages/blog.html">
|
|
||||||
Blog
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<!-- Documentation -->
|
|
||||||
<li class="nav-item dropdown">
|
|
||||||
<a class="nav-link dropdown-toggle" href="../web_pages/documentation.html" id="navbardrop" data-toggle="dropdown">
|
|
||||||
Documentation
|
|
||||||
</a>
|
|
||||||
<div class="dropdown-menu">
|
|
||||||
<a class="dropdown-item" href="../web_pages/documentation.html#introduction">
|
|
||||||
Introduction
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/documentation.html#website_hosting">
|
|
||||||
Website Hosting
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/documentation.html#web_design">
|
|
||||||
Web Design
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/documentation.html#aesthetics">
|
|
||||||
Aesthetics
|
|
||||||
</a>
|
|
||||||
<a class="dropdown-item" href="../web_pages/documentation.html#inspiration">
|
|
||||||
Inspiration
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
@@ -1 +0,0 @@
|
|||||||
document.write('<nav class="navbar my-nav navbar-expand-md fixed-top"> <!-- Brand --> <a class="navbar-brand" href="../web_pages/index.html"> <img src="../assets/branding/logo.png" alt="Icon" width="30px" height="30px" class="d-inline-block align-top"> <img src="../assets/branding/name.png" alt="Name" height="30px" class="d-inline-block align-center"> </a> <!-- Toggler/collapsibe Button --> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar"> <span class="navbar-toggler-icon"></span> </button> <!-- Navbar links --> <div class="collapse navbar-collapse" id="collapsibleNavbar"> <ul class="navbar-nav"> <!-- About --> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="../web_pages/about.html" id="navbardrop" data-toggle="dropdown"> About </a> <div class="dropdown-menu"> <a class="dropdown-item" href="../web_pages/about.html#bio"> Bio </a> <a class="dropdown-item" href="../web_pages/about.html#contact_me"> Contact Me </a> </div> </li> <!-- Portfolio --> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="../web_pages/portfolio.html" id="navbardrop" data-toggle="dropdown"> Portfolio </a> <div class="dropdown-menu"> <a class="dropdown-item" href="../web_pages/portfolio.html#resume"> Resume </a> <a class="dropdown-item" href="../web_pages/portfolio.html#education"> Education </a> <a class="dropdown-item" href="../web_pages/portfolio.html#professional_experience"> Professional Experience </a> <!-- <a class="dropdown-item" href="../web_pages/portfolio.html#research"> Research </a> <a class="dropdown-item" href="../web_pages/portfolio.html#projects"> Projects </a> --> </div> </li> <!-- Personal --> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="../web_pages/personal.html" id="navbardrop" data-toggle="dropdown"> Personal </a> <div class="dropdown-menu"> <a class="dropdown-item" href="../web_pages/personal.html#software"> Software </a> <a class="dropdown-item" href="../web_pages/personal.html#hardware"> Hardware </a> <a class="dropdown-item" href="../web_pages/personal.html#video_games"> Video Games </a> <a class="dropdown-item" href="../web_pages/personal.html#podcasts"> Podcasts </a> <a class="dropdown-item" href="../web_pages/personal.html#music"> Music </a> </div> </li> <!-- Blog --> <li class="nav-item"> <a class="nav-link" href="../web_pages/blog.html"> Blog </a> </li> <!-- Documentation --> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="../web_pages/documentation.html" id="navbardrop" data-toggle="dropdown"> Documentation </a> <div class="dropdown-menu"> <a class="dropdown-item" href="../web_pages/documentation.html#introduction"> Introduction </a> <a class="dropdown-item" href="../web_pages/documentation.html#website_hosting"> Website Hosting </a> <a class="dropdown-item" href="../web_pages/documentation.html#web_design"> Web Design </a> <a class="dropdown-item" href="../web_pages/documentation.html#aesthetics"> Aesthetics </a> <a class="dropdown-item" href="../web_pages/documentation.html#inspiration"> Inspiration </a> </div> </li> </ul> </div> </nav>')
|
|
@@ -1,67 +0,0 @@
|
|||||||
/***********
|
|
||||||
* General *
|
|
||||||
***********/
|
|
||||||
body {
|
|
||||||
background-color: #E8EEF2;
|
|
||||||
padding-top: 65px;
|
|
||||||
font-family: Arial, Verdana, Tahoma, sans-serif;
|
|
||||||
}
|
|
||||||
|
|
||||||
/****************
|
|
||||||
* Main Content *
|
|
||||||
****************/
|
|
||||||
.my-nav {
|
|
||||||
background: #00274C;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.my-nav .nav-link {
|
|
||||||
color: #FFCB05;
|
|
||||||
}
|
|
||||||
|
|
||||||
.my-nav .nav-link:hover {
|
|
||||||
color: #30C5FF;
|
|
||||||
}
|
|
||||||
|
|
||||||
.my-nav .navbar-toggler-icon {
|
|
||||||
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 39, 76, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
|
|
||||||
}
|
|
||||||
|
|
||||||
.my-nav .navbar-toggler {
|
|
||||||
background: #FFCB05; /* pick your color */
|
|
||||||
}
|
|
||||||
|
|
||||||
.container-fluid {
|
|
||||||
color: #000000;
|
|
||||||
font-size: 18px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container-fluid h1 {
|
|
||||||
padding: 10px 10px;
|
|
||||||
background: #00274C;
|
|
||||||
color: #FFCB05;
|
|
||||||
}
|
|
||||||
|
|
||||||
.row {
|
|
||||||
/* border: 1px solid red; */
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Add an invisible target before
|
|
||||||
anchor links so navbar doesn't
|
|
||||||
block content */
|
|
||||||
:target::before {
|
|
||||||
content: "";
|
|
||||||
display: block;
|
|
||||||
margin-top: -80px;
|
|
||||||
height: 80px;
|
|
||||||
width: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Side Padding */
|
|
||||||
@media (min-width: 768px) {
|
|
||||||
.px-md-6 {
|
|
||||||
padding-left: 12.5% !important;
|
|
||||||
padding-right: 12.5% !important;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,4 +1,7 @@
|
|||||||
<!--Dummy File to Redirect to index.html in Web Pages Folder-->
|
<!--Dummy File to Redirect to index.html in Web Pages Folder-->
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="refresh" content="0; url=https://balajsra.github.io/web_pages/index.html">
|
<meta
|
||||||
</head>
|
http-equiv="refresh"
|
||||||
|
content="0; url=./src/index.html"
|
||||||
|
/>
|
||||||
|
</head>
|
||||||
|
169
src/about.html
Normal file
@@ -0,0 +1,169 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en" color-mode="light">
|
||||||
|
<head>
|
||||||
|
<script
|
||||||
|
language="javascript"
|
||||||
|
type="text/javascript"
|
||||||
|
src="common/header.txt"
|
||||||
|
></script>
|
||||||
|
<title>About</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<script
|
||||||
|
language="javascript"
|
||||||
|
type="text/javascript"
|
||||||
|
src="common/navbar.txt"
|
||||||
|
></script>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="container-fluid px-md-6">
|
||||||
|
<!---------------------------------
|
||||||
|
BIO
|
||||||
|
----------------------------------->
|
||||||
|
<div id="bio">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<h1><a name="bio">Bio</a></h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-md-3">
|
||||||
|
<img
|
||||||
|
class="img-fluid mx-auto d-block"
|
||||||
|
src="./assets/about/profile_picture.jpg"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-9">
|
||||||
|
<p>
|
||||||
|
Sravan Balaji completed his undergraduate and graduate degrees at
|
||||||
|
the
|
||||||
|
<a href="https://umich.edu" target="_blank"
|
||||||
|
>University of Michigan, Ann Arbor</a
|
||||||
|
>. He earned dual B.S.E.'s in
|
||||||
|
<a href="https://me.engin.umich.edu/" target="_blank"
|
||||||
|
>Mechanical Engineering</a
|
||||||
|
>
|
||||||
|
and
|
||||||
|
<a href="https://cse.engin.umich.edu/" target="_blank"
|
||||||
|
>Computer Science</a
|
||||||
|
>
|
||||||
|
in December 2020 and an M.S. in
|
||||||
|
<a href="https://robotics.umich.edu/" target="_blank">Robotics</a>
|
||||||
|
in December 2021.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Sravan worked as a Graduate Navigation Intern at
|
||||||
|
<a href="https://www.mitre.org/" target="_blank">MITRE</a>
|
||||||
|
during summer 2021. You can learn more about this and his other
|
||||||
|
work experiences in the
|
||||||
|
<a href="./portfolio.html#professional_experience"
|
||||||
|
>professional experience</a
|
||||||
|
>
|
||||||
|
section of the
|
||||||
|
<a href="./portfolio.html">portfolio</a> page. He is currently
|
||||||
|
working at
|
||||||
|
<a href="https://www.mitre.org/" target="_blank">MITRE</a>
|
||||||
|
as an Associate Autonomous Systems Engineer in McLean, VA.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Sravan's professional and academic interests are in controls,
|
||||||
|
motion planning, robotic perception & manipulation, autonomous &
|
||||||
|
connected vehicles, software development, and GNU/Linux among
|
||||||
|
other things. His personal interests include video games,
|
||||||
|
podcasts, music, cooking, football, soccer, formula 1, and
|
||||||
|
productivity software.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<h1><a name="contact_me">Contact Me</a></h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<p>
|
||||||
|
Feel free to reach out to me via email if you have any questions
|
||||||
|
about my website, college education, professional experience, or
|
||||||
|
anything else. If you have suggestions for the website or would
|
||||||
|
like to see the source files, check out my
|
||||||
|
<a
|
||||||
|
href="https://github.com/balajsra/sravanbalaji.com"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
GitHub repository</a
|
||||||
|
>. If you would like to connect with me on LinkedIn, use the link
|
||||||
|
below. I will do my best to respond to any communication in a
|
||||||
|
timely manner. Finally, check out my YouTube channel if you are
|
||||||
|
interested in some of the projects I have worked on.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!---------------------------------
|
||||||
|
CONTACT ME
|
||||||
|
----------------------------------->
|
||||||
|
<div id="contact_me">
|
||||||
|
<div class="row align-items-center">
|
||||||
|
<div class="col-md-3 text-center">
|
||||||
|
<a href="mailto:balajsra@umich.edu" target="_blank">
|
||||||
|
<img
|
||||||
|
class="img-fluid mx-auto d-block"
|
||||||
|
alt="Email"
|
||||||
|
src="./assets/about/email.png"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p><br /><b>Email:</b> balajsra@umich.edu</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3 text-center">
|
||||||
|
<a
|
||||||
|
href="https://www.linkedin.com/in/sravan-balaji/"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
class="img-fluid mx-auto d-block"
|
||||||
|
alt="LinkedIn"
|
||||||
|
src="./assets/about/linkedin.png"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p><br /><b>LinkedIn:</b> sravan-balaji</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3 text-center">
|
||||||
|
<a href="https://github.com/balajsra" target="_blank">
|
||||||
|
<img
|
||||||
|
class="img-fluid mx-auto d-block"
|
||||||
|
alt="GitHub"
|
||||||
|
src="./assets/about/github.png"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p><br /><b>GitHub:</b> balajsra</p>
|
||||||
|
</div>
|
||||||
|
<div class="col-md-3 text-center">
|
||||||
|
<a
|
||||||
|
href="https://www.youtube.com/channel/UC-xFJ4IKdogbpoQdQf2mgaA"
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
class="img-fluid mx-auto d-block"
|
||||||
|
alt="YouTube"
|
||||||
|
src="./assets/about/youtube.png"
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
<p><br /><b>YouTube:</b> Sravan Balaji</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<script
|
||||||
|
language="javascript"
|
||||||
|
type="text/javascript"
|
||||||
|
src="common/footer.txt"
|
||||||
|
></script>
|
||||||
|
</footer>
|
||||||
|
</html>
|
BIN
src/assets/about/email.png
Normal file
After Width: | Height: | Size: 10 KiB |
BIN
src/assets/about/github.png
Normal file
After Width: | Height: | Size: 2.0 MiB |
BIN
src/assets/about/linkedin.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 152 KiB |
BIN
src/assets/about/youtube.png
Normal file
After Width: | Height: | Size: 7.6 KiB |
BIN
src/assets/blog_posts/Docker/cover_docker.png
Normal file
After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
BIN
src/assets/blog_posts/oryx_pro_review/01_oryp7.jpg
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/02_oryp7.jpg
Normal file
After Width: | Height: | Size: 3.3 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/03_oryp7.jpg
Normal file
After Width: | Height: | Size: 1.2 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/04_oryp7.jpg
Normal file
After Width: | Height: | Size: 2.7 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/05_oryp7.jpg
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/06_oryp7.jpg
Normal file
After Width: | Height: | Size: 1.0 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/07_oryp7.jpg
Normal file
After Width: | Height: | Size: 6.0 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/08_oryp7.jpg
Normal file
After Width: | Height: | Size: 5.6 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/09_oryp7.jpg
Normal file
After Width: | Height: | Size: 5.5 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/10_oryp7.jpg
Normal file
After Width: | Height: | Size: 4.8 MiB |
BIN
src/assets/blog_posts/oryx_pro_review/11_oryp7.jpg
Normal file
After Width: | Height: | Size: 4.8 MiB |
After Width: | Height: | Size: 53 KiB |
After Width: | Height: | Size: 796 KiB |
BIN
src/assets/branding/color_palette.png
Normal file
After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
BIN
src/assets/education/logo-robotics.png
Normal file
After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
BIN
src/assets/hardware/galaxy-watch5-pro.png
Normal file
After Width: | Height: | Size: 47 KiB |
BIN
src/assets/hardware/galaxy-z-fold-4.png
Normal file
After Width: | Height: | Size: 946 KiB |
BIN
src/assets/hardware/galaxy_buds2pro.png
Normal file
After Width: | Height: | Size: 428 KiB |
BIN
src/assets/hardware/keychron_q1_pro.avif
Normal file
After Width: | Height: | Size: 99 KiB |
BIN
src/assets/hardware/oryx-pro-7.png
Normal file
After Width: | Height: | Size: 93 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
BIN
src/assets/podcasts/decoder.jpg
Normal file
After Width: | Height: | Size: 106 KiB |
BIN
src/assets/podcasts/football-weekly.jpg
Normal file
After Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
BIN
src/assets/podcasts/missed-apex.jpg
Normal file
After Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
BIN
src/assets/podcasts/vergecast.jpg
Normal file
After Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
BIN
src/assets/professional_experience/logo-metron.jpeg
Normal file
After Width: | Height: | Size: 5.0 KiB |
BIN
src/assets/professional_experience/logo-mitre.jpeg
Normal file
After Width: | Height: | Size: 4.3 KiB |
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
BIN
src/assets/programming/logo-emacs.png
Normal file
After Width: | Height: | Size: 153 KiB |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
BIN
src/assets/software/logo-bitwarden.png
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
src/assets/software/logo-ferdium.png
Normal file
After Width: | Height: | Size: 75 KiB |
BIN
src/assets/software/logo-lutris.png
Normal file
After Width: | Height: | Size: 103 KiB |
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 148 KiB After Width: | Height: | Size: 148 KiB |
4
src/assets/software/logo-signal.svg
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="1024" height="1024" viewBox="0 0 1024 1024">
|
||||||
|
<path fill="#3a76f0" d="M0,0v1024h1024V0H0z"/>
|
||||||
|
<path fill="#ffffff" d="M427.5,170.3l7.9,32A319.6,319.6,0,0,0,347,238.9l-16.9-28.3A347.6,347.6,0,0,1,427.5,170.3Zm169,0-7.9,32A319.6,319.6,0,0,1,677,238.9l17.1-28.3A350.1,350.1,0,0,0,596.5,170.3ZM210.6,330a349.5,349.5,0,0,0-40.3,97.5l32,7.9A319.6,319.6,0,0,1,238.9,347ZM193,512a318.5,318.5,0,0,1,3.6-47.8l-32.6-5a352,352,0,0,0,0,105.5l32.6-4.9A319.5,319.5,0,0,1,193,512ZM693.9,813.3,677,785.1a317.8,317.8,0,0,1-88.3,36.6l7.9,32A350.3,350.3,0,0,0,693.9,813.3ZM831,512a319.5,319.5,0,0,1-3.6,47.8l32.6,4.9a352,352,0,0,0,0-105.5l-32.6,5A318.5,318.5,0,0,1,831,512Zm22.7,84.4-32-7.9A319,319,0,0,1,785.1,677l28.3,17A348.9,348.9,0,0,0,853.7,596.4Zm-293.9,231a319.1,319.1,0,0,1-95.6,0L459.3,860a351.3,351.3,0,0,0,105.4,0Zm209-126.2a318.1,318.1,0,0,1-67.6,67.5l19.6,26.6A355.1,355.1,0,0,0,795.4,721Zm-67.6-446a318.6,318.6,0,0,1,67.6,67.6L795.4,303A354.6,354.6,0,0,0,721,228.6Zm-446,67.6a318.6,318.6,0,0,1,67.6-67.6L303,228.6A354.6,354.6,0,0,0,228.6,303ZM813.4,330l-28.3,17a317.8,317.8,0,0,1,36.6,88.3l32-7.9A348.9,348.9,0,0,0,813.4,330ZM464.2,196.6a319.1,319.1,0,0,1,95.6,0l4.9-32.6a351.3,351.3,0,0,0-105.4,0ZM272.1,804.1,204,819.9l15.9-68.1-32.1-7.5-15.9,68.1a33,33,0,0,0,24.6,39.7,34.5,34.5,0,0,0,15,0l68.1-15.7Zm-77.5-89.2,32.2,7.4,11-47.2a316.2,316.2,0,0,1-35.5-86.6l-32,7.9a353.3,353.3,0,0,0,32.4,83.7Zm154,71.4-47.2,11,7.5,32.2,34.7-8.1a349,349,0,0,0,83.7,32.4l7.9-32a316.7,316.7,0,0,1-86.3-35.7ZM512,226c-158,.1-285.9,128.2-285.9,286.1a286.7,286.7,0,0,0,43.9,152L242.5,781.5,359.8,754c133.7,84.1,310.3,44,394.4-89.6S798.3,354.2,664.7,270A286.7,286.7,0,0,0,512,226s"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
BIN
src/assets/software/logo-spotify.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
src/assets/software/logo-vivaldi.png
Normal file
After Width: | Height: | Size: 63 KiB |
BIN
src/assets/software/logo-youtube-revanced.png
Normal file
After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |