From 3c6c8732aa09e9a04c8302808af8c73cfe850a62 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Thu, 29 Feb 2024 06:57:45 -0700 Subject: [PATCH 01/35] Ferris gopher (credit @FedericoSchonborn) --- go-rust.svg | 192 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 192 insertions(+) create mode 100644 go-rust.svg diff --git a/go-rust.svg b/go-rust.svg new file mode 100644 index 0000000..a4801e7 --- /dev/null +++ b/go-rust.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + From 83477ddd626058522f9e01ef2903da20d168b093 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 06:30:56 -0700 Subject: [PATCH 02/35] Add script to import pull requests --- toolkit.nu | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 toolkit.nu diff --git a/toolkit.nu b/toolkit.nu new file mode 100644 index 0000000..02a3b01 --- /dev/null +++ b/toolkit.nu @@ -0,0 +1,16 @@ +# Given a url to a pull request against a repo in our fork network, then apply the diff and make a commit +export def import-pull-request [ + pull_request # Url to a pull request (eg ) +] { + let pull_request_data = $pull_request + | parse "{rest}github.com/{user}/{repo}/pull/{pull_request_id}" + | first + | http get $"https://api.github.com/repos/($in.user)/($in.repo)/pulls/($in.pull_request_id)" + let message = $pull_request_data.title + let user = $pull_request_data.user.login + let url = $pull_request_data.head.repo.html_url + let commit_message = $"($message) \(credit @($user)) <($url)>" + http get $pull_request_data.diff_url | git apply + git add -A + git commit -m $commit_message +} From 971354c4bb22e71af84c9a2f651a57f2dba79857 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 06:39:49 -0700 Subject: [PATCH 03/35] Django in the style of Ruby on Rails (credit @jacobian) --- django-rails.svg | 65 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 django-rails.svg diff --git a/django-rails.svg b/django-rails.svg new file mode 100644 index 0000000..ebf1de0 --- /dev/null +++ b/django-rails.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + From 443e65e73119bd384c9d14288899b4b9e3081f45 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 06:43:14 -0700 Subject: [PATCH 04/35] GTK in the style of React + Qt in the style of GTK (credit @kuanyui) --- gtk-reactjs.svg | 98 +++++++++++++++++++++++++++++++++++++++++++++++++ qt-gtk.svg | 82 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 180 insertions(+) create mode 100644 gtk-reactjs.svg create mode 100644 qt-gtk.svg diff --git a/gtk-reactjs.svg b/gtk-reactjs.svg new file mode 100644 index 0000000..a407acd --- /dev/null +++ b/gtk-reactjs.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + ono ono (kuanyui) + + + + + + diff --git a/qt-gtk.svg b/qt-gtk.svg new file mode 100644 index 0000000..5314fe1 --- /dev/null +++ b/qt-gtk.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + ono ono (kuanyui) + + + + + + From 4511eba9ecede0e4cd722bb4e2ec061040e7826e Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 06:51:59 -0700 Subject: [PATCH 05/35] Atom in the style of Reactjs (credit @mauro-balades) --- atom-reactjs.svg | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 atom-reactjs.svg diff --git a/atom-reactjs.svg b/atom-reactjs.svg new file mode 100644 index 0000000..504f7ad --- /dev/null +++ b/atom-reactjs.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + From c1d099142ff35c975b44401036444d69b0f71c50 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 06:53:58 -0700 Subject: [PATCH 06/35] Ruby in the style of Python (credit @kuanyui) --- ruby-python.svg | 291 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 291 insertions(+) create mode 100644 ruby-python.svg diff --git a/ruby-python.svg b/ruby-python.svg new file mode 100644 index 0000000..455cc5c --- /dev/null +++ b/ruby-python.svg @@ -0,0 +1,291 @@ + + + + + + + + image/svg+xml + + + + ono ono (kuanyui) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 5ecd862bb55a79432a97b79fcdced6a5efc3d468 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 06:55:03 -0700 Subject: [PATCH 07/35] PostgreSQL in the style of MongoDB (credit @kuanyui) --- postgresql-mongodb.svg | 114 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 postgresql-mongodb.svg diff --git a/postgresql-mongodb.svg b/postgresql-mongodb.svg new file mode 100644 index 0000000..3667ade --- /dev/null +++ b/postgresql-mongodb.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ono ono (kuanyui) + + + + + + From 7f9d4d4b2349aaa769464d87bc95d0c6ba277783 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 06:56:44 -0700 Subject: [PATCH 08/35] .NET in the style of PHP (credit @romanzipp) --- dotnet-php.svg | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 dotnet-php.svg diff --git a/dotnet-php.svg b/dotnet-php.svg new file mode 100644 index 0000000..05532b4 --- /dev/null +++ b/dotnet-php.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 2883dc3d2cb8861861ab7431e259d01b86b6de21 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:01:27 -0700 Subject: [PATCH 09/35] PHP in the style of Python (credit @TheOPtimal) --- php-python.svg | 282 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 282 insertions(+) create mode 100644 php-python.svg diff --git a/php-python.svg b/php-python.svg new file mode 100644 index 0000000..92f1ef1 --- /dev/null +++ b/php-python.svg @@ -0,0 +1,282 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 6b54897fb71a24be229649706ad0d0cbc736b850 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:03:33 -0700 Subject: [PATCH 10/35] mariaDB in the style of mySQL + mySQL in the style of mariaDB (credit @jkoop) --- mariadb-mysql.svg | 25 +++++++++++++++++++++++++ mysql-mariadb.svg | 22 ++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 mariadb-mysql.svg create mode 100644 mysql-mariadb.svg diff --git a/mariadb-mysql.svg b/mariadb-mysql.svg new file mode 100644 index 0000000..50b9a2e --- /dev/null +++ b/mariadb-mysql.svg @@ -0,0 +1,25 @@ + + + + + +image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/mysql-mariadb.svg b/mysql-mariadb.svg new file mode 100644 index 0000000..b22638c --- /dev/null +++ b/mysql-mariadb.svg @@ -0,0 +1,22 @@ + + + + + +image/svg+xml + +MDB-VLogo_RGB + + + + + + +MDB-VLogo_RGB + + + + + + + From 870287391e5bdb9531d8a070c97d268bb4e25604 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:08:11 -0700 Subject: [PATCH 11/35] Bootstrap in the style of Wordpress (credit @SwatDoge) --- bootstrap-wordpress.svg | 3826 +++++++++++++++++++++++++++++++++++++++ toolkit.nu | 2 +- 2 files changed, 3827 insertions(+), 1 deletion(-) create mode 100644 bootstrap-wordpress.svg diff --git a/bootstrap-wordpress.svg b/bootstrap-wordpress.svg new file mode 100644 index 0000000..c5fd2d2 --- /dev/null +++ b/bootstrap-wordpress.svg @@ -0,0 +1,3826 @@ +]> \ No newline at end of file diff --git a/toolkit.nu b/toolkit.nu index 02a3b01..4252192 100644 --- a/toolkit.nu +++ b/toolkit.nu @@ -8,7 +8,7 @@ export def import-pull-request [ | http get $"https://api.github.com/repos/($in.user)/($in.repo)/pulls/($in.pull_request_id)" let message = $pull_request_data.title let user = $pull_request_data.user.login - let url = $pull_request_data.head.repo.html_url + let url = ($pull_request_data.head.repo.html_url? | default deleted) let commit_message = $"($message) \(credit @($user)) <($url)>" http get $pull_request_data.diff_url | git apply git add -A From 25456b1a3d2d71e18da2ebf26e6f3e8c8ab3d929 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:17:22 -0700 Subject: [PATCH 12/35] Haskell in the style of Perl (credit @hillu) --- haskell-perl.svg | 92 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 haskell-perl.svg diff --git a/haskell-perl.svg b/haskell-perl.svg new file mode 100644 index 0000000..2cecaae --- /dev/null +++ b/haskell-perl.svg @@ -0,0 +1,92 @@ + + + + + + + perl-logo-freelogovectors.net + + Haskell + + + + + + + + + + perl-logo-freelogovectors.net + + + + From d086728d33c3f9b6e57ee8fb7c85fc18ad418d31 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:20:58 -0700 Subject: [PATCH 13/35] Stack Overflow in the style of Google (credit @niklas-englert) --- stackoverflow-google.svg | 89 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 stackoverflow-google.svg diff --git a/stackoverflow-google.svg b/stackoverflow-google.svg new file mode 100644 index 0000000..047c1f3 --- /dev/null +++ b/stackoverflow-google.svg @@ -0,0 +1,89 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + From 7561aa2191cfecedab0c73739aa9f95575416b03 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:22:03 -0700 Subject: [PATCH 14/35] Google in the style of Stack Overflow (credit @niklas-englert) --- google-stackoverflow.svg | 80 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 google-stackoverflow.svg diff --git a/google-stackoverflow.svg b/google-stackoverflow.svg new file mode 100644 index 0000000..546054d --- /dev/null +++ b/google-stackoverflow.svg @@ -0,0 +1,80 @@ + +image/svg+xml + \ No newline at end of file From 54f826483ee6a4f6aad53de078524d08119d9c1c Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:23:36 -0700 Subject: [PATCH 15/35] Discord in the style of Skype (credit @AndrisJefimovs) --- discord-skype.svg | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 discord-skype.svg diff --git a/discord-skype.svg b/discord-skype.svg new file mode 100644 index 0000000..fa93488 --- /dev/null +++ b/discord-skype.svg @@ -0,0 +1,5 @@ + + + + + From 7887eb5184da41f5b94912b7bd2e4010c11a45bd Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:24:28 -0700 Subject: [PATCH 16/35] nginx in the style of Apache (credit @AndrisJefimovs) --- nginx-apache.svg | 102 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 nginx-apache.svg diff --git a/nginx-apache.svg b/nginx-apache.svg new file mode 100644 index 0000000..0a2e4c0 --- /dev/null +++ b/nginx-apache.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 324f4a0c1c0df1fc7a19edaeb7232245baf1fbf3 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:26:12 -0700 Subject: [PATCH 17/35] PostgreSQL in the style of PHP (credit @mnixry) --- postgresql-php.svg | 430 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 430 insertions(+) create mode 100644 postgresql-php.svg diff --git a/postgresql-php.svg b/postgresql-php.svg new file mode 100644 index 0000000..1226946 --- /dev/null +++ b/postgresql-php.svg @@ -0,0 +1,430 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From b3d6e3aeb42f18fe80519eff07f82f3946172bd3 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:39:47 -0700 Subject: [PATCH 18/35] VS Code in the style of Sublime Text (credit @WubiCookie) --- vscode-sublimetext.svg | 612 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 612 insertions(+) create mode 100644 vscode-sublimetext.svg diff --git a/vscode-sublimetext.svg b/vscode-sublimetext.svg new file mode 100644 index 0000000..59b4991 --- /dev/null +++ b/vscode-sublimetext.svg @@ -0,0 +1,612 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From c39f93785798ea55f4eed1a5863cfa2dfdcc193c Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:43:14 -0700 Subject: [PATCH 19/35] Facebook in the style of Fedora + Racket in the style of Half-Life 2 (credit @Nan0Scho1ar) --- facebook-fedora.svg | 99 ++++++++++++++++++++++++++++++++++++++++++++ racket-halflife2.svg | 90 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 189 insertions(+) create mode 100644 facebook-fedora.svg create mode 100644 racket-halflife2.svg diff --git a/facebook-fedora.svg b/facebook-fedora.svg new file mode 100644 index 0000000..0801ea9 --- /dev/null +++ b/facebook-fedora.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/racket-halflife2.svg b/racket-halflife2.svg new file mode 100644 index 0000000..7701c7d --- /dev/null +++ b/racket-halflife2.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + From 0af1aecf2afb84b56678080da7869da2c4f511a4 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:46:00 -0700 Subject: [PATCH 20/35] Azure in the style of AWS + AWS in the style of Azure (credit @jogerj) --- aws-azure.svg | 1 + azure-aws.svg | 1 + 2 files changed, 2 insertions(+) create mode 100644 aws-azure.svg create mode 100644 azure-aws.svg diff --git a/aws-azure.svg b/aws-azure.svg new file mode 100644 index 0000000..c075ba3 --- /dev/null +++ b/aws-azure.svg @@ -0,0 +1 @@ + diff --git a/azure-aws.svg b/azure-aws.svg new file mode 100644 index 0000000..14be11f --- /dev/null +++ b/azure-aws.svg @@ -0,0 +1 @@ + From 40e754fef6b051679272b2f54ed54fb41ff0f2d5 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:47:52 -0700 Subject: [PATCH 21/35] cmd.exe in the style of Bash (credit @JuenTingShie) --- cmd-bash.svg | 225 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 225 insertions(+) create mode 100644 cmd-bash.svg diff --git a/cmd-bash.svg b/cmd-bash.svg new file mode 100644 index 0000000..4c57477 --- /dev/null +++ b/cmd-bash.svg @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + > + + + CMD + THE COMMAND PROMPT + + From 57d49faa62405d058f2b3b52ae2dc2414a80ff09 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:50:18 -0700 Subject: [PATCH 22/35] MySQL in the style of MongoDB (credit @gonzaloPzl) --- mysql-mongodb.svg | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 mysql-mongodb.svg diff --git a/mysql-mongodb.svg b/mysql-mongodb.svg new file mode 100644 index 0000000..111a14e --- /dev/null +++ b/mysql-mongodb.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + From 75dd0f2821604670c1668f4bcd8b12aeb6f1e03b Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:51:38 -0700 Subject: [PATCH 23/35] Microsoft Teams in the style of Jira (credit @gonzaloPzl) --- teams-jira.svg | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 teams-jira.svg diff --git a/teams-jira.svg b/teams-jira.svg new file mode 100644 index 0000000..c838feb --- /dev/null +++ b/teams-jira.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + From 139fce1bc242da7b259f444e1046c4d197d72277 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:53:40 -0700 Subject: [PATCH 24/35] ggplot2 in the style of matplotlib (credit @srakrn) --- ggplot2-matplotlib.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 ggplot2-matplotlib.svg diff --git a/ggplot2-matplotlib.svg b/ggplot2-matplotlib.svg new file mode 100644 index 0000000..e502cd8 --- /dev/null +++ b/ggplot2-matplotlib.svg @@ -0,0 +1 @@ + \ No newline at end of file From 738d96dabf10b13eac010e88ec6ad21a0e8daa35 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:55:04 -0700 Subject: [PATCH 25/35] Kafka in the style of RabbitMQ (credit @m0sh1x2) --- kafka-rabbitmq.svg | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 kafka-rabbitmq.svg diff --git a/kafka-rabbitmq.svg b/kafka-rabbitmq.svg new file mode 100644 index 0000000..b6cfefb --- /dev/null +++ b/kafka-rabbitmq.svg @@ -0,0 +1,11 @@ + + rabbitmq + + + + + + + \ No newline at end of file From 045140024f3eb00bc9e18535fa205bf2ea747a86 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:56:13 -0700 Subject: [PATCH 26/35] Cargo in the style of Docker (credit @Endermanbugzjfc) --- cargo-docker.svg | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 cargo-docker.svg diff --git a/cargo-docker.svg b/cargo-docker.svg new file mode 100644 index 0000000..b8e6bc1 --- /dev/null +++ b/cargo-docker.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 260d33e81921dded223d39456a163346dfb49988 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:56:53 -0700 Subject: [PATCH 27/35] Apple in the style of LaTeX (credit @bnidevs) --- apple-latex.svg | 190 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 190 insertions(+) create mode 100644 apple-latex.svg diff --git a/apple-latex.svg b/apple-latex.svg new file mode 100644 index 0000000..60d5f67 --- /dev/null +++ b/apple-latex.svg @@ -0,0 +1,190 @@ + + + + + + + + + + + + + + A + P + P + L + E + + + + The Project + + + + From 75066deeff35ce1d5fda1cf89879cc7cf2c2fef7 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 07:58:42 -0700 Subject: [PATCH 28/35] TensorFlow in the style of Scikit-learn (credit @rolisz) --- tensorflow-sklearn.svg | 124 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 124 insertions(+) create mode 100644 tensorflow-sklearn.svg diff --git a/tensorflow-sklearn.svg b/tensorflow-sklearn.svg new file mode 100644 index 0000000..7e34dee --- /dev/null +++ b/tensorflow-sklearn.svg @@ -0,0 +1,124 @@ + +image/svg+xml + + + + + + + + + + + + From b76c2a188269bda6736937b02021dbd37ba846a7 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 08:04:35 -0700 Subject: [PATCH 29/35] Python in the style of C++ (credit @FadeevEgor) --- python-cpp.svg | 189 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 189 insertions(+) create mode 100644 python-cpp.svg diff --git a/python-cpp.svg b/python-cpp.svg new file mode 100644 index 0000000..cf2199a --- /dev/null +++ b/python-cpp.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + From 877a58862a0dd34220ceb7ec359822bbe350da56 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 08:07:05 -0700 Subject: [PATCH 30/35] Counter-Strike in the style of CSS (credit @huynp1999) --- counterstrike-css.svg | 59 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 counterstrike-css.svg diff --git a/counterstrike-css.svg b/counterstrike-css.svg new file mode 100644 index 0000000..da9003d --- /dev/null +++ b/counterstrike-css.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + From 1433d0ebf98d83ebfe503905e376c6dac2720356 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 08:11:55 -0700 Subject: [PATCH 31/35] VisualStudio in the style of Intellij (WebStorm) (credit @eins78) --- visualstudio-intellij.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 visualstudio-intellij.svg diff --git a/visualstudio-intellij.svg b/visualstudio-intellij.svg new file mode 100644 index 0000000..b605c4b --- /dev/null +++ b/visualstudio-intellij.svg @@ -0,0 +1 @@ + \ No newline at end of file From c42f9070bb58166c4f82ebd9fd2a6cc6e959724d Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 08:14:41 -0700 Subject: [PATCH 32/35] Zig in the style of PHP (credit @zebreus) --- zig-php.svg | 157 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 zig-php.svg diff --git a/zig-php.svg b/zig-php.svg new file mode 100644 index 0000000..32de18b --- /dev/null +++ b/zig-php.svg @@ -0,0 +1,157 @@ + + + Zig Logo + + + + image/svg+xml + + Zig Logo + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 822da18d1f0b69fcada8ebf12486cfb25f234151 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 08:16:42 -0700 Subject: [PATCH 33/35] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7c52c17..a4d416d 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ repo. Anyone is also welcome to submit new pull requests to this repo directly. When submitting a pull request please follow these naming conventions: -`[text]-[logo name]` +`[text]-[style]` Example: The text says python in the logo style of php. `python-php.svg` @@ -36,6 +36,6 @@ There is already an `emacs-vim.svg` in the repo. Name your file `emacs-vim-02.svg`. #### TODO -- [ ] Finish importing pull requests +- [x] Finish importing pull requests - [x] Naming conventions - [ ] Standard image size From ea7304e4605069f349822341ff1cd011f4762fd3 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Fri, 1 Mar 2024 14:05:51 -0700 Subject: [PATCH 34/35] SUSE in the style of Red Hat + Red Hat in the style of SUSE (credit @bmwiedemann) --- redhat-suse.svg | 70 +++++++++++++++++++++++++ suse-redhat.svg | 132 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 202 insertions(+) create mode 100644 redhat-suse.svg create mode 100644 suse-redhat.svg diff --git a/redhat-suse.svg b/redhat-suse.svg new file mode 100644 index 0000000..42912f6 --- /dev/null +++ b/redhat-suse.svg @@ -0,0 +1,70 @@ + + + + + SUSE Software Solutions Germany GmbH logo + An enterprise Linux vendor based in Nürnberg, Germany + + + + image/svg+xml + + SUSE Software Solutions Germany GmbH logo + + + + + + diff --git a/suse-redhat.svg b/suse-redhat.svg new file mode 100644 index 0000000..2da01b9 --- /dev/null +++ b/suse-redhat.svg @@ -0,0 +1,132 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 9a46a174de5ca9545f10fb6c7cf88e3a2e2248f4 Mon Sep 17 00:00:00 2001 From: NonlinearFruit <1123benji5813@gmail.com> Date: Mon, 4 Mar 2024 07:55:37 -0600 Subject: [PATCH 35/35] Neovim in the style of Helix (#1) --- neovim_helix.svg | 78 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100755 neovim_helix.svg diff --git a/neovim_helix.svg b/neovim_helix.svg new file mode 100755 index 0000000..5a89cf0 --- /dev/null +++ b/neovim_helix.svg @@ -0,0 +1,78 @@ + +Neovim