parent
157e4a0722
commit
663bd320bb
3 changed files with 1934 additions and 1 deletions
|
@ -143,6 +143,23 @@
|
|||
"icon": "waddle",
|
||||
"slug": "waddle"
|
||||
},
|
||||
{
|
||||
"name": "🌸 flowR",
|
||||
"desc": "flowR is a dataflow analyzer and program slicer created by <a href=\"https://eagleoutice.github.io/portfolio/\">Florian Sihler</a> for the R programming language. I work on it as a research assistant, and I've created the VSCode extension and RStudio addin for it, as well as contributed to the core codebase.",
|
||||
"links": [
|
||||
{
|
||||
"name": "GitHub organization",
|
||||
"link": "https://github.com/flowr-analysis"
|
||||
},
|
||||
{
|
||||
"name": "VSCode extension",
|
||||
"link": "https://marketplace.visualstudio.com/items?itemName=code-inspect.vscode-flowr"
|
||||
}
|
||||
],
|
||||
"status": "Team member",
|
||||
"icon": "flowr.svg",
|
||||
"slug": "flowr"
|
||||
},
|
||||
{
|
||||
"name": "🎟️ Touchy Tickets",
|
||||
"desc": "Touchy Tickets is a fun idle game for Android that has you selling tickets with various theme park attractions. You can download it for free on the Google Play Store, as well as see its public source code.",
|
||||
|
|
|
@ -8,7 +8,11 @@
|
|||
{% for item in site.data.projects %}
|
||||
<div class="card bg-light project rounded-0">
|
||||
<div class="card-body">
|
||||
<img class="project-image" src="res/projects/{{ item.icon }}.png" alt="">
|
||||
{% assign icon = item.icon %}
|
||||
{% unless icon contains "." %}
|
||||
{% assign icon = icon | append: ".png" %}
|
||||
{% endunless %}
|
||||
<img class="project-image" src="res/projects/{{ icon }}" alt="">
|
||||
|
||||
{% if item.status %}
|
||||
<span class="text-muted project-status">{{ item.status }}</span>
|
||||
|
|
1912
res/projects/flowr.svg
Normal file
1912
res/projects/flowr.svg
Normal file
File diff suppressed because it is too large
Load diff
After Width: | Height: | Size: 79 KiB |
Loading…
Reference in a new issue