diff --git a/analysis/plot_analysis.ipynb b/analysis/plot_analysis.ipynb index c835ac8..a7e660a 100644 --- a/analysis/plot_analysis.ipynb +++ b/analysis/plot_analysis.ipynb @@ -14,10 +14,10 @@ "Index(['html_url', 'howfairis_repository', 'howfairis_license',\n", " 'howfairis_registry', 'howfairis_citation', 'howfairis_checklist',\n", " 'fairscore', 'organisation', 'dlr_soft_class', 'project',\n", - " 'quick_start_guide', 'readme_content', 'help_commands', 'test_folder',\n", - " 'requirements_explicit', 'continuous_integration', 'ci_tool',\n", - " 'add_lint_rule', 'add_test_rule', 'language', 'type', 'researchGroup',\n", - " 'comment_percentage', 'comment_category', 'Unnamed: 24'],\n", + " 'installation_instruction', 'project_information', 'usage_guide',\n", + " 'test_folder', 'requirements_explicit', 'continuous_integration',\n", + " 'ci_tool', 'add_lint_rule', 'add_test_rule', 'language', 'type',\n", + " 'research_group', 'comment_percentage', 'comment_at_start'],\n", " dtype='object')\n" ] } @@ -52,7 +52,7 @@ "from plot_functions import *\n", "\n", "file_path = '../data/all_research_repos.csv'\n", - "df = pd.read_csv(file_path, sep=';', low_memory=False)\n", + "df = pd.read_csv(file_path, sep=\";\", low_memory=False)\n", "print(df.columns)\n" ] }, @@ -266,41 +266,26 @@ "metadata": {}, "outputs": [ { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/devkate/Desktop/potsdam-research_repos/scripts/plot_functions.py:252: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " df['comment_category'] = df['comment_category'].replace('none', 'less')\n", - "/Users/devkate/Desktop/potsdam-research_repos/scripts/plot_functions.py:254: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame.\n", - "Try using .loc[row_indexer,col_indexer] = value instead\n", - "\n", - "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " df['comment_category'] = pd.Categorical(\n" + "ename": "KeyError", + "evalue": "'comment_at_start'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/pandas/core/indexes/base.py:3802\u001b[0m, in \u001b[0;36mIndex.get_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3801\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m-> 3802\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_engine\u001b[38;5;241m.\u001b[39mget_loc(casted_key)\n\u001b[1;32m 3803\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m err:\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/pandas/_libs/index.pyx:138\u001b[0m, in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/pandas/_libs/index.pyx:165\u001b[0m, in \u001b[0;36mpandas._libs.index.IndexEngine.get_loc\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mpandas/_libs/hashtable_class_helper.pxi:5745\u001b[0m, in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "File \u001b[0;32mpandas/_libs/hashtable_class_helper.pxi:5753\u001b[0m, in \u001b[0;36mpandas._libs.hashtable.PyObjectHashTable.get_item\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mKeyError\u001b[0m: 'comment_at_start'", + "\nThe above exception was the direct cause of the following exception:\n", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "Cell \u001b[0;32mIn[7], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m plot_comment_start(df, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mresults/plot_comment_at_start.png\u001b[39m\u001b[38;5;124m'\u001b[39m)\n", + "File \u001b[0;32m~/Desktop/potsdam-research_repos/scripts/plot_functions.py:253\u001b[0m, in \u001b[0;36mplot_comment_start\u001b[0;34m(df, file_path)\u001b[0m\n\u001b[1;32m 250\u001b[0m df \u001b[38;5;241m=\u001b[39m df[df[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mlanguage\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39misin([\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mPython\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mC++\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mR\u001b[39m\u001b[38;5;124m'\u001b[39m])]\n\u001b[1;32m 252\u001b[0m \u001b[38;5;66;03m# Replace 'none' with 'less' and ensure comment_category\u001b[39;00m\n\u001b[0;32m--> 253\u001b[0m df[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mcomment_at_start\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m df[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mcomment_at_start\u001b[39m\u001b[38;5;124m'\u001b[39m]\u001b[38;5;241m.\u001b[39mreplace(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mnone\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mless\u001b[39m\u001b[38;5;124m'\u001b[39m)\n\u001b[1;32m 254\u001b[0m comment_order \u001b[38;5;241m=\u001b[39m [\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mless\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124msome\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mmore\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mmost\u001b[39m\u001b[38;5;124m'\u001b[39m]\n\u001b[1;32m 255\u001b[0m df[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mcomment_at_start\u001b[39m\u001b[38;5;124m'\u001b[39m] \u001b[38;5;241m=\u001b[39m pd\u001b[38;5;241m.\u001b[39mCategorical(\n\u001b[1;32m 256\u001b[0m df[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mcomment_at_start\u001b[39m\u001b[38;5;124m'\u001b[39m],\n\u001b[1;32m 257\u001b[0m categories\u001b[38;5;241m=\u001b[39mcomment_order,\n\u001b[1;32m 258\u001b[0m ordered\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mTrue\u001b[39;00m\n\u001b[1;32m 259\u001b[0m )\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/pandas/core/frame.py:3807\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[0;34m(self, key)\u001b[0m\n\u001b[1;32m 3805\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns\u001b[38;5;241m.\u001b[39mnlevels \u001b[38;5;241m>\u001b[39m \u001b[38;5;241m1\u001b[39m:\n\u001b[1;32m 3806\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_getitem_multilevel(key)\n\u001b[0;32m-> 3807\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mcolumns\u001b[38;5;241m.\u001b[39mget_loc(key)\n\u001b[1;32m 3808\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_integer(indexer):\n\u001b[1;32m 3809\u001b[0m indexer \u001b[38;5;241m=\u001b[39m [indexer]\n", + "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/pandas/core/indexes/base.py:3804\u001b[0m, in \u001b[0;36mIndex.get_loc\u001b[0;34m(self, key, method, tolerance)\u001b[0m\n\u001b[1;32m 3802\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_engine\u001b[38;5;241m.\u001b[39mget_loc(casted_key)\n\u001b[1;32m 3803\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m \u001b[38;5;28;01mas\u001b[39;00m err:\n\u001b[0;32m-> 3804\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(key) \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01merr\u001b[39;00m\n\u001b[1;32m 3805\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mTypeError\u001b[39;00m:\n\u001b[1;32m 3806\u001b[0m \u001b[38;5;66;03m# If we have a listlike key, _check_indexing_error will raise\u001b[39;00m\n\u001b[1;32m 3807\u001b[0m \u001b[38;5;66;03m# InvalidIndexError. Otherwise we fall through and re-raise\u001b[39;00m\n\u001b[1;32m 3808\u001b[0m \u001b[38;5;66;03m# the TypeError.\u001b[39;00m\n\u001b[1;32m 3809\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_check_indexing_error(key)\n", + "\u001b[0;31mKeyError\u001b[0m: 'comment_at_start'" ] - }, - { - "data": { - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAm0AAAHWCAYAAAAl7r6VAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjcuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/bCgiHAAAACXBIWXMAAA9hAAAPYQGoP6dpAABORklEQVR4nO3de3zOdePH8fdltpnZhmEzLZZDNuYQEtKmMJRIJ3Qi6eCQ8yliunMsmSghje5u6YA7lWTRhLmdZhRDOR+23xCb0ybb5/eH23V3tWGXrmtz2ev5eFyPdn2u7/X9vr+72vb2PVqMMUYAAAC4qRUr7AAAAAC4PkobAACAC6C0AQAAuABKGwAAgAugtAEAALgAShsAAIALoLQBAAC4AEobAACACyhe2AFuBjk5OTp27Jh8fHxksVgKOw4AFChjjM6cOaOgoCAVK8a/5YGbFaVN0rFjxxQcHFzYMQCgUB0+fFi33XZbYccAcBWUNkk+Pj6SLv/C8vX1LeQ0AFCwMjIyFBwcbP1dCODmRGmTrLtEfX19KW0AiiwODwFubhy8AAAA4AIobQAAAC6A0gYAAOACOKYNAFAgsrOz9ccffxR2DOCm4e7uLjc3t3xPT2kDADiVMUapqak6ffp0YUcBbjqlS5dWYGBgvk4EorQBAJzqSmGrUKGCSpYsyVmqgC7/Y+b8+fNKS0uTJFWsWPG676G0AQCcJjs721rY/P39CzsOcFPx8vKSJKWlpalChQrX3VXKiQgAAKe5cgxbyZIlCzkJcHO68rORn+M9KW0AAKdjlyiQN3t+NihtAAAALoDSBgC4KUVGRqp///7W51WqVFFMTEyh5fmzbt26qWPHjtecJj4+XhaLhbNm4TCUNgBAoenWrZssFkuux2+//abFixfrH//4R2FHzNO0adM0b9486/O/Fkzkn6O+d44oyY4u2vPmzVPp0qUdMi+pkEvbTz/9pPbt2ysoKEgWi0X//ve/bV43xig6OlpBQUHy8vJSZGSkduzYYTNNVlaW+vbtq3Llysnb21sPP/ywjhw5UoBrAQD4O9q0aaOUlBSbR0hIiMqWLSsfH5/CjpcnPz8/h/4xxq3HGReSLtTSdu7cOdWtW1czZszI8/XJkyfrnXfe0YwZM7Rp0yYFBgaqVatWOnPmjHWa/v37a8mSJVq4cKHWrl2rs2fP6qGHHlJ2dnZBrQYA4G/w9PRUYGCgzcPNze26W2DS09P14osvqkKFCvL19dX999+vbdu2WV/ftm2bWrRoIR8fH/n6+qpBgwbavHlznvMaNGiQ2rdvb30eExMji8Wib7/91jp25513atasWZJsd49269ZNq1ev1rRp06xbCg8cOGB935YtW9SwYUOVLFlSTZs21e7du6/5/Thy5Ig6d+6ssmXLytvbWw0bNtSGDRusr8+cOVNVq1aVh4eH7rzzTv3zn/+0eb/FYtGsWbP00EMPqWTJkgoNDdX69ev122+/KTIyUt7e3mrSpIn27t1rfU90dLTq1aunjz76SLfffrtKlSqlV155RdnZ2Zo8ebICAwNVoUIFjRs3zq7P4Mp8//nPf6pKlSry8/NT586drX/Hr/e9+7NPPvlEDRs2lI+PjwIDA9W1a1frNc4OHDigFi1aSJLKlCkji8Wibt265TmfgwcPqn379ipTpoy8vb1Vq1YtLVu27JrzWL58ue69916VLl1a/v7+euihh2y+fwcOHJDFYtHnn3+uyMhIlShRQp988om6d++u9PR067pFR0df5VPPJ3OTkGSWLFlifZ6Tk2MCAwPNxIkTrWOZmZnGz8/PfPDBB8YYY06fPm3c3d3NwoULrdMcPXrUFCtWzCxfvjzfy05PTzeSTHp6+t9fEQBwMc78HXjhwgWzc+dOc+HChTxff+6550yHDh3yfC0iIsL069fP+rxy5cpm6tSpxpjLfyOaNWtm2rdvbzZt2mT27NljBg0aZPz9/c3JkyeNMcbUqlXLPP300yY5Odns2bPHfP755yYpKSnPZS1dutT4+fmZ7OxsY4wxHTt2NOXKlTNDhgwxxhiTkpJiJJnk5ORcuU+fPm2aNGlievbsaVJSUkxKSoq5dOmS+fHHH40k07hxYxMfH2927Nhhmjdvbpo2bXrV79eZM2fMHXfcYZo3b27WrFljfv31V/PZZ5+ZhIQEY4wxixcvNu7u7ua9994zu3fvNlOmTDFubm5m1apV1nlIMpUqVTKfffaZ2b17t+nYsaOpUqWKuf/++83y5cvNzp07zT333GPatGljfc+YMWNMqVKlzGOPPWZ27Nhhli5dajw8PExUVJTp27ev2bVrl/noo4+MJLN+/fp8fwZX5tupUyfz888/m59++skEBgaa11577Zrfu7zMnTvXLFu2zOzdu9esX7/e3HPPPaZt27bGGGMuXbpkFi1aZCSZ3bt3m5SUFHP69Ok85/Pggw+aVq1ame3bt5u9e/ear7/+2qxevfqa8/jyyy/NokWLzJ49e8zWrVtN+/btTXh4uPX/l/379xtJpkqVKmbRokVm37595uDBgyYmJsb4+vpa1+3MmTO58lzvZ+TPbtrStnfvXiPJJCYm2kz38MMPm2effdYYY8zKlSuNJPP777/bTFOnTh0zevTofC+b0gagKCvs0ubm5ma8vb2tj8cee8wYc+3StnLlSuPr62syMzNt5le1alUza9YsY4wxPj4+Zt68efnKefr0aVOsWDGzefNmk5OTY/z9/c2ECRNMo0aNjDHGLFiwwAQEBNjk/nPZ/GtWY4y1tP3www/WsW+//dZIuur3Y9asWcbHx8daev6qadOmpmfPnjZjjz/+uGnXrp31uSQzatQo6/P169cbSWbu3LnWsU8//dSUKFHC+nzMmDGmZMmSJiMjwzoWFRVlqlSpYi0mxhhz5513mgkTJhhj8vcZ5DXfIUOGmMaNG1uf5/W9y4+NGzcaSdYidOX7ferUqWu+Lzw83ERHR+f5Wn7nkZaWZiSZn3/+2Rjzv9IWExNjM11sbKzx8/O75rzsKW037YkIqampkqSAgACb8YCAAOtrqamp8vDwUJkyZa46TV6ysrKUkZFh8wAAFI4WLVooKSnJ+nj33Xev+54tW7bo7Nmz8vf3V6lSpayP/fv3W3dbDRw4UC+88IJatmypiRMn2uzO+is/Pz/Vq1dP8fHx+vnnn1WsWDG99NJL2rZtm86cOaP4+HhFRETc0PrVqVPH+vWVWxVd2a33V0lJSapfv77Kli2b5+vJyclq1qyZzVizZs2UnJx81WVe+TsaHh5uM5aZmWnz969KlSo2xxAGBAQoLCxMxYoVsxm7kj0/n0Fe861YseJV1/9atm7dqg4dOqhy5cry8fFRZGSkJOnQoUN2zefVV1/Vm2++qWbNmmnMmDHavn37dd+zd+9ede3aVXfccYd8fX0VEhKS57IbNmxoVxZ73fS3sfrrReeMMde9EN31ppkwYYLGjh3rkHw3Iie1RqEt21mKBe4p7AhOwWflOvisXJe3t7eqVatm13tycnJUsWJFxcfH53rtygkC0dHR6tq1q7799lt99913GjNmjBYuXKhHHnkkz3lGRkYqPj5eHh4eioiIUJkyZVSrVi2tW7dO8fHxN3yGo7u7u/XrK3+bcnJy8pz2ym2NriU/fxfzWub1cvz59SvT5DV25T35+QyuNt+rrf/VnDt3Tq1bt1br1q31ySefqHz58jp06JCioqJ08eJFu+b1wgsvKCoqSt9++61WrFihCRMmaMqUKerbt+9V39O+fXsFBwdrzpw5CgoKUk5OjmrXrp1r2d7e3nZlsddNu6UtMDBQknJtMUtLS7P+qyEwMFAXL17UqVOnrjpNXkaMGKH09HTr4/Dhww5ODwBwprvuukupqakqXry4qlWrZvMoV66cdboaNWpowIABWrFihTp16qTY2NirzjMyMlJr1qzRqlWrrFtxIiIitHDhQu3Zs+eaW9o8PDwccgJcnTp1lJSUpN9//z3P10NDQ7V27VqbsYSEBIWGhv7tZdsrv5/B9eTne7dr1y6dOHFCEydOVPPmzVWzZs1cW+s8PDwkKV+fQ3BwsF5++WUtXrxYgwYN0pw5c646j5MnTyo5OVmjRo3SAw88oNDQ0Fy94++smz1u2tIWEhKiwMBAxcXFWccuXryo1atXq2nTppKkBg0ayN3d3WaalJQU/fLLL9Zp8uLp6SlfX1+bBwDAdbRs2VJNmjRRx44d9f333+vAgQNKSEjQqFGjtHnzZl24cEF9+vRRfHy8Dh48qHXr1mnTpk3XLDf33Xefzpw5o6+//tpa2iIjI61bdsLCwq763ipVqmjDhg06cOCATpw4YfeWpCu6dOmiwMBAdezYUevWrdO+ffu0aNEirV+/XpI0ZMgQzZs3Tx988IF+/fVXvfPOO1q8eLEGDx58Q8v7O673GeRXfr53t99+uzw8PDR9+nTt27dPS5cuzXUNv8qVK8tiseibb77R8ePHdfbs2TyX179/f33//ffav3+/EhMTtWrVKuv/F3nNo0yZMvL399fs2bP122+/adWqVRo4cGC+1+3s2bNauXKlTpw4ofPnz+f7+5KXQi1tZ8+etR7DIEn79+9XUlKSDh06JIvFov79+2v8+PFasmSJfvnlF3Xr1k0lS5ZU165dJV0+BqFHjx4aNGiQVq5cqa1bt+rpp59WeHi4WrZsWYhrBgBwJovFomXLlum+++7T888/rxo1aqhz5846cOCAAgIC5ObmppMnT+rZZ59VjRo19MQTT6ht27bXPDTGz8/PejzZlYLWvHlz5eTkXPd4tsGDB8vNzU1hYWHWXXc3wsPDQytWrFCFChXUrl07hYeHa+LEiXJzc5MkdezYUdOmTdNbb72lWrVqadasWYqNjbWWzIJ0vc8gv/LzvStfvrzmzZunL774QmFhYZo4caLefvttm2kqVaqksWPHavjw4QoICFCfPn3yXF52drZ69+6t0NBQtWnTRnfeeafef//9q86jWLFiWrhwobZs2aLatWtrwIABeuutt/K1bk2bNtXLL7+sJ598UuXLl9fkyZPz/X3Ji8UYY/7WHP6G+Ph46zVR/uy5557TvHnzZIzR2LFjNWvWLJ06dUqNGzfWe++9p9q1a1unzczM1JAhQ7RgwQJduHBBDzzwgN5//30FBwfnO0dGRob8/PyUnp5eIFvdOPbGdfBZuQ4+qxvnzN+BmZmZ2r9/v0JCQlSiRAmHzhu4FdjzM1Kope1mQWn7+ygCroPPynVQ2oBbnz0/IzftMW0AAAD4H0obAACAC6C0AQAAuABKGwAAgAugtAEAALgAShsAAIALoLQBAAC4AEobAABFVGRkpPr371/YMZBPlDYAAAAXULywAwAAcKtqVezxAltWXM4XBbYsFA62tAEAAF28eFFDhw5VpUqV5O3trcaNGys+Pt76+sGDB9W+fXuVKVNG3t7eqlWrlpYtWyZJOnXqlJ566imVL19eXl5eql69umJjYwtpTW5dbGkDAADq3r27Dhw4oIULFyooKEhLlixRmzZt9PPPP6t69erq3bu3Ll68qJ9++kne3t7auXOnSpUqJUl6/fXXtXPnTn333XcqV66cfvvtN124cKGQ1+jWQ2kDAKCI27t3rz799FMdOXJEQUFBkqTBgwdr+fLlio2N1fjx43Xo0CE9+uijCg8PlyTdcccd1vcfOnRI9evXV8OGDSVJVapUKfB1KAoobQAAFHGJiYkyxqhGjRo241lZWfL395ckvfrqq3rllVe0YsUKtWzZUo8++qjq1KkjSXrllVf06KOPKjExUa1bt1bHjh3VtGnTAl+PWx3HtAEAUMTl5OTIzc1NW7ZsUVJSkvWRnJysadOmSZJeeOEF7du3T88884x+/vlnNWzYUNOnT5cktW3bVgcPHlT//v117NgxPfDAAxo8eHBhrtItidIGAEARV79+fWVnZystLU3VqlWzeQQGBlqnCw4O1ssvv6zFixdr0KBBmjNnjvW18uXLq1u3bvrkk08UExOj2bNnF8aq3NLYPQoAQBFXo0YNPfXUU3r22Wc1ZcoU1a9fXydOnNCqVasUHh6udu3aqX///mrbtq1q1KihU6dOadWqVQoNDZUkjR49Wg0aNFCtWrWUlZWlb775xvoaHIfSBgAAFBsbqzfffFODBg3S0aNH5e/vryZNmqhdu3aSpOzsbPXu3VtHjhyRr6+v2rRpo6lTp0qSPDw8NGLECB04cEBeXl5q3ry5Fi5cWJirc0uyGGNMYYcobBkZGfLz81N6erp8fX2dvryc1BrXn8jFFAvcU9gRnILPynXwWd04Z/4OzMzM1P79+xUSEqISJUo4dN7ArcCenxGOaQMAAHABlDYAAAAXQGkDAABwAZQ2AAAAF0BpAwAAcAGUNgAAABdAaQMAAHABlDYAAAAXQGkDAABwAZQ2AAAAF0BpAwAAcAHcMB4AACe565WpBbasxJkDCmxZKBxsaQMAoIj68ssvFR4eLi8vL/n7+6tly5Y6d+6ccnJy9MYbb+i2226Tp6en6tWrp+XLl1vfd+DAAVksFn3++edq3ry5vLy81KhRI+3Zs0ebNm1Sw4YNVapUKbVp00bHjx+3WWZsbKxCQ0NVokQJ1axZU++//35Br7bLorQBAFAEpaSkqEuXLnr++eeVnJys+Ph4derUScYYTZs2TVOmTNHbb7+t7du3KyoqSg8//LB+/fVXm3mMGTNGo0aNUmJioooXL64uXbpo6NChmjZtmtasWaO9e/dq9OjR1unnzJmjkSNHaty4cUpOTtb48eP1+uuva/78+QW9+i6J3aMAABRBKSkpunTpkjp16qTKlStLksLDwyVJb7/9toYNG6bOnTtLkiZNmqQff/xRMTExeu+996zzGDx4sKKioiRJ/fr1U5cuXbRy5Uo1a9ZMktSjRw/NmzfPOv0//vEPTZkyRZ06dZIkhYSEaOfOnZo1a5aee+45p6+zq6O0AQBQBNWtW1cPPPCAwsPDFRUVpdatW+uxxx6Tm5ubjh07Zi1eVzRr1kzbtm2zGatTp47164CAAEn/K35XxtLS0iRJx48f1+HDh9WjRw/17NnTOs2lS5fk5+fn8PW7FVHaAAAogtzc3BQXF6eEhAStWLFC06dP18iRIxUXFydJslgsNtMbY3KNubu7W7++8tpfx3JyciTJ+t85c+aocePGubLg+jimDQCAIspisahZs2YaO3astm7dKg8PD61cuVJBQUFau3atzbQJCQkKDQ294WUFBASoUqVK2rdvn6pVq2bzCAkJ+burUiSwpQ0AgCJow4YNWrlypVq3bq0KFSpow4YNOn78uEJDQzVkyBCNGTNGVatWVb169RQbG6ukpCT961//+lvLjI6O1quvvipfX1+1bdtWWVlZ2rx5s06dOqWBAwc6aM1uXZQ2AACKIF9fX/3000+KiYlRRkaGKleurClTpqht27aKiopSRkaGBg0apLS0NIWFhWnp0qWqXr3631rmCy+8oJIlS+qtt97S0KFD5e3trfDwcPXv398xK3WLsxhjTGGHKGwZGRny8/NTenq6fH19nb68nNQaTl9GQSsWuKewIzgFn5Xr4LO6cc78HZiZman9+/crJCREJUqUcOi8gVuBPT8jHNMGAADgAihtAAAALoDSBgAA4AIobQAAAC6A0gYAAOACKG0AAAAugNIGAADgAihtAAAALoDSBgAA4AIobQAAAC6A0gYAAOACuGE8AABOcvfy1wpsWRvbjC+wZdnj4sWL8vDwKOwYtwS2tAEAUERFRkaqb9++6t+/v8qUKaOAgADNnj1b586dU/fu3eXj46OqVavqu+++s75n9erVuvvuu+Xp6amKFStq+PDhunTpks08+/Tpo4EDB6pcuXJq1aqVJGnnzp1q166dSpUqpYCAAD3zzDM6ceJEga+zK6O0AQBQhM2fP1/lypXTxo0b1bdvX73yyit6/PHH1bRpUyUmJioqKkrPPPOMzp8/r6NHj6pdu3Zq1KiRtm3bppkzZ2ru3Ll68803c82zePHiWrdunWbNmqWUlBRFRESoXr162rx5s5YvX67/+7//0xNPPFFIa+2aLMYYU9ghCltGRob8/PyUnp4uX19fpy8vJ7WG05dR0IoF7insCE7BZ+U6+KxunDN/B2ZmZmr//v0KCQlRiRIlHDpvV3Cz7x6NjIxUdna21qxZI0nKzs6Wn5+fOnXqpI8//liSlJqaqooVK2r9+vX6+uuvtWjRIiUnJ8tisUiS3n//fQ0bNkzp6ekqVqyYIiMjlZ6erq1bt1qXM3r0aG3YsEHff/+9dezIkSMKDg7W7t27VaPGrffzm1/2/IywpQ0AgCKsTp061q/d3Nzk7++v8PBw61hAQIAkKS0tTcnJyWrSpIm1sElSs2bNdPbsWR05csQ61rBhQ5tlbNmyRT/++KNKlSplfdSsWVOStHfvXqes162IExEAACjC3N3dbZ5bLBabsSsFLScnR8YYm8ImSVd22P153Nvb22aanJwctW/fXpMmTcq1/IoVK/69FShCKG0AACBfwsLCtGjRIpvylpCQIB8fH1WqVOmq77vrrru0aNEiValSRcWLUz1uFLtHAQBAvvTq1UuHDx9W3759tWvXLn311VcaM2aMBg4cqGLFrl4pevfurd9//11dunTRxo0btW/fPq1YsULPP/+8srOzC3ANXBulDQAA5EulSpW0bNkybdy4UXXr1tXLL7+sHj16aNSoUdd8X1BQkNatW6fs7GxFRUWpdu3a6tevn/z8/K5Z9mCLs0fF2aOOwBmJroPPynVw9ihw6+PsUQAAgFsMpQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFzATV3aLl26pFGjRikkJEReXl6644479MYbbygnJ8c6jTFG0dHRCgoKkpeXlyIjI7Vjx45CTA0AAOB4N3VpmzRpkj744APNmDFDycnJmjx5st566y1Nnz7dOs3kyZP1zjvvaMaMGdq0aZMCAwPVqlUrnTlzphCTAwAAONZNXdrWr1+vDh066MEHH1SVKlX02GOPqXXr1tq8ebOky1vZYmJiNHLkSHXq1Em1a9fW/Pnzdf78eS1YsKCQ0wMAADjOTV3a7r33Xq1cuVJ79ly+lcu2bdu0du1atWvXTpK0f/9+paamqnXr1tb3eHp6KiIiQgkJCVedb1ZWljIyMmweAADAubp166aOHTsWdgyXVbywA1zLsGHDlJ6erpo1a8rNzU3Z2dkaN26cunTpIklKTU2VJAUEBNi8LyAgQAcPHrzqfCdMmKCxY8c6LzgAACrYe+LeqvcVxv/c1FvaPvvsM33yySdasGCBEhMTNX/+fL399tuaP3++zXQWi8XmuTEm19ifjRgxQunp6dbH4cOHnZIfAICbWWRkpPr27av+/furTJkyCggI0OzZs3Xu3Dl1795dPj4+qlq1qr777jvre1avXq27775bnp6eqlixooYPH65Lly5ZX//yyy8VHh4uLy8v+fv7q2XLljp37pyio6M1f/58ffXVV7JYLLJYLIqPjy+EtXZdN3VpGzJkiIYPH67OnTsrPDxczzzzjAYMGKAJEyZIkgIDAyX9b4vbFWlpabm2vv2Zp6enfH19bR4AABRF8+fPV7ly5bRx40b17dtXr7zyih5//HE1bdpUiYmJioqK0jPPPKPz58/r6NGjateunRo1aqRt27Zp5syZmjt3rt58801JUkpKirp06aLnn39eycnJio+PV6dOnWSM0eDBg/XEE0+oTZs2SklJUUpKipo2bVrIa+9aburdo+fPn1exYra90s3NzXrJj5CQEAUGBiouLk7169eXJF28eFGrV6/WpEmTCjwvAACupm7duho1apSky3uiJk6cqHLlyqlnz56SpNGjR2vmzJnavn27vv76awUHB2vGjBmyWCyqWbOmjh07pmHDhmn06NFKSUnRpUuX1KlTJ1WuXFmSFB4ebl2Wl5eXsrKyrBtdYJ+burS1b99e48aN0+23365atWpp69ateuedd/T8889LurxbtH///ho/fryqV6+u6tWra/z48SpZsqS6du1ayOkBALj51alTx/q1m5ub/P39bYrWlT1XaWlpSk5OVpMmTWwOQWrWrJnOnj2rI0eOqG7dunrggQcUHh6uqKgotW7dWo899pjKlClTcCt0C7upS9v06dP1+uuvq1evXkpLS1NQUJBeeukljR492jrN0KFDdeHCBfXq1UunTp1S48aNtWLFCvn4+BRicgAAXIO7u7vNc4vFYjN2paDl5OTkecy4McY6nZubm+Li4pSQkKAVK1Zo+vTpGjlypDZs2KCQkBAnr8mt76Y+ps3Hx0cxMTE6ePCgLly4oL179+rNN9+Uh4eHdRqLxaLo6GilpKQoMzNTq1evVu3atQsxNQAAt6awsDAlJCRYi5okJSQkyMfHR5UqVZJ0+e9ys2bNNHbsWG3dulUeHh5asmSJJMnDw0PZ2dmFkv1WcFOXNgAAcPPo1auXDh8+rL59+2rXrl366quvNGbMGA0cOFDFihXThg0bNH78eG3evFmHDh3S4sWLdfz4cYWGhkqSqlSpou3bt2v37t06ceKE/vjjj0JeI9dyU+8eBQAAN49KlSpp2bJlGjJkiOrWrauyZcuqR48e1hMZfH199dNPPykmJkYZGRmqXLmypkyZorZt20qSevbsqfj4eDVs2FBnz57Vjz/+qMjIyEJcI9diMX/exllEZWRkyM/PT+np6QVy+Y+CvNhiQblVL+rIZ+U6+KxunDN/B2ZmZmr//v0KCQlRiRIlHDpv4FZgz88Iu0cBAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0A4HRcqADImz0/G3+7tGVnZyspKUmnTp36u7MCANxirtwO6fz584WcBLg5XfnZ+OvtxPJi98V1+/fvr/DwcPXo0UPZ2dmKiIhQQkKCSpYsqW+++YaL5AEArNzc3FS6dGmlpaVJkkqWLJnr3pVAUWSM0fnz55WWlqbSpUvLzc3tuu+xu7R9+eWXevrppyVJX3/9tfbv369du3bp448/1siRI7Vu3Tr7kwMAblmBgYGSZC1uAP6ndOnS1p+R67G7tJ04ccI682XLlunxxx9XjRo11KNHD7377rv2zq5IuifpscKO4HAb2xR2AgA3K4vFoooVK6pChQrcaxL4E3d393xtYbvC7tIWEBCgnTt3qmLFilq+fLnef/99SZf3ydqzYABA0eLm5sbfCeBvsLu0de/eXU888YQqVqwoi8WiVq1aSZI2bNigmjVrOjwgAAAAbqC0RUdHq3bt2jp8+LAef/xxeXp6Srr8L6jhw4c7PCAAAABuoLRJ0mOPXT4mKzMz0zr23HPPOSYRAAAAcrH7Om3Z2dn6xz/+oUqVKqlUqVLat2+fJOn111/X3LlzHR4QAAAAN1Daxo0bp3nz5mny5Mny8PCwjoeHh+vDDz90aDgAAABcZndp+/jjjzV79mw99dRTNmcB1alTR7t27XJoOAAAAFxmd2k7evSoqlWrlms8JyeH6+8AAAA4id2lrVatWlqzZk2u8S+++EL169d3SCgAAADYsvvs0TFjxuiZZ57R0aNHlZOTo8WLF2v37t36+OOP9c033zgjIwAAQJFnd2lr3769PvvsM40fP14Wi0WjR4/WXXfdpa+//tp6oV0AKGjcHg7Are6GrtMWFRWlqKgoR2cBAADAVdh9TBsAAAAKXr62tJUtW1Z79uxRuXLlVKZMGVkslqtO+/vvvzssHAAAAC7LV2mbOnWqfHx8JEkxMTHOzAMAAIA85Ku0Xbmv6KVLlyRdPqYtMDDQeakAAABgw65j2ooXL65XXnlFWVlZzsoDAACAPNh9IkLjxo21detWZ2QBAADAVdh9yY9evXpp0KBBOnLkiBo0aCBvb2+b1+vUqeOwcAAAALjM7tL25JNPSpJeffVV65jFYpExRhaLRdnZ2Y5LBwAAAEk3UNr279/vjBwAAAC4BrtLW+XKlZ2RAwAAANdwQ7ex2rt3r2JiYpScnCyLxaLQ0FD169dPVatWdXQ+AAAA6AbOHv3+++8VFhamjRs3qk6dOqpdu7Y2bNigWrVqKS4uzhkZAQAAijy7t7QNHz5cAwYM0MSJE3ONDxs2TK1atXJYuFvVpa/KF3YEx2tT2AEAALi12b2lLTk5WT169Mg1/vzzz2vnzp0OCQUAAABbdpe28uXLKykpKdd4UlKSKlSo4IhMAAAA+Au7d4/27NlTL774ovbt26emTZvKYrFo7dq1mjRpkgYNGuSMjAAAAEWe3aXt9ddfl4+Pj6ZMmaIRI0ZIkoKCghQdHW1zwV0AAAA4jt2lzWKxaMCAARowYIDOnDkjSfLx8XF4MOBmcE/SY4UdweE2ctIIALgku49pu//++3X69GlJl8valcKWkZGh+++/36HhAAAAcJndpS0+Pl4XL17MNZ6Zmak1a9Y4JBQAAABs5Xv36Pbt261f79y5U6mpqdbn2dnZWr58uSpVquTYdAAAAJBkR2mrV6+eLBaLLBZLnrtBvby8NH36dIeGAwAAwGX5Lm379++XMUZ33HGHNm7cqPLl/3dVfw8PD1WoUEFubm5OCQkAAFDU5bu0Va5cWZKUk5PjtDAAAADIW75K29KlS9W2bVu5u7tr6dKl15z24YcfdkgwAAAA/E++SlvHjh2VmpqqChUqqGPHjledzmKxKDs721HZAAAA8F/5Km1/3iXK7lEAAICCZ/d12vJy5WK7AAAAcA67S9ukSZP02WefWZ8//vjjKlu2rCpVqqRt27Y5NBwAAAAus7u0zZo1S8HBwZKkuLg4/fDDD1q+fLnatm2rIUOGODwgAAAAbuCG8SkpKdbS9s033+iJJ55Q69atVaVKFTVu3NjhAQEAAHADW9rKlCmjw4cPS5KWL1+uli1bSpKMMZw5CgAA4CR2b2nr1KmTunbtqurVq+vkyZNq27atJCkpKUnVqlVzeEAAAADcQGmbOnWqqlSposOHD2vy5MkqVaqUpMu7TXv16uXwgAAAALiB0ubu7q7BgwfnGu/fv78j8gAAACAPdpc2Sdq7d69iYmKUnJwsi8Wi0NBQ9e/fX3fccYej8wEAAEA3cCLC999/r7CwMG3cuFF16tRR7dq1tWHDBoWFhSkuLs4ZGQEAAIo8u7e0DR8+XAMGDNDEiRNzjQ8bNkytWrVyWDgAAABcZveWtuTkZPXo0SPX+PPPP6+dO3c6JBQAAABs2V3aypcvr6SkpFzjSUlJqlChgiMyAQAA4C/s3j3as2dPvfjii9q3b5+aNm0qi8WitWvXatKkSRo0aJAzMgIAABR5dpe2119/XT4+PpoyZYpGjBghSQoKClJ0dLReffVVhwe8FfnPSijsCI43c0BhJwAA4JZm9+5Ri8WiAQMG6MiRI0pPT1d6erqOHDmifv36yWKxODzg0aNH9fTTT8vf318lS5ZUvXr1tGXLFuvrxhhFR0crKChIXl5eioyM1I4dOxyeAwAAoDDZXdquSEtLU1JSkrZt26bjx487MpPVqVOn1KxZM7m7u+u7777Tzp07NWXKFJUuXdo6zeTJk/XOO+9oxowZ2rRpkwIDA9WqVSudOXPGKZkAAAAKg927RzMyMtS7d299+umnysnJkSS5ubnpySef1HvvvSc/Pz+HhZs0aZKCg4MVGxtrHatSpYr1a2OMYmJiNHLkSHXq1EmSNH/+fAUEBGjBggV66aWXHJYFAACgMNld2l544QUlJSXp22+/VZMmTWSxWJSQkKB+/fqpZ8+e+vzzzx0WbunSpYqKitLjjz+u1atXq1KlSurVq5d69uwpSdq/f79SU1PVunVr63s8PT0VERGhhIQEShtQhFz6qnxhR3C8NoUdAMDNxO7S9u233+r777/Xvffeax2LiorSnDlz1KaNY3/D7Nu3TzNnztTAgQP12muvaePGjXr11Vfl6empZ599VqmpqZKkgIAAm/cFBATo4MGDV51vVlaWsrKyrM8zMjIcmhsAAMDR7C5t/v7+ee4C9fPzU5kyZRwS6oqcnBw1bNhQ48ePlyTVr19fO3bs0MyZM/Xss89ap/vrCRDGmGueFDFhwgSNHTvWoVkBAACcye4TEUaNGqWBAwcqJSXFOpaamqohQ4bo9ddfd2i4ihUrKiwszGYsNDRUhw4dkiQFBgZal/9naWlpuba+/dmIESOsZ76mp6fr8OHDDs0NAADgaHZvaZs5c6Z+++03Va5cWbfffrsk6dChQ/L09NTx48c1a9Ys67SJiYl/K1yzZs20e/dum7E9e/aocuXKkqSQkBAFBgYqLi5O9evXlyRdvHhRq1ev1qRJk646X09PT3l6ev6tbAAAAAXJ7tLWsWNHJ8TI24ABA9S0aVONHz9eTzzxhDZu3KjZs2dr9uzZki7vFu3fv7/Gjx+v6tWrq3r16ho/frxKliyprl27FlhOAAAAZ7O7tI0ZM8YZOfLUqFEjLVmyRCNGjNAbb7yhkJAQxcTE6KmnnrJOM3ToUF24cEG9evXSqVOn1LhxY61YsUI+Pj4FlhMAAMDZ7C5tknT69Gl9+eWX2rt3r4YMGaKyZcsqMTFRAQEBqlSpkkMDPvTQQ3rooYeu+rrFYlF0dLSio6MdulwAAICbid2lbfv27WrZsqX8/Px04MAB9ezZU2XLltWSJUt08OBBffzxx87ICQAAUKTZffbowIED1a1bN/36668qUaKEdbxt27b66aefHBoOAAAAl9ld2jZt2pTnnQYqVaqU69IbAAAAcAy7S1uJEiXyvIPA7t27Vb78LXgbGQAAgJuA3aWtQ4cOeuONN/THH39IunwiwKFDhzR8+HA9+uijDg8IAACAGyhtb7/9to4fP64KFSrowoULioiIULVq1VSqVCmNGzfOGRkBAACKPLvPHvX19dXatWu1atUqJSYmKicnR3fddZdatmzpjHwAAADQDV6nTZLuv/9+3X///dbniYmJGj16tL755huHBAMAAMD/2LV7NC4uTkOGDNFrr72mffv2SZJ27dqljh07qlGjRrp06ZJTQgIAABR1+S5t8+fPV1RUlGJjYzVx4kTdc889+uSTT3T33XerTJky2rZtm5YvX+7MrAAAAEVWvkvb1KlTNX78eJ04cUILFy7UiRMnNHXqVG3dulWxsbGqXbu2M3MCAAAUafkubXv37tWTTz4pSXrsscfk5uamd955R1WrVnVaOAAAAFyW79J27tw5eXt7X35TsWIqUaKEgoODnRYMAAAA/2PX2aPff/+9/Pz8JEk5OTlauXKlfvnlF5tpHn74YcelAwrZpa9uwbt8tCnsAACAG2FXaXvuuedsnv/1HqQWi0XZ2dl/PxUAAABs5Lu05eTkODMHAAAArsHu21gBAACg4FHaAAAAXAClDQAAwAVQ2gAAAFxAvkrbu+++q8zMTEnSoUOHZIxxaigAAADYyldpGzhwoDIyMiRJISEhOn78uFNDAQAAwFa+LvkRFBSkRYsWqV27djLG6MiRI9Ytb391++23OzQgAAAA8lnaRo0apb59+6pPnz6yWCxq1KhRrmmMMVxcFwAAwEnyVdpefPFFdenSRQcPHlSdOnX0ww8/yN/f39nZAAAA8F/5viOCj4+PateurdjYWDVr1kyenp7OzAUAAIA/seveo9L/7j+6ZcsWJScny2KxKDQ0VHfddZfDwwEAAOAyu0tbWlqaOnfurPj4eJUuXVrGGKWnp6tFixZauHChypcv74ycAAAARZrdF9ft27evMjIytGPHDv3+++86deqUfvnlF2VkZOjVV191RkYAAIAiz+4tbcuXL9cPP/yg0NBQ61hYWJjee+89tW7d2qHhAAAAcJndW9pycnLk7u6ea9zd3V05OTkOCQUAAABbdpe2+++/X/369dOxY8esY0ePHtWAAQP0wAMPODQcAAAALrO7tM2YMUNnzpxRlSpVVLVqVVWrVk0hISE6c+aMpk+f7oyMAAAARZ7dx7QFBwcrMTFRcXFx2rVrl4wxCgsLU8uWLZ2RDwAAALqB0nZFq1at1KpVK0dmAQAAwFXYvXsUAAAABY/SBgAA4AIobQAAAC7gho9pA4oC/1kJhR3B8WYOKOwEAIAbcEOlbe/evYqNjdXevXs1bdo0VahQQcuXL1dwcLBq1arl6IwAcF0UbAC3Ort3j65evVrh4eHasGGDFi9erLNnz0qStm/frjFjxjg8IAAAAG6gtA0fPlxvvvmm4uLi5OHhYR1v0aKF1q9f79BwAAAAuMzu0vbzzz/rkUceyTVevnx5nTx50iGhAAAAYMvu0la6dGmlpKTkGt+6dasqVarkkFAAAACwZXdp69q1q4YNG6bU1FRZLBbl5ORo3bp1Gjx4sJ599llnZAQAACjy7C5t48aN0+23365KlSrp7NmzCgsL03333aemTZtq1KhRzsgIAABQ5Nl9yQ93d3f961//0htvvKGtW7cqJydH9evXV/Xq1Z2RDwAAAPobF9etWrWqqlat6sgsAAAAuAq7S9vAgQPzHLdYLCpRooSqVaumDh06qGzZsn87HAAAAC6zu7Rt3bpViYmJys7O1p133iljjH799Ve5ubmpZs2aev/99zVo0CCtXbtWYWFhzsgMAABQ5Nh9IkKHDh3UsmVLHTt2TFu2bFFiYqKOHj2qVq1aqUuXLjp69Kjuu+8+DRjA7VcAAAAcxe7S9tZbb+kf//iHfH19rWO+vr6Kjo7W5MmTVbJkSY0ePVpbtmxxaFAAAICizO7Slp6errS0tFzjx48fV0ZGhqTLF+C9ePHi308HAAAASTe4e/T555/XkiVLdOTIER09elRLlixRjx491LFjR0nSxo0bVaNGDUdnBQAAKLLsPhFh1qxZGjBggDp37qxLly5dnknx4nruuec0depUSVLNmjX14YcfOjYpAABAEWZ3aStVqpTmzJmjqVOnat++fTLGqGrVqipVqpR1mnr16jkyIwAAQJF3wxfXLVWqlOrUqePILAAAALiKGyptmzZt0hdffKFDhw7lOuFg8eLFDgkGAACA/7H7RISFCxeqWbNm2rlzp5YsWaI//vhDO3fu1KpVq+Tn5+eMjAAAAEWe3aVt/Pjxmjp1qr755ht5eHho2rRpSk5O1hNPPKHbb7/dGRkBAACKPLtL2969e/Xggw9Kkjw9PXXu3DlZLBYNGDBAs2fPdnhAAAAA3EBpK1u2rM6cOSNJqlSpkn755RdJ0unTp3X+/HnHpgMAAICkGzgRoXnz5oqLi1N4eLieeOIJ9evXT6tWrVJcXJweeOABZ2QEAAAo8uwubTNmzFBmZqYkacSIEXJ3d9fatWvVqVMnvf766w4PCAAAgBsobWXLlrV+XaxYMQ0dOlRDhw51aCgAAADYsvuYNjc3tzxvGH/y5Em5ubk5JBQAAABs2V3ajDF5jmdlZcnDw+NvBwIAAEBu+d49+u6770qSLBaLPvzwQ5t7jWZnZ+unn35SzZo1HZ/wTyZMmKDXXntN/fr1U0xMjKTLJXLs2LGaPXu2Tp06pcaNG+u9995TrVq1nJoFAACgIOW7tE2dOlXS5ZL0wQcf2OwK9fDwUJUqVfTBBx84PuF/bdq0SbNnz851v9PJkyfrnXfe0bx581SjRg29+eabatWqlXbv3i0fHx+n5QEAAChI+S5t+/fvlyS1aNFCixcvVpkyZZwW6q/Onj2rp556SnPmzNGbb75pHTfGKCYmRiNHjlSnTp0kSfPnz1dAQIAWLFigl156qcAyAgAAOJPdx7T9+OOPBVrYJKl379568MEH1bJlS5vx/fv3KzU1Va1bt7aOeXp6KiIiQgkJCQWaEQAAwJnsvuRHdna25s2bp5UrVyotLU05OTk2r69atcph4aTLN6hPTEzUpk2bcr2WmpoqSQoICLAZDwgI0MGDB686z6ysLGVlZVmfZ2RkOCgtAACAc9hd2vr166d58+bpwQcfVO3atWWxWJyRS5J0+PBh9evXTytWrFCJEiWuOt1fMxhjrplrwoQJGjt2rMNyAgAAOJvdpW3hwoX6/PPP1a5dO2fksbFlyxalpaWpQYMG1rErZ6rOmDFDu3fvlnR5i1vFihWt06SlpeXa+vZnI0aM0MCBA63PMzIyFBwc7IQ1AAAAcAy7S5uHh4eqVavmjCy5PPDAA/r5559txrp3766aNWtq2LBhuuOOOxQYGKi4uDjVr19fknTx4kWtXr1akyZNuup8PT095enp6dTsAAAAjmR3aRs0aJCmTZumGTNmOHXXqCT5+Piodu3aNmPe3t7y9/e3jvfv31/jx49X9erVVb16dY0fP14lS5ZU165dnZoNAACgINld2tauXasff/xR3333nWrVqiV3d3eb1xcvXuywcPkxdOhQXbhwQb169bJeXHfFihVcow0AANxS7C5tpUuX1iOPPOKMLPkSHx9v89xisSg6OlrR0dGFkgcAAKAg2F3aYmNjnZEDAAAA12D3xXUl6dKlS/rhhx80a9YsnTlzRpJ07NgxnT171qHhAAAAcJndW9oOHjyoNm3a6NChQ8rKylKrVq3k4+OjyZMnKzMz06n3HwUAACiq7N7S1q9fPzVs2FCnTp2Sl5eXdfyRRx7RypUrHRoOAAAAl93Q2aPr1q2Th4eHzXjlypV19OhRhwUDAADA/9i9pS0nJ0fZ2dm5xo8cOcJlNgAAAJzE7tLWqlUrxcTEWJ9bLBadPXtWY8aMKZBbWwEAABRFdu8enTp1qlq0aKGwsDBlZmaqa9eu+vXXX1WuXDl9+umnzsgIAABQ5Nld2oKCgpSUlKSFCxdqy5YtysnJUY8ePfTUU0/ZnJgAAAAAx7G7tEmSl5eXunfvru7duzs6DwAAAPJg9zFtEyZM0EcffZRr/KOPPtKkSZMcEgoAAAC27C5ts2bNUs2aNXON16pViwvrAgAAOIndpS01NVUVK1bMNV6+fHmlpKQ4JBQAAABs2V3agoODtW7dulzj69atU1BQkENCAQAAwJbdJyK88MIL6t+/v/744w/df//9kqSVK1dq6NChGjRokMMDAgAA4AZK29ChQ/X777+rV69eunjxoiSpRIkSGjZsmEaMGOHwgAAAALCztGVnZ2vt2rUaNmyYXn/9dSUnJ8vLy0vVq1eXp6enszICAAAUeXaVNjc3N0VFRSk5OVkhISFq1KiRs3IBAADgT+w+ESE8PFz79u1zRhYAAABchd2lbdy4cRo8eLC++eYbpaSkKCMjw+YBAAAAx7P7RIQ2bdpIkh5++GFZLBbruDFGFotF2dnZjksHAAAASTdQ2n788Udn5AAAAMA12F3aIiIinJEDAAAA12D3MW2StGbNGj399NNq2rSpjh49Kkn65z//qbVr1zo0HAAAAC6zu7QtWrRIUVFR8vLyUmJiorKysiRJZ86c0fjx4x0eEAAAADdQ2t5880198MEHmjNnjtzd3a3jTZs2VWJiokPDAQAA4DK7S9vu3bt133335Rr39fXV6dOnHZEJAAAAf2F3aatYsaJ+++23XONr167VHXfc4ZBQAAAAsGV3aXvppZfUr18/bdiwQRaLRceOHdO//vUvDR48WL169XJGRgAAgCLP7kt+DB06VOnp6WrRooUyMzN13333ydPTU4MHD1afPn2ckREAAKDIs7u0SZdvZTVy5Ejt3LlTOTk5CgsLU6lSpRydDQAAAP+V792j58+fV+/evVWpUiVVqFBBL7zwgqpUqaK7776bwgYAAOBk+S5tY8aM0bx58/Tggw+qc+fOiouL0yuvvOLMbAAAAPivfO8eXbx4sebOnavOnTtLkp5++mk1a9ZM2dnZcnNzc1pAAAAA2LGl7fDhw2revLn1+d13363ixYvr2LFjTgkGAACA/8l3acvOzpaHh4fNWPHixXXp0iWHhwIAAICtfO8eNcaoW7du8vT0tI5lZmbq5Zdflre3t3Vs8eLFjk0IAACA/Je25557LtfY008/7dAwAAAAyFu+S1tsbKwzcwAAAOAa7L6NFQAAAAoepQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXMBNXdomTJigRo0aycfHRxUqVFDHjh21e/dum2mMMYqOjlZQUJC8vLwUGRmpHTt2FFJiAAAA57ipS9vq1avVu3dv/ec//1FcXJwuXbqk1q1b69y5c9ZpJk+erHfeeUczZszQpk2bFBgYqFatWunMmTOFmBwAAMCxihd2gGtZvny5zfPY2FhVqFBBW7Zs0X333SdjjGJiYjRy5Eh16tRJkjR//nwFBARowYIFeumllwojNgAAgMPd1Fva/io9PV2SVLZsWUnS/v37lZqaqtatW1un8fT0VEREhBISEq46n6ysLGVkZNg8AAAAbmYuU9qMMRo4cKDuvfde1a5dW5KUmpoqSQoICLCZNiAgwPpaXiZMmCA/Pz/rIzg42HnBAQAAHMBlSlufPn20fft2ffrpp7les1gsNs+NMbnG/mzEiBFKT0+3Pg4fPuzwvAAAAI50Ux/TdkXfvn21dOlS/fTTT7rtttus44GBgZIub3GrWLGidTwtLS3X1rc/8/T0lKenp/MCAwAAONhNvaXNGKM+ffpo8eLFWrVqlUJCQmxeDwkJUWBgoOLi4qxjFy9e1OrVq9W0adOCjgsAAOA0N/WWtt69e2vBggX66quv5OPjYz1Ozc/PT15eXrJYLOrfv7/Gjx+v6tWrq3r16ho/frxKliyprl27FnJ6AAAAx7mpS9vMmTMlSZGRkTbjsbGx6tatmyRp6NChunDhgnr16qVTp06pcePGWrFihXx8fAo4LQAAgPPc1KXNGHPdaSwWi6KjoxUdHe38QAAAAIXkpj6mDQAAAJdR2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAVQ2gAAAFwApQ0AAMAFUNoAAABcAKUNAADABVDaAAAAXAClDQAAwAXcMqXt/fffV0hIiEqUKKEGDRpozZo1hR0JAADAYW6J0vbZZ5+pf//+GjlypLZu3armzZurbdu2OnToUGFHAwAAcIhborS988476tGjh1544QWFhoYqJiZGwcHBmjlzZmFHAwAAcAiXL20XL17Uli1b1Lp1a5vx1q1bKyEhoZBSAQAAOFbxwg7wd504cULZ2dkKCAiwGQ8ICFBqamqe78nKylJWVpb1eXp6uiQpIyPDeUH/5JL5o0CWU5AK6ntX0PisXAef1d9fjjGmQJYH4Ma4fGm7wmKx2Dw3xuQau2LChAkaO3ZsrvHg4GCnZCsK/Pz8CjsC8onPynUU9Gd15swZ/v8AbmIuX9rKlSsnNze3XFvV0tLScm19u2LEiBEaOHCg9XlOTo5+//13+fv7X7XouZqMjAwFBwfr8OHD8vX1Lew4uA4+L9dxK35WxhidOXNGQUFBhR0FwDW4fGnz8PBQgwYNFBcXp0ceecQ6HhcXpw4dOuT5Hk9PT3l6etqMlS5d2pkxC42vr+8t84elKODzch232mfFFjbg5ufypU2SBg4cqGeeeUYNGzZUkyZNNHv2bB06dEgvv/xyYUcDAABwiFuitD355JM6efKk3njjDaWkpKh27dpatmyZKleuXNjRAAAAHOKWKG2S1KtXL/Xq1auwY9w0PD09NWbMmFy7gXFz4vNyHXxWAAqLxXCONwAAwE3P5S+uCwAAUBRQ2gAAAFwApQ0AAMAFUNoAAABcwC1z9mhRd+TIEc2cOVMJCQlKTU2VxWJRQECAmjZtqpdffplbdAEA4OLY0nYLWLt2rUJDQ7VkyRLVrVtXzz77rJ5++mnVrVtX//73v1WrVi2tW7eusGMinw4fPqznn3++sGPgvy5cuKC1a9dq586duV7LzMzUxx9/XAipABRFXPLjFtCoUSPde++9mjp1ap6vDxgwQGvXrtWmTZsKOBluxLZt23TXXXcpOzu7sKMUeXv27FHr1q116NAhWSwWNW/eXJ9++qkqVqwoSfq///s/BQUF8VkBKBCUtluAl5eXkpKSdOedd+b5+q5du1S/fn1duHChgJMhL0uXLr3m6/v27dOgQYMoAjeBRx55RJcuXVJsbKxOnz6tgQMH6pdfflF8fLxuv/12ShuAAsUxbbeAihUrKiEh4aqlbf369dYtAyh8HTt2lMVi0bX+vWSxWAowEa4mISFBP/zwg8qVK6dy5cpp6dKl6t27t5o3b64ff/xR3t7ehR0RQBFCabsFDB48WC+//LK2bNmiVq1aKSAgQBaLRampqYqLi9OHH36omJiYwo6J/6pYsaLee+89dezYMc/Xk5KS1KBBg4INhTxduHBBxYvb/pp87733VKxYMUVERGjBggWFlAxAUURpuwX06tVL/v7+mjp1qmbNmmXdVePm5qYGDRro448/1hNPPFHIKXFFgwYNlJiYeNXSdr2tcCg4NWvW1ObNmxUaGmozPn36dBlj9PDDDxdSMgBFEce03WL++OMPnThxQpJUrlw5ubu7F3Ii/NWaNWt07tw5tWnTJs/Xz507p82bNysiIqKAk+GvJkyYoDVr1mjZsmV5vt6rVy998MEHysnJKeBkAIoiShsAAIAL4DptAAAALoDSBgAA4AIobQAAAC6A0gYAAOACKG2AA1WpUsXmmngWi0X//ve/nbrMefPmqXTp0k5dRn4dOHBAFotFSUlJhR0FAG45lDY4Vbdu3WSxWGSxWOTu7q6AgAC1atVKH330Ua7LJPy18PzZlTJw5eHn56d77rlHX3/9db6zvPjii3Jzc9PChQv/zirZJSUlRW3btnXY/PL6Hj355JPas2ePw5ZxLb/99pu6d++u2267TZ6engoJCVGXLl20efPmAlk+ABRllDY4XZs2bZSSkqIDBw7ou+++U4sWLdSvXz899NBDunTpkl3z+uGHH5SSkqINGzbo7rvv1qOPPqpffvnluu87f/68PvvsMw0ZMkRz58690VWxW2BgoDw9PZ26DC8vL1WoUMGpy5CkzZs3q0GDBtqzZ49mzZqlnTt3asmSJapZs6YGDRrk9OUDQFFHaYPTeXp6KjAwUJUqVdJdd92l1157TV999ZW+++47zZs3z655+fv7KzAwUDVr1tS4ceP0xx9/6Mcff7zu+7744guFhYVpxIgRWrdunQ4cOGDzerdu3dSxY0eNHTtWFSpUkK+vr1566SVdvHjROk1kZKT69OmjPn36qHTp0vL399eoUaOuew/RP+8ePXLkiDp37qyyZcvK29tbDRs21IYNGyRJe/fuVYcOHRQQEKBSpUqpUaNG+uGHH2yWf/DgQQ0YMMC6xVHKe/fozJkzVbVqVXl4eOjOO+/UP//5z1y5PvzwQz3yyCMqWbKkqlevfs0b2Rtj1K1bN1WvXl1r1qzRgw8+qKpVq6pevXoaM2aMvvrqqzzfl52drR49eigkJEReXl668847NW3aNJtp4uPjdffdd8vb21ulS5dWs2bNdPDgQUnStm3b1KJFC/n4+MjX11cNGjRgqx6AIovShkJx//33q27dulq8ePENvf+PP/7QnDlzJClfd32YO3eunn76afn5+aldu3aKjY3NNc3KlSuVnJysH3/8UZ9++qmWLFmisWPH2kwzf/58FS9eXBs2bNC7776rqVOn6sMPP8xX5rNnzyoiIkLHjh3T0qVLtW3bNg0dOtS6m/js2bNq166dfvjhB23dulVRUVFq3769Dh06JElavHixbrvtNr3xxhtKSUlRSkpKnstZsmSJ+vXrp0GDBumXX37RSy+9pO7du+cqt2PHjtUTTzyh7du3q127dnrqqaf0+++/5znPpKQk7dixQ4MGDVKxYrl/bVztmLqcnBzddttt+vzzz7Vz506NHj1ar732mj7//HNJ0qVLl9SxY0dFRERo+/btWr9+vV588UVrIX3qqad02223adOmTdqyZYuGDx/OXT4AFF0GcKLnnnvOdOjQIc/XnnzySRMaGmp9XrlyZTN16tQ8p92/f7+RZLy8vIy3t7cpVqyYkWSqVKliTp48ec0Me/bsMe7u7ub48ePGGGOWLFligoODTXZ2tk3OsmXLmnPnzlnHZs6caUqVKmWdLiIiwoSGhpqcnBzrNMOGDbvmOkgyS5YsMcYYM2vWLOPj43PdvH8WFhZmpk+fftX5G2NMbGys8fPzsz5v2rSp6dmzp800jz/+uGnXrp1NrlGjRlmfnz171lgsFvPdd9/lmeOzzz4zkkxiYuI18175nLZu3XrVaXr16mUeffRRY4wxJ0+eNJJMfHx8ntP6+PiYefPmXXOZAFBUsKUNhcYYY92ikl+fffaZtm7dqqVLl6patWr68MMPVbZs2Wu+Z+7cuYqKilK5cuUkSe3atdO5c+dsdj1KUt26dVWyZEnr8yZNmujs2bM6fPiwdeyee+6xydykSRP9+uuvys7Ovm72pKQk1a9f/6p5z507p6FDhyosLEylS5dWqVKltGvXLuuWtvxKTk5Ws2bNbMaaNWum5ORkm7E6depYv/b29paPj4/S0tLynKf57y5gez8vSfrggw/UsGFDlS9fXqVKldKcOXOs61S2bFl169bNulVx2rRpNlsQBw4cqBdeeEEtW7bUxIkTtXfvXruXDwC3CkobCk1ycrJCQkLsek9wcLCqV6+uBx98UB9++KGefPLJqxYN6fIxVR9//LG+/fZbFS9eXMWLF1fJkiX1+++/5/uEhBspKnnx8vK65utDhgzRokWLNG7cOK1Zs0ZJSUkKDw+3Oa4uv/6aOa+C/NfdjBaL5ao3Pq9Ro4Yk5Sp+1/P5559rwIABev7557VixQolJSWpe/fuNusUGxur9evXq2nTpvrss89Uo0YN/ec//5EkRUdHa8eOHXrwwQe1atUqhYWFacmSJXZlAIBbBaUNhWLVqlX6+eef9eijj97wPCIiIlS7dm2NGzfuqtMsW7ZMZ86c0datW5WUlGR9fPHFF/r3v/+tkydPWqfdtm2bLly4YH3+n//8R6VKldJtt91mM/Zn//nPf1S9enW5ubldN2+dOnWUlJR01ePG1qxZo27duumRRx5ReHi4AgMDc50w4eHhcd2teqGhoVq7dq3NWEJCgkJDQ6+b8Wrq1aunsLAwTZkyJc9id/r06Tzft2bNGjVt2lS9evVS/fr1Va1atTy3ltWvX18jRoxQQkKCateurQULFlhfq1GjhgYMGKAVK1aoU6dOeR6PCABFAaUNTpeVlaXU1FQdPXpUiYmJGj9+vDp06KCHHnpIzz77rM20R48etSlX1yo5kjRo0CDNmjVLR48ezfP1uXPn6sEHH1TdunVVu3Zt6+PRRx9V+fLl9cknn1invXjxonr06KGdO3fqu+++05gxY9SnTx+bA+8PHz6sgQMHavfu3fr00081ffp09evXL1/fhy5duigwMFAdO3bUunXrtG/fPi1atEjr16+XJFWrVk2LFy9WUlKStm3bpq5du+Z5LbuffvpJR48e1YkTJ/JczpAhQzRv3jx98MEH+vXXX/XOO+9o8eLFGjx4cL5y5sVisSg2NlZ79uzRfffdp2XLlmnfvn3avn27xo0bpw4dOuT5vmrVqmnz5s36/vvvtWfPHr3++uvatGmT9fX9+/drxIgRWr9+vQ4ePKgVK1Zoz549Cg0N1YULF9SnTx/Fx8fr4MGDWrdunTZt2vS3yicAuLRCPqYOt7jnnnvOSDKSTPHixU358uVNy5YtzUcffWRzIoAxlw+yvzLtnx+xsbFXPcA9JyfH3HnnneaVV17JtezU1FRTvHhx8/nnn+eZrW/fviY8PNyas0OHDmb06NHG39/flCpVyrzwwgsmMzPTOn1ERITp1auXefnll42vr68pU6aMGT58uM2JCdc6EcEYYw4cOGAeffRR4+vra0qWLGkaNmxoNmzYYIy5fBB/ixYtjJeXlwkODjYzZswwERERpl+/ftb3r1+/3tSpU8d4enqaKz++fz0RwRhj3n//fXPHHXcYd3d3U6NGDfPxxx/bvP7XXMYY4+fnZ2JjY/P8Xl2xe/du8+yzz5qgoCDj4eFhKleubLp06WI9QeGvn1NmZqbp1q2b8fPzM6VLlzavvPKKGT58uKlbt64x5vJn1LFjR1OxYkXr/EaPHm2ys7NNVlaW6dy5swkODjYeHh4mKCjI9OnTx1y4cOGaGQHgVmUx5hoXmQKKiG7duun06dPXvOVUZGSk6tWrd9W7NgAA4EzsHgUAAHABlDYAAAAXwO5RAAAAF8CWNgAAABdAaQMAAHABlDYAAAAXQGkDAABwAZQ2AAAAF0BpAwAAcAGUNgAAABdAaQMAAHABlDYAAAAX8P9JBDXPBJF7rQAAAABJRU5ErkJggg==", - "text/plain": [ - "
" - ] - }, - "metadata": {}, - "output_type": "display_data" } ], "source": [ diff --git a/data/all_org_repos.csv b/data/all_org_repos.csv index c95f78e..b7f9b99 100644 --- a/data/all_org_repos.csv +++ b/data/all_org_repos.csv @@ -1,944 +1,944 @@ -html_url;description;organisation;research_group;project -https://github.com/Open-Systems-Pharmacology/Suite;Open Systems Pharmacology Suite Setup ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/PK-Sim;PK-Sim¬Æ is a comprehensive software tool for whole-body physiologically based pharmacokinetic modeling;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/MoBi;MoBi¬Æ is a software tool for multiscale physiological modeling and simulation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox;Collection of Matlab¬Æ functions for the processing of PK-Sim¬Æ or MoBi¬Æ models;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/R-Toolbox;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Vision-Mission;Vision & Mission of Open Systems Pharmacology ;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPSuite.BDDHelper;Helper functions for BDD Development used in the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Forum;Discussion forum for the Open Systems Pharmacology Project;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/MiKTeX;MiKTeX distribution used by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPSuite.Utility;Cross-cutting concerns implementation used in the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.Serializer;Xml serialization engine used in the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding;DataBinding framework for WinForms application used in the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding.DevExpress;DataBinding Framework for DevExpress components used by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.TeXReporting;LaTeX Reporting Component for the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/DCI;Data Component Interface used in the Open-Systems-Pharmacology Suite ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.FuncParser;Function parser for numeric and logic expressions used by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel;Calculation engine for models built with PK-Sim¬Æ or MoBi¬Æ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES.282;ODE solver used by OSPSuite.SimModel. Based on CVODES solver version 2.8.2 (Copyright ¬© 2002-2016, Lawrence Livermore National Security);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModelSolverBase;Base implementation for all solver used by OSPSuite.SimModel;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/build-scripts;Collection of rake tasks used during build;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.Core;Core functionalities of the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.Dimensions;List of dimensions supported by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPSuite.PKParameters;List of PK parameters supported by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPSuite.Documentation;Documentation files for the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/InstallationValidator;Installation Validation Tool for the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Glucose-Insulin-Model;The physiologically-based whole-body model of the glucose-insulin-glucagon regulatory system;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/PAGE2017-Budapest;Training materials for the OSP workshop at PAGE 2017 Budapest;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/ISSX-2017-Cologne;Training materials for the OSP workshop at ISSX 2017, Cologne;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/ISOP-webinar---PK-Sim-MoBi-introduction;ISOP QSP Webinar Series: Bridging and Tackling the Gap between Empirical and Systems Pharmacology Models: Where do we stand? Part 7: PK-Sim/Mobi ‚Äì Open Systems Pharmacology Suite by Jan Schlender;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSP-based-publications-and-content;Publications of all kind based on the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Example_Diclofenac;MoBi example projects for Diclofenac;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Example_ManualModel;MoBi example project for a model created in MoBi from scratch;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Example_Aciclovir;PK-Sim example project for Aciclovir;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Example_Caffeine;PK-Sim example project for Caffeine;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Example_Paracetamol;PK-Sim example project for Paracetamol;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Example_Theophylline;PK-Sim example project for Theophylline;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Reporting-Engine;(Matlab) Reporting-Engine;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox-Core;Collection of Matlab¬Æ core functions for the processing of PK-Sim¬Æ or MoBi¬Æ models ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/ACoP-2017-FortLauderdale;Training materials for the OSP workshop at ACoP 2017, Fort Lauderdale;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Schema;Schema definition for xml model created for the OSPSuite.SimModel calculation engine ;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/open-systems-pharmacology.github.io;Open Systems Pharmacology Website (www.open-systems-pharmacology.org);startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Pregnancy-Models;Physiologically Based Pharmacokinetic Models for Pregnant Women;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/ICRP-Extended;On going work regarding ICRP Population improvement;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/PAGE-2018-Workshop;PK-Sim¬Æ & MoBi¬Æ (OSPS¬Æ) workshop on integrating PBPK with QSP for in-silico first-in-man PD predictions ;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-March-2018;Training materials for the PharMetrX POSP PBPK workshop, Potsdam March 2018;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Exemplary-Protein-Models;Exemplary Protein PBPK Models ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/ACoP-2018-Workshop;PK-Sim¬Æ & MoBi¬Æ (OSPS¬Æ) workshop on integrating PBPK with QSP;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/BOSTON-2018-Workshop; PK-Sim¬Æ & MoBi¬Æ workshop on integrating PBPK with QSP;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/2-Day-BOSTON-Workshop-2018;PK-Sim¬Æ & MoBi¬Æ (OSPS¬Æ) workshop on integrating PBPK with QSP;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Model;Whole-body PBPK model of clarithromycin as CYP3A4 and P-gp DDI perpetrator drug ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Alfentanil-Model;Whole-body PBPK model of alfentanil as CYP3A4 DDI victim drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Digoxin-Model;Whole-body PBPK model of digoxin as P-gp DDI victim drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Itraconazole-Model;Whole-body PBPK model of itraconazole as CYP3A4 and P-gp DDI perpetrator drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Midazolam-Model;Whole-body PBPK model of midazolam as CYP3A4 DDI victim drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Model;Whole-body PBPK model of rifampicin as CYP3A4 and P-gp DDI perpetrator drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Midazolam-DDI;Modeling of published clinical Clarithromycin-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Itraconazole-Digoxin-DDI;Modeling of published clinical Itraconazole-Digoxin-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Itraconazole-Midazolam-DDI;Modeling of published clinical Itraconazole-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Alfentanil-DDI;Modeling of published clinical Rifampicin-Alfentanil-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Digoxin-DDI;Modeling of published clinical Rifampicin-Digoxin-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Midazolam-DDI;Modeling of published clinical Rifampicin-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Digoxin-DDI;Modeling of published clinical Clarithromycin-Digoxin-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Hormonal-Contraceptive-Agents-Datasets; Concentration data from studies performed during proprietary drug development programs by Bayer;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/docs;Open Systems Pharmacology - Live Documentation;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Protein-Abundance-Database;WIP: Protein Abundance Database;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/SGLT2i-hyperfiltration-model;A Quantitative Systems Pharmacology kidney model of diabetes associated renal hyperfiltration and the effects of SGLT inhibitors.;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/QualificationPlan;Creation and processing of a qualification plan;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Gene-Expression-Databases;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/BERLIN-2019-WORKSHOP;[FULLY BOOKED] SGS Exprimo and the FU Berlin will run a two-days hands-on PK-Sim¬Æ & MoBi¬Æ workshop on introducing PBPK for human dose projection and drug-drug interaction (DDI) prediction on 21st-22nd Feb 2019 at the Institute of Pharmacy, FU-Berlin, Germany.;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/2-Day-WASHINGTON-Workshop-2019;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES;ODE solver used by OSPSuite.SimModel. Based on CVODES solver (Copyright ¬© 2002-2018, Lawrence Livermore National Security);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/PAGE-2019-PB-QSP-Workshop;PK-Sim¬Æ & MoBi¬Æ (OSP Suite) workshop on PBPK-basd QSP;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/PAGE-2019-PBPK-Workshop;PK-Sim¬Æ & MoBi¬Æ (OSP Suite) workshop on PBPK;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/2-Day-Orlando-Workshop-2019;PK-Sim¬Æ & MoBi¬Æ workshop on PBPK and PBPK-based QSP;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/QualificationRunner;Qualification runner in charge of managing a qualification workflow;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Model;Whole-body PBPK model of fluvoxamine as CYP1A2 and CYP3A4 DDI perpetrator drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Theophylline-DDI;Modeling of published clinical Fluvoxamine-Theophylline-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Theophylline-DDI;Modeling of published clinical Rifampicin-Theophylline-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Caffeine-DDI;Modeling of published clinical Fluvoxamine-Caffeine-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Midazolam-DDI;Modeling of published clinical Fluvoxamine-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Theophylline-Model;Whole-body PBPK model of theophylline as CYP1A2 DDI victim drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Triazolam-Model;Whole-body PBPK model of triazolam;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Alprazolam-Model;Whole-body PBPK model of alprazolam;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-March-2019;Training materials for the PharMetrX POSP PBPK workshop, Potsdam March 2019;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/IFN-alpha;A multiscale QSP model of IFN-alpha induced activation of the JAK/STAT pathway in human liver cells (Kalra et al., 2019);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite-R;R package for the OSPSuite;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/markdown-joiner;Reporting tool allowing different markdown files to be exported in a cohesive structure (html, md, pdf);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Qualification-text-modules;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Skin-permeation-model;Implementation of Dancik et al (2013) skin permeation model in MoBi;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP3A4;Qualification of OSP platform for CYP3A4-mediated DDI;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Model;Whole-body PBPK model of gemfibrozil as CYP2C8 and OATP1B1 DDI perpetrator drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Repaglinide-Model;Whole-body PBPK model of repaglinide as CYP2C8, CYP3A4, OATP1B1 and OATP1B3 DDI victim drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Pioglitazone-Model;Whole-body PBPK model of pioglitazone as CYP2C8 DDI victim drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Repaglinide-DDI;Modeling of published clinical gemfibrozil-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Pioglitazone-DDI;Modeling of published clinical gemfibrozil-pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Itraconazole-Repaglinide-DDI;Modeling of published clinical itraconazole-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Itraconazole-Pioglitazone-DDI;Modeling of published clinical itraconazole-pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Repaglinide-DDI;Modeling of published clinical gemfibrozil-itraconazole-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Pioglitazone-DDI;Modeling of published clinical gemfibrozil-itraconazole-pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Repaglinide-DDI;Modeling of published clinical rifampicin-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Pioglitazone-DDI;Modeling of published clinical rifampicin-pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Repaglinide-DDI;Modeling of published clinical clarithromycin-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Amikacin-Model;Whole-body PBPK model of Amikacin;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Vancomycin-Model;Whole-body PBPK model of Vancomycin ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Pregabalin-Model;Whole-body PBPK model of Pregabalin;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Sufentanil-Model;Whole-body PBPK model of Sufentanil;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/ACoP-10-PBPK-Workshop-2019;PBPK Workshop at ACoP 10 2019;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/ACoP-10-Antibody-PBPKPD-Workshop-2019;Workshop on PBPK/PD of ADCs in Tumor Treatment;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Montelukast-Model;Whole-body PBPK model of montelukast;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Paclitaxel-Model;Whole-body PBPK model of paclitaxel;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_GFR_Ontogeny;Pediatric Qualification Package for GFR Ontogeny ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP3A4_Ontogeny;Pediatric Qualification Package for CYP3A4 Ontogeny ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP2C8_Ontogeny;Pediatric Qualification Package for CYP2C8 Ontogeny ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/TLF-Library;TLF Library implementation in R;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Boston-PBPKPD-Workshop-Sept-2019;PBPK/PD Workshop for Small Molecules and Antibodies with PK-Sim and MoBi;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSMOSES;Open-Source MOdeling framework for automated quality control and management of complex life Science systEms modelS (OSMOSES);startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Dapagliflozin-Model;Whole-body PBPK model of dapagliflozin;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Evaluation-plan-template;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Raltegravir-Model;Whole-body PBPK model of Raltegravir;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Atazanavir-Raltegravir-DDI;Modeling of published clinical atazanavir-raltegravir-DDI studies ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Atazanavir-Model;Whole-body PBPK model of atazanavir ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Mefenamic_acid-Dapagliflozin-DDI;Modeling of published clinical mefenamic acid-dapagliflozin-DDI studies;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.ReportingEngine;R implementation of the reporting engine ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ondansetron-Model;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Oxycodone-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/ASCPT-Satelite-OSPS-Workshops;ASCPT2020 satellite workshops: PK-Sim¬Æ & MoBi¬Æ hands-on training for PBPK and PBPK-based QSP at University of Houston, College of Pharmacy (www.esqlabs.com/news-events);startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/rClr;R package for accessing .NET;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/QSPC-Satellite-OSPS-Workshops;QSPC2020 satellite workshops: PK-Sim¬Æ & MoBi¬Æ hands-on training for PBPK and PBPK-based QSP in Leiden, Netherlands (April 21st and 25th) (www.esqlabs.com/news-events) ;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPS-Workshop-Afrika-Cape-Town-2020;PK-Sim goes Africa! Open source PBPK modelling with the OSPSuite (PK-Sim¬Æ & MoBi¬Æ) for MIDD at WCOP2020;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Qualification-DDI-UGT;Qualification of UGT-mediated drug-drug interactions;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Mefenamic-acid-Model;Whole-body PBPK model of mefenamic acid;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Database-for-observed-data;Database for published pharmacokinetic data;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPS-PBPK-and-QSP-Workshop-at-PAGE-2020;PAGE 2020 satellite workshops: PK-Sim¬Æ & MoBi¬Æ hands-on training for PBPK and PBPK-based QSP (www.esqlabs.com/news-events) ;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Idarucizumab-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Dabigatran-Reversal-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/tracelib;package to capture and store workflow traceability metadata;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/test-appveyor;Repository for testing purposes only;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPSuite.CentOS;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Itraconazole-Alprazolam-DDI;Modeling of published clinical Itraconazole-Alprazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Itraconazole-Triazolam-DDI;Modeling of published clinical Itraconazole-Triazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Erythromycin-Midazolam-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Erythromycin-Alprazolam-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Erythromycin-Alfentanil-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Erythromycin-Triazolam-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Triazolam-DDI;Modeling of published clinical Clarithromycin-Triazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Alprazolam-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Nicotine-Cotinine-Model;Whole-body PBPK/PD model of nicotine and cotinine;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Alprazolam-DDI;Modeling of published clinical Rifampicin-Alprazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Triazolam-DDI;Modeling of published clinical Rifampicin-Triazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Efavirenz-Model;Whole-body PBPK model of efavirenz as CYP3A4 perpetrator drug ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Efavirenz-Midazolam-DDI;Modeling of published clinical Efavirenz-Midazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Efavirenz-Alfentanil-DDI;Modeling of published clinical Efavirenz-Alfentanil-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSP-Qualification-Reports;Qualification Reports recreated with every new OSP Release;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSP-PBPK-Model-Library;Library of released PBPK substance models and evaluation reports;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Erythromycin-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Verapamil-Midazolam-DDI;Modeling of published clinical Verapamil-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Verapamil-Model;Verapamil PBPK model (parent only);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Metformin-Model;Whole-body PBPK model of metformin (OCT2/MATE DDI victim drug);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Cimetidine-Metformin-DDI;Modeling of published clinical Cimetidine-Metformin-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Cimetidine-Midazolam-DDI;Modeling of published clinical Cimetidine-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Cimetidine-Model;Whole-body PBPK model of cimetidine (OCT2/MATE and CYP3A4 DDI perpetrator drug);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Incretins-Model;Physiologically-based Quantitative Systems Pharmacology model of GLP-1 and GIP and DPP4-inhibitor sitagliptin;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.CPP-Toolbox;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-June-2020;Training materials for the PharMetrX OSP PBPK workshop, online, June 2020;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Buprenorphine-Model;Whole-body PBPK models of buprenorphine for adults, children and preterm neonates;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/CompiledModel-Template;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Amoxicillin-Model;Whole-body PBPK model of intravenously administered amoxicillin for adults, pregnant women and postpartum women;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fentanyl-Model;Physiologically-Based Pharmacokinetic (PBPK) Modeling of Fentanyl in Adults and Pediatric Patients;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Lung-absorption-model;Pulmonary drug absorption implemented in MoBi (Eriksson et al. 2020);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Roadmap;Roadmap for the Open Systems Pharmacology Platform;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Trimethoprim-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Trimethoprim-Metformin-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Trimethoprim-Repaglinide-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Trimethoprim-Pioglitazone-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Trimethoprim-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Levonorgestrel;Whole-body PBPK model of levonorgestrel with and without ethinyl estradiol as CYP3A4 DDI victim drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Cimetidine-Verapamil-DDI;Modeling of published clinical Cimetidine-Verapamil-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Cimetidine-Alprazolam-DDI;Modeling of published clinical Cimetidine-Alprazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Cimetidine-Triazolam-DDI;Modeling of published clinical Cimetidine-Triazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Cimetidine-Alfentanil-DDI;Modeling of published clinical Cimetidine-Alfentanil-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Furosemide-Model;Whole-body PBPK model of furosemide (OAT victim drug) ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Probenecid-Model;Whole-body PBPK model of probenecid (OAT perpetrator drug);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Probenecid-Furosemide-DDI;Modeling of published clinical Probenecid-Furosemide-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Probenecid-Rifampicin-DDI;Modeling of published clinical Probenecid-Rifampicin-DDI studies for model evaluation ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Verapamil-DDI;Modeling of published clinical Rifampicin-Verapamil-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/BE-Studies;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Model;Whole-body PBPK model of ethinylestradiol as CYP1A2 DDI perpetrator drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Mexiletine-Model;Whole-body PBPK model of mexiletine as CYP1A2 DDI substrate and inhibitor drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Moclobemide-Model;Whole-body PBPK model of moclobemide as a substrate and a moderate inhibitor of CYP2C19;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Omeprazole-Model;Whole-body PBPK model of omeprazole as a substrate of CYP2C19 and CYP3A4 and an inhibitor of CYP2C19.;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/S-Mephenytoin-Model;Whole-body PBPK model of s-mephenytoin as a substrate of CYP2C19;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Tizanidine-Model;Whole-body PBPK model of tizanidine as a substrate of CYP1A2;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Metoprolol-Model;PBPK model of metoprolol and metoprolol-CYP2D6 drug-gene interactions;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Caffeine-DDI;Modeling of published clinical Ethinylestradiol-Caffeine-DDI studies for model evaluation.;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Mexiletine-Caffeine-DDI;Modeling of published clinical Mexiletine-Caffeine-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Mexiletine-DDI;Modeling of published clinical Fluvoxamine-Mexiletine-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Tizanidine-DDI;Modeling of published clinical Ethinylestradiol-Tizanidine-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Tizanidine-DDI;Modeling of published clinical Fluvoxamine-Tizanidine-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Mexiletine-Tizanidine-DDI;Modeling of published clinical Mexiletine-Tizanidine-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Omeprazole-DDI;Modeling of published clinical Fluvoxamine-Omeprazole-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Moclobemide-Omeprazole-DDI;Modeling of published clinical Moclobemide-Omeprazole-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-S-mephenytoin-DDI;Modeling of published clinical Fluvoxamine-S-mephenytoin-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP1A2;Qualification of OSP platform for CYP1A2-mediated DDI;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP2C19;Qualification of OSP platform for CYP2C19-mediated DDI;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Inhalation-model;Implementation of inhalation model in MoBi;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite-Epics;Repository used to define epics for our releases;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Quetiapine-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Aripiprazole-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Bupropion-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Bupropion-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Voriconazole-Bupropion-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-April-2021;Training materials for the PharMetrX OSP PBPK workshop, online, April 2021;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Model;PBPK model of carbamazepine as CYP3A4 and CYP2B6 substrate and inducer;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Alprazolam-DDI;Modeling of published clinical Carbamazepine-Alprazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Bupropion-DDI;Modeling of published clinical Carbamazepine-Bupropion-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Erythromycin-Carbamazepine-DDI;Modeling of published clinical Erythromycin-Carbamazepine DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Efavirenz-DDI;Modeling of published clinical Carbamazepine-Efavirenz DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/FDA-OSP-workshop-April-2021;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Irinotecan-Model;Whole-body PBPK model of Irinotecan (CPT-11) & SN-38 determining tumor tissue kinetics of both parent drug & active metabolite.;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/IVIVC-with-particle-dissolution-module-in-OSP;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.ParameterIdentification;R package for parameter identification for OSPS models;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Cabozantinib-Model;Cabozantinib PBPK;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Docker-Base-Images;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Docker-Images;Temporary solution - images are created manually. Later docker images should be created automatically as part of CI;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Docker-Images-Ospsuite-R;Temporary solution - images are created manually. Later docker images should be created automatically as part of CI;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Docker-Images-ReportingEngine;Temporary solution - images are created manually. Later docker images should be created automatically as part of CI;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Fluconazole-Model;Whole-body PBPK model of fluconazole ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/BIGS-Workshop-2021---University-of-Bonn;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Finerenone-Model;Whole-body PBPK model of finerenone (KERENDIA).;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Alfentanil-Pediatrics;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Amikacin-Pediatrics;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Raltegravir-Pediatrics;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Montelukast-Pediatrics;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Sufentanil-Pediatrics;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Vancomycin-Pediatrics;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluconazole-Alfentanil-DDI;Modeling of published clinical Fluconazole-Alfentanil-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluconazole-Midazolam-DDI;Modeling of published clinical Fluconazole-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Fluconazole-Triazolam-DDI;Modeling of published clinical Fluconazole-Triazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Propofol-Pediatrics;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Propofol-Model;Whole-body pbpbk model of Propofol;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_UGT1A1_Ontogeny;Pediatric Qualification Package for UGT1A1 Ontogeny;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Rosuvastatin-DDI;Modeling of published clinical Rifampicin-Rosuvastatin-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Rosuvastatin-DDI;Modeling of published clinical Gemfibrozil-Rosuvastatin-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Probenecid-Rosuvastatin-DDI;Modeling of published clinical Probenecid-Rosuvastatin-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rosuvastatin-Model;Whole-body PBPK model of rosuvastatin (OATP1B1/OATP1B3/BCRP DDI victim drug);startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_UGT1A9_Ontogeny;Pediatric Qualification Package for UGT1A9 Ontogeny ;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/OSPSuite.BuildingBlockTemplates;List of PK-Sim building block templates available on demand for PK-Sim users;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/OSPSuite.RUtils;Utility functions for Open Systems Pharmacology R packages;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/AGePOP-OSP-Workshop-2021;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Olanzapine-Model;PBPK model of olanzapine;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Lactation-PBPK-model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/.github;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/TestCases;Test cases for the new OSP features;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Dextromethorphan-Model;PBPK Model of Dextromethorphan and its Metabolites;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-April-2022;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/2022_june_pbpk_page_workshop;Leveraging in vitro data for MIDD pre-PAGE 2-day workshop ;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Workflows;Reusable workflows (e.g. GitHub Actions) which can be used in any OSP repository;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Cimetidine-Carbamazepine-DDI;Modeling of published clinical Cimetidine-Carbamazepine DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Midazolam-DDI;Modeling of published clinical Carbamazepine-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Model;Whole-body parent-metabolite PBPK model of Clopidogrel for CYP2B6, CYP2C8, CYP2C19, and CYP3A4 DDGI Predictions;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Bupropion-DDI;Modeling of published clinical Clopidogrel-Bupropion-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Montelukast-DDI;Modeling of published clinical Clopidogrel-Montelukast-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Pioglitazone-DDI;Modeling of published clinical Clopidogrel-Pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Repaglinide-DDI;Modeling of published clinical Clopidogrel-Repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Omeprazole-Clopidogrel-DDI;Modeling of published clinical Omeprazole-Clopidogrel-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Clopidogrel-DDI;Modeling of published clinical Rifampicin-Clopidogrel-DDI studies for model evaluation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Creatinine-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Creatinine-drug-biomaker-interactions;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-drug-biomaker-interactions;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Sildenafil-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Felodipine-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Voriconazole-Model;Whole-body PBPK model of voriconazole as CYP2C19 substrate and CYP3A4 perpetrator drug;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Birds-PBK-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Thyroid-Hormones-PB-QSP-Model;Physiology-based systems pharmacology model of thyroid hormones regulation in rat and human;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/dAb2-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Inulin-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/MEDI524-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/MEDI524YTE-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/CDA1-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/BAY794620-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Qualification-CKD;Chronic Kidney Disease - Qualification of PK-Sim implementation;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Tefibazumab-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/7E3-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Erythromycin-Digoxin-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Digoxin-Pediatrics;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Warfarin-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_P-gp_Ontogeny;Pediatric Qualification Package P-gp Ontogeny;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Midazolam-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alfentanil-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Digoxin-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alprazolam-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Triazolam-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/pharmetheus_pbpk_workshop;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-March-2023;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/developer-docs;;startup;open_systems_pharmacology;no_research -https://github.com/Open-Systems-Pharmacology/Quinidine-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Quinidine-DDGI-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Tacrolimus-Model;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Itraconazole-Tacrolimus-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Voriconazole-Tacrolimus-DDGI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Rifampicin-Tacrolimus-DDI;;startup;open_systems_pharmacology;research -https://github.com/Open-Systems-Pharmacology/Sundials;;startup;open_systems_pharmacology;no_research -https://github.com/potsdamer-buergerstiftung/inselbuehne;Die Website der Inselb√ºhne Potsdam;startup;potsdamer_b√ºrgerstiftung;no_research -https://github.com/potsdamer-buergerstiftung/projects;A monorepo that holds all of our web-related projects;startup;potsdamer_b√ºrgerstiftung;no_research -https://github.com/potsdamer-buergerstiftung/portal;Our web portal for volunteer and content management;startup;potsdamer_b√ºrgerstiftung;no_research -https://github.com/potsdamer-buergerstiftung/app;The app designed for volunteers at Potsdam Civic Foundation;startup;potsdamer_b√ºrgerstiftung;no_research -https://github.com/potsdamer-buergerstiftung/umami;Umami is a simple, fast, privacy-focused alternative to Google Analytics.;startup;potsdamer_b√ºrgerstiftung;no_research -https://github.com/potsdamer-buergerstiftung/web;;startup;potsdamer_b√ºrgerstiftung;no_research -https://github.com/aeye-lab/pymovements;A python package for processing eye movement data;up;aeya;research -https://github.com/aeye-lab/etra-fairness;;up;aeya;research -https://github.com/aeye-lab/etra-reading-comprehension;;up;aeya;research -https://github.com/aeye-lab/ecml-ADHD;;up;aeya;research -https://github.com/aeye-lab/neurips-gmml-2022-xai-eye-tracking-evaluation;;up;aeya;no_research -https://github.com/aeye-lab/pymovements-conda-staged-recipes;A place to submit conda recipes before they become fully fledged conda-forge feedstocks;up;aeya;no_research -https://github.com/aeye-lab/pymovements-toy-dataset;Example toy dataset resource for the pymovements package;up;aeya;no_research -https://github.com/aeye-lab/Eyettention;;up;aeya;research -https://github.com/aeye-lab/sp-eyegan;;up;aeya;research -https://github.com/aeye-lab/etra-2023-bridging-the-gap;;up;aeya;no_research -https://github.com/aeye-lab/pymovements-toy-dataset-eyelink;;up;aeya;no_research -https://github.com/potassco/lc2casp;A translator for logic programs with constraint atoms to CASP.;up;potassco;no_research -https://github.com/potassco/clingo;ü§î A grounder and solver for logic programs.;up;potassco;research -https://github.com/potassco/clasp;‚öôÔ∏è A conflict-driven nogood learning answer set solver;up;potassco;research -https://github.com/potassco/ginkgo;üå± Generalize learned constraints with ASP;up;potassco;research -https://github.com/potassco/xclasp;A variant of the clasp solver for extracting learned constraints;up;potassco;no_research -https://github.com/potassco/plasp;üó∫Ô∏è ASP planning tools for PDDL;up;potassco;research -https://github.com/potassco/libcsp;;up;potassco;no_research -https://github.com/potassco/clingcon;‚õìÔ∏è Extension of clingo to handle constraints over integers;up;potassco;research -https://github.com/potassco/potassco.github.io;‚ÑπÔ∏è The Potassco website;up;potassco;no_research -https://github.com/potassco/libpotassco;üß± A utility library used by various potassco projects;up;potassco;research -https://github.com/potassco/clingo-rs;üóùÔ∏è Rust bindings to the clingo library;up;potassco;research -https://github.com/potassco/clingoLP;Theory propagator for linear programming using clingo theory language and interface.;up;potassco;research -https://github.com/potassco/clingo-dl;üìè Theory propagator for difference logic using clingo's theory language and C++ API.;up;potassco;research -https://github.com/potassco/asprin;üíä Qualitative and quantitative optimization in answer set programming;up;potassco;research -https://github.com/potassco/pddl-instances;üåç PDDL instances covering the International Planning Competitions;up;potassco;no_research -https://github.com/potassco/anthem;üéº Translate answer set programs to first-order theorem prover language;up;potassco;research -https://github.com/potassco/fz2aspif;Translating flatzinc format to ASP intermediate language aspif. To be used with clingcon-3.x series.;up;potassco;no_research -https://github.com/potassco/coala;coala is a translation tool for BC to ASP;up;potassco;research -https://github.com/potassco/acclingo;Automatic algorithm configuration for clingo;up;potassco;research -https://github.com/potassco/asprilo-encodings;Collection of ASP encodings for asprilo;up;potassco;no_research -https://github.com/potassco/asprilo;ü§ñ ASPRILO, an intra-logistics benchmark suite for answer set programming;up;potassco;no_research -https://github.com/potassco/planner;An ASP-based planner;up;potassco;research -https://github.com/potassco/aspcud;A solver for package problems in CUDF format;up;potassco;research -https://github.com/potassco/guide;ü¶Æ An introduction to our Answer Set Programming tools focusing on gringo, clingo, and clasp.;up;potassco;no_research -https://github.com/potassco/benchmark-tool;üèéÔ∏è Git-mirror of the benchmark-tool;up;potassco;no_research -https://github.com/potassco/tel;;up;potassco;no_research -https://github.com/potassco/telingo;üï∞Ô∏è A solver for temporal programs.;up;potassco;no_research -https://github.com/potassco/conda;üì¶ Conda recepies for potassco projects.;up;potassco;no_research -https://github.com/potassco/qasp2qbf;üßä A translator from quantified answer set programming to quantified boolean formula;up;potassco;research -https://github.com/potassco/xorro;‚öîÔ∏è A solver for programs with XOR constraints.;up;potassco;research -https://github.com/potassco/asprilo-seminar;;up;potassco;no_research -https://github.com/potassco/asp-planning-benchmarks;A repository of ASP planning benchmarks;up;potassco;no_research -https://github.com/potassco/aspStream;A simple approach to stream reasoning in clingo;up;potassco;no_research -https://github.com/potassco/multiclingo;A simple approach to multi-shot solving with clingo;up;potassco;no_research -https://github.com/potassco/guess_and_check;Guess and Check Answer Set Programming;up;potassco;no_research -https://github.com/potassco/clorm;üóÉÔ∏è A Python ORM-like interface for the Clingo Answer Set Programming (ASP) reasoner;up;potassco;research -https://github.com/potassco/train-scheduling-with-clingo-dl;üöÑ Benchmark scripts, encodings and instances for train scheduling with clingo-dl;up;potassco;research -https://github.com/potassco/clingo-vs-telingo-planning;;up;potassco;research -https://github.com/potassco/clingo_derive;derive macro for the clingo::ToSymbol trait;up;potassco;no_research -https://github.com/potassco/eclingo;ü߆ A solver for epistemic logic programs.;up;potassco;research -https://github.com/potassco/eclingo-prototype;Epistemic logic programming with clingo;up;potassco;research -https://github.com/potassco/teaspoon;ü•Ñ ASP encodings to solve the curriculum-based course timetabling problem;up;potassco;research -https://github.com/potassco/train-scheduling-with-hybrid-asp;"üöÇ Benchmark instances and encoding for the paper ""Train Scheduling With Hybrid Answer Set Programming""";up;potassco;research -https://github.com/potassco/tefoli;üêô Theory Loading For Clingo;up;potassco;research -https://github.com/potassco/clingo-cmake-example;üèóÔ∏è Example how to use the clingo library in a cmake based project.;up;potassco;research -https://github.com/potassco/asp-date-lib;üìÖ ASP Library for dates ;up;potassco;research -https://github.com/potassco/xls2asp;üìä Convert excel spreadsheets to ASP facts;up;potassco;research -https://github.com/potassco/aspic-legacy;üèöÔ∏è aspic legacy code: last development snapshot from Sep 2016.;up;potassco;research -https://github.com/potassco/flatzinc;ü´ì A parser for the FlatZinc modelling language;up;potassco;research -https://github.com/potassco/foliage;üçÅ Rust crate for first-order logic with integer arithmetics;up;potassco;research -https://github.com/potassco/fzn2lp;ü•û A converter from FlatZinc into an ASP fact format;up;potassco;research -https://github.com/potassco/flatzingo;:flamingo: A flatzinc frontend for clingcon ;up;potassco;research -https://github.com/potassco/clingo-sys;Raw Rust FFI bindings to the C API of clingo library;up;potassco;research -https://github.com/potassco/python-clingox;üß∞ Library with auxilary functions to use along with the clingo module.;up;potassco;no_research -https://github.com/potassco/clingo-server;üåê Clingo via HTTP;up;potassco;research -https://github.com/potassco/clingomil;Meta-interpretive learning in clingo;up;potassco;research -https://github.com/potassco/clingo-lpx;üßÆ A simplistic simplex solver for checking satisfiability of a set of equations.;up;potassco;research -https://github.com/potassco/clingo-dl-theory-rs;Raw Rust FFI bindings to the C API of clingo-dl library ;up;potassco;no_research -https://github.com/potassco/mu-gringo;üå± A prototypical grounder implementation;up;potassco;no_research -https://github.com/potassco/clingcon-theory-rs;Raw Rust FFI bindings to the C API of clingcon library ;up;potassco;no_research -https://github.com/potassco/atlingo;Automata for dynamic answer set solving;up;potassco;no_research -https://github.com/potassco/tree-sitter-clingo;üå≥ Clingo grammar for tree-sitter;up;potassco;no_research -https://github.com/potassco/clintest;üß™ A test framework for clingo programs;up;potassco;no_research -https://github.com/potassco/clingraph;üï∏Ô∏è A visualizer for graphs defined as logic programs;up;potassco;research -https://github.com/potassco/clingofmt;‚ôªÔ∏è Experimental formatter for clingo code;up;potassco;no_research -https://github.com/potassco/mapf-subgraph-system;üïµÔ∏è Solving MAPF under map-to-subgraph transformation with SAT and ASP;up;potassco;research -https://github.com/potassco/mapf-subgraph-instances;Instance set for Solving MAPF under map-to-subgraph transformation;up;potassco;no_research -https://github.com/potassco/clingo-xor; üìü Clingo + XOR-constraints + Simplex;up;potassco;research -https://github.com/potassco/plingo;üçÄ A system for probabilistic reasoning in clingo;up;potassco;research -https://github.com/potassco/clinguin;üêß Clingo Interactive UI;up;potassco;no_research -https://github.com/potassco/configuration-encoding;üß© An encoding for solving configuration problems with ASP;up;potassco;no_research -https://github.com/potassco/ngo;Non Ground Optimizer for logic programs.;up;potassco;no_research -https://github.com/UP-macroecology/ODMAP;;up;macroecology;research -https://github.com/UP-macroecology/Response_Summerschool;;up;macroecology;no_research -https://github.com/UP-macroecology/Malchow_DemogEnv_2022;"Supplementary informaion to the publication: ""Demography-environment relationships improve mechanistic understanding of range dynamics under climate change"" by Anne-Kathleen Malchow, Florian Hartig, Jette Reeg, Marc K√©ry, and Damaris Zurell.";up;macroecology;research -https://github.com/UP-macroecology/Malchow_IBMcalibration_2022;"This is supplementary material to the publication ""Fitting individual-based models of species range dynamics to long-term monitoring data"" by Anne-Kathleen Malchow, Guillermo Fandos, Urs G. Kormann, Martin Gr√ºebler, Marc K√©ry, Florian Hartig, Damaris Zurell.";up;macroecology;research -https://github.com/UP-macroecology/EBBA_Niche_vs_Range_shifts;Niche and range shifts analyses of European breeding bird atlas data.;up;macroecology;research -https://github.com/krr-up/bibliography;üìö BibTeX bibliography files of all papers referenced by the group;up;krr;no_research -https://github.com/krr-up/latex-style-comments;A scaled down version of Torsten's comments style that is hopefully more compatible;up;krr;no_research -https://github.com/krr-up/asp-macros;LaTeX macros for concepts from ASP (originally built for ASP book);up;krr;no_research -https://github.com/krr-up/logos;Collection of logos, eg for use in slides;up;krr;no_research -https://github.com/krr-up/latex-collaboration-guide;;up;krr;no_research -https://github.com/krr-up/latex-paper-template;;up;krr;no_research -https://github.com/krr-up/latex-slides-template;Template for creating (blue) slides with LaTeX beamer class;up;krr;no_research -https://github.com/krr-up/notebook;;up;krr;research -https://github.com/krr-up/robot-scheduling-encodings;Encodings and benchmarking for the robot-scheduling paper;up;krr;research -https://github.com/krr-up/action_juggling_robot;;up;krr;research -https://github.com/krr-up/latex-class-ceurart;latex-class-ceurart;up;krr;no_research -https://github.com/krr-up/asp-dse;ASP-based solution for Design Space Exploration;up;krr;research -https://github.com/krr-up/mapf-instance-generator;MAPF instance generator;up;krr;research -https://github.com/krr-up/path-repair;;up;krr;no_research -https://github.com/krr-up/python-project-template;üìÑ Template for python based projects.;up;krr;research -https://github.com/krr-up/clinguin-course-scheduling;Course scheduling project using clinguin;up;krr;no_research -https://github.com/krr-up/renopro;Reifying non-ground ASP programs.;up;krr;research -https://github.com/krr-up/meta-metric-temporal;Experiments in implementing metric temporal answer set programming using metaprogramming.;up;krr;no_research -https://github.com/krr-up/clingo-explaid;Tools to aid the development of explanation systems using clingo;up;krr;no_research -https://github.com/krr-up/latex-class-lni;;up;krr;no_research -https://github.com/krr-up/metric-temporal-experiments;Various approaches to implementing metric temporal ASP.;up;krr;no_research -https://github.com/krr-up/study-reg-configuration;Describing the study regulation problem as a configuration problem;up;krr;no_research -https://github.com/discourse-lab/pocores;coreference resolution for German;up;discourse-lab;research -https://github.com/discourse-lab/dimlex;A Lexicon of German discourse markers;up;discourse-lab;research -https://github.com/discourse-lab/GraPat;A tool for graph annotations;up;discourse-lab;research -https://github.com/discourse-lab/DiscourseSegmenter;A collection of various discourse segmenters;up;discourse-lab;research -https://github.com/discourse-lab/DisCoDict;A Dictionary of Dutch Discourse Connectives;up;discourse-lab;research -https://github.com/discourse-lab/Connective-Lex.info;A web app for a multilingual connective database.;up;discourse-lab;research -https://github.com/discourse-lab/DiMLex-Bangla;DiMLex Bangla is a lexicon of Bangla discourse connectives;up;discourse-lab;no_research -https://github.com/discourse-lab/en_dimlex;A Lexicon of English discourse markers;up;discourse-lab;research -https://github.com/discourse-lab/arg-microtexts-part2;An annotated corpus of argumentative microtexts - Part 2;up;discourse-lab;research -https://github.com/discourse-lab/turkish_connective_lexicon;;up;discourse-lab;research -https://github.com/discourse-lab/naijalex;Nigerian Pidgin Connective Lexicon;up;discourse-lab;research -https://github.com/discourse-lab/chinese-dimlex;A lexicon of Chinese discourse connectives;up;discourse-lab;no_research -https://github.com/discourse-lab/russian-dimlex;A lexicon of Russian discourse connectives;up;discourse-lab;no_research -https://github.com/cslm-lab/.github;;up;cslm-lab;no_research -https://github.com/cslm-lab/pcibex;Python and R scripts to make pre-processing of data collected with Prolific/PCIbex easier;up;cslm-lab;no_research -https://github.com/cslm-lab/reliability;reliability;up;cslm-lab;no_research -https://github.com/cslm-lab/cognitive_skills;Experiment 2 from SFB Phase 1;up;cslm-lab;research -https://github.com/cslm-lab/reliability_project;reliability_project;up;cslm-lab;research -https://github.com/UP-RS-ESP/addem;Analysis of Distributions from Digital Elevation Models (ADDEM);up;rs-esp;research -https://github.com/UP-RS-ESP/CorrCoef;Python C-extension for memory efficient and multithreaded Pearson product-moment correlation coefficient estimation using OpenMP;up;rs-esp;no_research -https://github.com/UP-RS-ESP/Codes;Codes pertinent for the analysis for remote sensing or earth-surface data;up;rs-esp;no_research -https://github.com/UP-RS-ESP/DEM-KZP;Digital Elevation Model (DEM) and KnickZone-Picker (KZP) Analyzer (http://onlinelibrary.wiley.com/doi/10.1002/2017JF004250/full);up;rs-esp;research -https://github.com/UP-RS-ESP/bpl;Python module to work with bounded power-law (BPL) distributed random variables.;up;rs-esp;no_research -https://github.com/UP-RS-ESP/demnets;Digital Elevation Model Networks;up;rs-esp;no_research -https://github.com/UP-RS-ESP/DEM_fourier_noise;Matlab code for DEM noise analysis using 2D DFT;up;rs-esp;research -https://github.com/UP-RS-ESP/Normalize;Normalize time series by quantile normalization to the normal distribution.;up;rs-esp;no_research -https://github.com/UP-RS-ESP/SnowmeltTracking;Algorithm for tracking the onset and end of the snowmelt season from passive microwave data;up;rs-esp;research -https://github.com/UP-RS-ESP/mkt;Python module to compute the Mann-Kendall test for trend in time series data;up;rs-esp;no_research -https://github.com/UP-RS-ESP/PointCloudWorkshop-June2017;Point-Cloud Workshop from 7-9 June 2017;up;rs-esp;no_research -https://github.com/UP-RS-ESP/ChanGeom;ChanGeom - Channel Geometry, River Width, and along-stream distance extraction from KML;up;rs-esp;research -https://github.com/UP-RS-ESP/Transects;Create a set of windows perpendicular to a given line shapefile;up;rs-esp;no_research -https://github.com/UP-RS-ESP/mfdrouting;Multiple Flow Direction (MFD) flow routing after Freeman (1991);up;rs-esp;research -https://github.com/UP-RS-ESP/MinGrid;MinGrid creates a gridded DEM from point clouds by the minimum elevation per grid cell;up;rs-esp;no_research -https://github.com/UP-RS-ESP/PC_geomorph_roughness;;up;rs-esp;research -https://github.com/UP-RS-ESP/TanDEM-SRTM-dh;Python scripts for the correction of raw SRTM-C tiles with TanDEM-X and potential vertical land-level change mapping;up;rs-esp;research -https://github.com/UP-RS-ESP/river-clusters;Code for river profile clustering;up;rs-esp;research -https://github.com/UP-RS-ESP/TopoMetricUncertainty;Uncertainties in topographic metrics due to truncation errors and elevation uncertainty;up;rs-esp;research -https://github.com/UP-RS-ESP/GEW-DAP05-2018;;up;rs-esp;no_research -https://github.com/UP-RS-ESP/up-rs-esp.github.io;University of Potsdam - Remote Sensing and Earth Surface Processes;up;rs-esp;no_research -https://github.com/UP-RS-ESP/GEW-DAP04-WS201819;;up;rs-esp;no_research -https://github.com/UP-RS-ESP/qreg;Python module to carry out quantile regression;up;rs-esp;no_research -https://github.com/UP-RS-ESP/GNSS-Correction-RTKLIB;GNSS Collection and Post-Processing with RTKLIB;up;rs-esp;research -https://github.com/UP-RS-ESP/PebbleCounts;PebbleCounts: grain-sizing algorithm for gravel-bed river imagery;up;rs-esp;research -https://github.com/UP-RS-ESP/FacetFlowNetwork;Flow accumulation on TINs of point-cloud data ;up;rs-esp;research -https://github.com/UP-RS-ESP/PointCloudWorkshop-Oct2019;From point clouds and full-waveform data to DEM analysis (Sep-30 to Oct-4 2019);up;rs-esp;no_research -https://github.com/UP-RS-ESP/LidarPC-KDTree;Comparison of KDTree implementations for Lidar PointClouds (PC);up;rs-esp;research -https://github.com/UP-RS-ESP/pulsewaves;Python3 module for reading lidar full waveform PulseWaves files;up;rs-esp;no_research -https://github.com/UP-RS-ESP/HillslopeAsymmetry;;up;rs-esp;research -https://github.com/UP-RS-ESP/laspy-waveform;Laspy based lidar waveform reading;up;rs-esp;research -https://github.com/UP-RS-ESP/GeologicalRemoteSensing_Manuals;Manuals (Markdown, PDF) for Python, Remote-Sensing Software, and SSH installation;up;rs-esp;no_research -https://github.com/UP-RS-ESP/MoraineAge_GaussianMixture;Calculating the Moraine Age from Cosmogenic Nuclide Boulder Ages using a Gaussian Mixture Model ;up;rs-esp;research -https://github.com/UP-RS-ESP/PebbleCounts-Application;;up;rs-esp;research -https://github.com/UP-RS-ESP/Gaussian-kernel-interpolation;Voxelize a point-cloud variable via Gaussian kernel interpolation to voxel centers;up;rs-esp;no_research -https://github.com/UP-RS-ESP/DEM_ConnectedComponents;Connected Components (CC) from longitudinal river profiles for debris flow mapping;up;rs-esp;no_research -https://github.com/UP-RS-ESP/volumetric-diffusion;Fast volumetric diffusion of signed scalar fields;up;rs-esp;no_research -https://github.com/UP-RS-ESP/DEM-Consistency-Metrics;;up;rs-esp;research -https://github.com/UP-RS-ESP/msc-rsiv;MSc Remote Sensing, geoInformation, and Visualization at the University of Potsdam;up;rs-esp;research -https://github.com/UP-RS-ESP/ICESat-2_SVDA;The Sparse Vegetation Detection Algorithm (SVDA) for ICESat-2 data;up;rs-esp;research -https://github.com/UP-RS-ESP/PointCloudWorkshop-May2022;Point Cloud and Change Detection in the Geoscience;up;rs-esp;no_research -https://github.com/UP-RS-ESP/Ames-Stereo-Pipeline-SPOT;Scripts to process SPOT6/7 (or other satellite) imagery with the Ames Stereo Pipeline (https://github.com/NeoGeographyToolkit/StereoPipeline);up;rs-esp;research -https://github.com/UP-RS-ESP/ICESat-2_QdelToro;Geometric based filtering of ICESat-2 ATL03 data for ground profile retrieval in Quebrada del Toro, Argentina;up;rs-esp;no_research -https://github.com/UP-RS-ESP/gaussian_kde_gpu;GPU Gaussian kernel density estimation;up;rs-esp;no_research -https://github.com/UP-RS-ESP/dtm-surface-area-and-slope;Tools for the estimation of surface area of digital terrain models (DTMs) and its effect on slope distributions;up;rs-esp;no_research -https://github.com/UP-RS-ESP/PlanetScope_landslide_tracking;;up;rs-esp;research -https://github.com/hpi-sam/ask-your-repository-old-api;;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/BP2018HG1;Bachelor Project Documentation;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/ask-your-repository-web;React Web Application for visualising and managing image data. Main user interface of the Ask You Repository project.;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/ask-your-repository-api;This service provides an api to store artefacts with their related meta-data and tags and performs machine learning on them;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/ask-your-repository-dialogflow-adapter;NodeJS API for handling voice query fulfilment with Dialogflow.;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/ask-your-repository-docker;Docker Deployment of Ask-Your-Repository;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/rl-4-self-repair;Reinforcement Learning Models for Online Learning of Self-Repair and Self-Optimization;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/bandits-4-self-repair;Multi-Armed bandits models for online learning of self-repair actions;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN-Course-2020;Lecture Materials;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN-Effectants;Investigate different methods for link prediction and their effectiveness for the polypharmacy problem. ;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN-EntityLinking;Exploration of Graph Neural Network techniques to represent, predict, and intervene on Entity Linking tasks.;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN-Commenters;Exploration of Graph Neural Network techniques for representation, prediction, and intervention on networks of comments on news sites.;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN-SpaceTimeGraphs;Graph Neural Networks utilization for Spatiotemporal graphs. These methods will be applied into the problem of forecasting traffic flow on PEMS-Bay, METR-LA and Seattle Loop Datasets;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/GNN-CommunityInteraction;Repo fro Bastian, Leo and Berkay project;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN-Connectomics;Exploration of Graph Neural Networks techniques for Connectomics ;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN-NLP;Exploration of Graph Neural Networks for representation, prediction, and intervention in NLP tasks;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/MarkovModels_Lecture;Hidden Markov Models Learning for Self-Adaptive Systems. Defintion of hidden states, observations, and application of the Baum-Welch algorithm;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/RL_SelfSupervised_GameEngine;"Exploring Self-supervised Self-Adaption Mechanisms Based on Continuous Reinforcement Learning with Application to Game Systems""";hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/MachineLearningControl;Machine Learning-Based Control of Dynamical Systems ;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/QuantumProgramming;Exercises, Tasks, and Projects for the Course on Quantum Programming;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/dps.training_shared_files;;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/RL_4_Feedback_Control;Train a reinforcement learning agent online to control a self-healing mechanism;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/robust-marl4sas;Research project on robust multi-agent reinforcement learning (marl) for self-adaptive systems (sas);hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/minimum-wage-rl;Project to share documentation, source code and analyzes on the topic of simulating effects of minimum wage interventions on employment and other economic metrics.;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/GNN-Course-2021;Materials of the Graph Neural Networks course taught in Winter Semester 2021 at the Hasso-Plattner Institute University of Potsdam;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/Adversarial-Digital-Twins;Materials from the course Adversarial Self-Supervised Learning with Digital Twins;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/AI_Ethics_Engineering;Prototypes, Tutorials, Speifications for Engineering Ethical AI Systems;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/digital-fuesim-manv;A German simulation system for training emergency medical services leadership personnel on how to manage Mass Casualty Incidents.;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/ethical-recsys-engineering;Ethical concerns and solutions for engineering recommender systems;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN_Graph_Query-Matching;Graph Neural Networks for Graph Query Matching Tasks;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/host-graph-sensitive-rete-nets;Repository containing evaluation artifacts for host-graph-sensitive RETE nets.;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/multi-version-models;Repository containing evaluation artifacts for multi-version models.;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/Spatio-Temporal-Graphs;Projects on Spatio-Temporal Graphs;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/MARL-TransferLearning;Projects on Transfer Learning for Multi-Agent Reinforcement Learning (MARL) in Self-Adaptive Systems;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/HT_WithinBetweenGroups;Hypotheses tests for within and between group experiments ;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/sct-validation-framework;Tool Support for the Teaching of State-Based Behavior Modeling: A validation framework that simulates and animated environments interacting with the code generated from statecharts to be used for teaching modeling.;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/sct-teaching-materials;;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/Meta-Reinforcement-Learning-for-SAS;Exploration of meta-learning methods and techniques in reinforcement learning with appication to self-adaptives systems;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/GNN-for-Knowledge-Graphs;Graph Neural Networks for Knowledge-Graph Systesm ;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/ProbabilisticModels_WiSe22_23;Projects on Discrete Time Markov Chains, Continuous Time Markov Chains, Hidden Markov Models, Markov Decision Processes;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/TGGs-for-Multi-Version-Models;Evaluation artifacts for TGGs for multi-version models;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/Extended-GDNs;Evaluation artifacts for extended Generalized Discrimination Networks;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/digital-fuesim-manv-public-test-scenarios;Public test scenarios for the Digital Fuesim MANV project.;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/Responsible-AI;Course work of Responsible Artificial Intelligence Project Seminar;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/RL.4.Autonomous.Vehicles;Training reinforcement learning agents to coordinate autonomous vehicles ;hpi;system_analysis_and_modeling_group;no_research -https://github.com/hpi-sam/Safe-RL-4-SAS;;hpi;system_analysis_and_modeling_group;research -https://github.com/hpi-sam/Incremental-TGGs-for-Multi-version-Models;;hpi;system_analysis_and_modeling_group;no_research -https://github.com/bptlab/chimera;Chimera: Execution Engine for Case Management;hpi;business_process_technology;research -https://github.com/bptlab/processeditor;Home of the true Open Source BPM Framework.;hpi;business_process_technology;research -https://github.com/bptlab/promnicat;Automatically exported from code.google.com/p/promnicat;hpi;business_process_technology;no_research -https://github.com/bptlab/bibtex.js;JavaScript bibtex Library;hpi;business_process_technology;no_research -https://github.com/bptlab/bpt-resource-management;Automatically exported from code.google.com/p/bpt-resource-management;hpi;business_process_technology;no_research -https://github.com/bptlab/JUserManagement;The JUserManagement offers a user management support to the JEngine to enable a role feature within PCM;hpi;business_process_technology;research -https://github.com/bptlab/BPMConverter;Converts different BPM representations.;hpi;business_process_technology;no_research -https://github.com/bptlab/codebase;The jBPT code library is a compendium of process technologies that support research on the design, execution, and evaluation of processes. The idea originated from observations on the evolution of process-related research disciplines. The library offers a broad range of basis analysis and utility functionality and, due to its open publishing model, can easily be extended. ;hpi;business_process_technology;no_research -https://github.com/bptlab/Coffee-in-the-Cloud;A webapp for managing a tally list for coffee consumption.;hpi;business_process_technology;no_research -https://github.com/bptlab/gryphon;web-based modeler based on bpmn.io for fCM case models (to be executed by https://github.com/bptlab/chimera);hpi;business_process_technology;research -https://github.com/bptlab/Unicorn;Unicorn Event Processing Platform;hpi;business_process_technology;research -https://github.com/bptlab/argos-backend;This is the repository for the argos backend server. The server controls and serves product, event type and event data for an event dashboard. It requires an Event Processing Platform, eg. Unicorn;hpi;business_process_technology;research -https://github.com/bptlab/argos-frontend;;hpi;business_process_technology;no_research -https://github.com/bptlab/scylla;Extensible BPMN process simulator;hpi;business_process_technology;research -https://github.com/bptlab/wiki-resources;;hpi;business_process_technology;no_research -https://github.com/bptlab/argos;Documentation for the Argos project.;hpi;business_process_technology;no_research -https://github.com/bptlab/lola-webservice;A web service wrapper for LoLA 2.0 (Low-Level Analyzer for petri nets);hpi;business_process_technology;no_research -https://github.com/bptlab/scylla-ui;UI visualizing results of the BPMN process simulator Scylla;hpi;business_process_technology;research -https://github.com/bptlab/bpt-docker-zoo;Docker-compose file to easily deploy bpt lab applications Gryphon, Unicorn and Chimera;hpi;business_process_technology;no_research -https://github.com/bptlab/bookshelf-docs;;hpi;business_process_technology;no_research -https://github.com/bptlab/goodberry;This service implements an IoT device on a Raspberry Pi. The event data is sent to an arbitrary webservice.;hpi;business_process_technology;no_research -https://github.com/bptlab/bookshelf-frontend;;hpi;business_process_technology;no_research -https://github.com/bptlab/chimera-webservice-mock;Mocked Service to test Chimera Webservice Activitites;hpi;business_process_technology;no_research -https://github.com/bptlab/bpt-iot-website;;hpi;business_process_technology;no_research -https://github.com/bptlab/bpstruct;Archived code from old google code project;hpi;business_process_technology;no_research -https://github.com/bptlab/chor-js;An editor for BPMN 2.0 choreography diagrams based on bpmn-js;hpi;business_process_technology;research -https://github.com/bptlab/blockchain-choreography;Tamper proof collaborative modelling of choreograpy models based on distributed ledger technology.;hpi;business_process_technology;no_research -https://github.com/bptlab/chor-js-demo;A demo showcasing the chor-js BPMN 2.0 choreography diagram modeler.;hpi;business_process_technology;research -https://github.com/bptlab/caz;Generic adapter to handle communication between Unicorn and Third Party APIs;hpi;business_process_technology;research -https://github.com/bptlab/mantichor-frontend;Frontend for the Mantichor choreography framework;hpi;business_process_technology;no_research -https://github.com/bptlab/mantichor-tezos;Tezos adapter for the Mantichor choreography framework ;hpi;business_process_technology;no_research -https://github.com/bptlab/mantichor-corda;Corda R3 adapter for the Mantichor choreography framework ;hpi;business_process_technology;no_research -https://github.com/bptlab/rembrandt-frontend;The front end for the Rembrandt Resource-Management-Platform.;hpi;business_process_technology;no_research -https://github.com/bptlab/rembrandt-backend;The back end for the Rembrandt Resource-Management-Platform.;hpi;business_process_technology;no_research -https://github.com/bptlab/rembrandt;A resource organization and resource usage optimization platform.;hpi;business_process_technology;no_research -https://github.com/bptlab/bpic19;;hpi;business_process_technology;no_research -https://github.com/bptlab/bpm2019ws-fcm-compliance;Checking Compliance in Data-Driven Case Management;hpi;business_process_technology;no_research -https://github.com/bptlab/mantichor-share;;hpi;business_process_technology;no_research -https://github.com/bptlab/active-chor-js;Extension of chor-js for blockchain-based active choreographies;hpi;business_process_technology;no_research -https://github.com/bptlab/cepta;CEPTA - Complex Event Processing Transportation Analysis;hpi;business_process_technology;research -https://github.com/bptlab/awesome-master-thesis;A curated list of awesome master thesis related things;hpi;business_process_technology;no_research -https://github.com/bptlab/correlation-analysis;"Code for the master thesis ""Deriving Decisive Case Characteristics in Process Performance Analysis"" by Jonas Beyer";hpi;business_process_technology;research -https://github.com/bptlab/chor-checker;TLAplus based model checking framework for choreographies;hpi;business_process_technology;no_research -https://github.com/bptlab/chor-checker-frontend;Frontend for the choreography model checking framework;hpi;business_process_technology;no_research -https://github.com/bptlab/subscription-point-visualizer;Visualizes subscription points in bpmn choreography diagrams.;hpi;business_process_technology;research -https://github.com/bptlab/ds2020-data-driven-case-management-compliance;;hpi;business_process_technology;no_research -https://github.com/bptlab/fcm2cpn;;hpi;business_process_technology;research -https://github.com/bptlab/fiber2xes;This project contains a python utility intended to use EHR data coming from fiber to create .xes event logs.;hpi;business_process_technology;research -https://github.com/bptlab/blockchain-deferred-choice;;hpi;business_process_technology;research -https://github.com/bptlab/bpi-challenge-2020;The purpose of this repository is to maintain code and text produced to analyze this year's BPI Challenge.;hpi;business_process_technology;no_research -https://github.com/bptlab/fCM-Engine;An Execution Engine for fragment-based Case Management (fCM) based on Access/CPN;hpi;business_process_technology;no_research -https://github.com/bptlab/ark_automate;An open source RPA tool which uses BPMN to create bots.;hpi;business_process_technology;research -https://github.com/bptlab/bpmn-js-properties-panel;A properties panel for bpmn-js.;hpi;business_process_technology;research -https://github.com/bptlab/ark_automate_local;Execute robots build with ark_automate locally;hpi;business_process_technology;no_research -https://github.com/bptlab/fCM-query-generator;;hpi;business_process_technology;research -https://github.com/bptlab/rpa-dmn-operation;This repo contains examples how DMN can be integrated in RPA tools.;hpi;business_process_technology;research -https://github.com/bptlab/odea-light;The purpose of this repository is to¬†provide and maintain code to quantify, interpret, and configure ontology-based event abstraction for process mining.;hpi;business_process_technology;research -https://github.com/bptlab/fCM-design-support;Modeling Tool with Design-Time Support for Fragment-Based Case Management;hpi;business_process_technology;research -https://github.com/bptlab/onto-rpa-frontend;;hpi;business_process_technology;no_research -https://github.com/bptlab/conceptual-bot-backend;;hpi;business_process_technology;no_research -https://github.com/bptlab/onto-rpa-platform;A meta repository for the components of the conceptual bot platform;hpi;business_process_technology;no_research -https://github.com/bptlab/mimic-log-extraction;A CLI tool for extracting event logs out of MIMIC Databases.;hpi;business_process_technology;research -https://github.com/bptlab/holistic-process-platform;A BPMN-based platform that combines BPMS and RPA.;hpi;business_process_technology;research -https://github.com/bptlab/fCM-Collection;A collection of fCM models;hpi;business_process_technology;no_research -https://github.com/bptlab/data-based-process-variant-analysis;;hpi;business_process_technology;no_research -https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;;hpi;business_process_technology;research -https://github.com/bptlab/relationships-between-change-patterns;;hpi;business_process_technology;research -https://github.com/bptlab/model-driven-RPA;Master Project 2023 | Model-driven RPA Bot Development;hpi;business_process_technology;research -https://github.com/bptlab/MdRPA_Library;;hpi;business_process_technology;research -https://github.com/hpi-swa-lab/Nemo;;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/TargetSpecific-ICOOOLPS;Paper on Call-target-specific Method Arguments for ICOOOLPS 2015;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/hpitr;LaTeX class for technical reports at the HPI Potsdam;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/GazeTracker;Support for gaze/eye tracking in Squeak;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/SQPyte;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/GlyphHub;The Font Engineering Toolkit: Live Font Creation in a Self-supporting Programming Environment;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/CommunityCodeReview;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/home-desktop-system;The Home Desktop System;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/simplelanguage;A simple example language built using the Truffle API.;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;A Squeak/Smalltalk implementation of polymorphic identifiers;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/teaching-image;A repository for scripts to build a teaching image;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;Blocks to the Rescue: Live Exploration of an Interactive Environment to Support Education, Construction, and Reflection in Program Design;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/learning-liveness;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/polyglot-adapters;Polyglot adapters prototype for the GraalVM.;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/graalpython;A Python 3 implementation built on GraalVM;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;An implementation of the Babylonian Programming Editor for Squeak/Smalltalk;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/tools-interactive-simulations;;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/cpython;The Python programming language;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/Rack;A hierarchical ordering system for objects in Squeak/Smalltalk with a graphical interface;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/SqueakByExample-english;An introductory book about the Squeak/Smalltalk programming system, guiding students and developers through the environment, language, tools, and the Morphic framework by means of a series of examples and exercises.;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/BP2019RH1;;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/squeak-graphics-canvas;A collection of projects related to hardware-accelerated rendering of Squeak's Morphic.;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/px20-code-finder;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/graal;GraalVM: Run Programs Faster Anywhere :rocket:;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/lively.next;Repository for work on lively.next at HPI's chair for software architecture.;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/QoppaS;An implementation of Qoppa Scheme using Ohm/S;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/qinoq;Create wonderful scrollytellings inside of lively.next ‚ùÑ;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/squeak-graphics-opengl;A collection of projects related to using OpenGL in Squeak/Smalltalk;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/squeak-inbox-talk;Bringing squeak-dev into your image;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/graalpython-java-example;Java and Python Integration Example for GraalVM;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/squeak-spelling-services;;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/BP2021RH1;Crowd-Sourced Picture Archive for Bad Harzburg / BP2021RH1;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/sb-visual-primitives;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/sb-tree-sitter;Integration of Sandblocks with Tree-Sitter to load block-based languages from grammars;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/squeak-tracedebugger;A lightweight and efficient back-in-time debugger for Squeak to trace and retrace past method invocations and state changes. Powered by SimulationStudio.;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/godot-squeak;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/sb-terminal;;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/ts-edit-action-detector;;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/pivr;;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/pivr-tools;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/pivr-tools-assets;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/native-image-visualizations;Visualizing GraalVM Native Images for Exploring Ways of Reducing File Sizes;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/react-midi;An MIDI generator built on top of React/S;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/Probe-S;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/serverless-squeak;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/aws-sdk-smalltalk;AWS SDK for Smalltalk (Squeak port);hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/cloud-squeak;Minimal Squeak for Cloud Functions (Experimental);hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/godot-pronto;;hpi;software_architecture_group;research -https://github.com/hpi-swa-lab/vr-shell;;hpi;software_architecture_group;no_research -https://github.com/hpi-swa-lab/graalvm-causality-graph;;hpi;software_architecture_group;no_research -https://github.com/SemanticMultimedia/locopod;LOcal COPy On Demand;hpi;semantic_multimedia_research_group;research -https://github.com/SemanticMultimedia/JungGraphMeasures;JungGraphMeasures - PageRank and HITS implementations for large RDF graphs ;hpi;semantic_multimedia_research_group;research -https://github.com/SemanticMultimedia/DBpedia_HITS_Scores;DBpedia_HITS_Scores;hpi;semantic_multimedia_research_group;no_research -https://github.com/SemanticMultimedia/DBpedia_PageinLinkCounts_Cleaned;DBpedia_PageinLinkCounts_Cleaned;hpi;semantic_multimedia_research_group;no_research -https://github.com/SemanticMultimedia/DBpedia_PageoutLinkCounts_Cleaned;DBpedia_PageoutLinkCounts_Cleaned;hpi;semantic_multimedia_research_group;no_research -https://github.com/SemanticMultimedia/DBpedia_PageRank_Scores;DBpedia_PageRank_Scores;hpi;semantic_multimedia_research_group;no_research -https://github.com/SemanticMultimedia/vocabularies;vocabularies;hpi;semantic_multimedia_research_group;no_research -https://github.com/SemanticMultimedia/tlr;a platform for preserving history on the web of data;hpi;semantic_multimedia_research_group;research -https://github.com/SemanticMultimedia/COAL;web media content analysis framework;hpi;semantic_multimedia_research_group;research -https://github.com/SemanticMultimedia/tlr-java-api;Java API for tailr;hpi;semantic_multimedia_research_group;no_research -https://github.com/SemanticMultimedia/RefreshQueries;;hpi;semantic_multimedia_research_group;no_research -https://github.com/Museum-Barberini/twitterscraper;Scrape Twitter for Tweets;hpi;museum_barberini;research -https://github.com/Museum-Barberini/Barberini-Analytics;A suite of data mining, analytics, and visualization solutions for analyzing museum data;hpi;museum_barberini;research -https://github.com/Museum-Barberini/twint;An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.;hpi;museum_barberini;research -https://github.com/Museum-Barberini/FlightReset;Microsoft Office 365/2019/2016 for Mac Flight Reset Tool;hpi;museum_barberini;no_research -https://github.com/Museum-Barberini/OutlookFontPoke;Microsoft Outlook 365/2019/2016 for Mac Default Font Changer;hpi;museum_barberini;no_research -https://github.com/pik-copan/pyunicorn;Unified Complex Network and Recurrence Analysis Toolbox;pik;copan;research -https://github.com/pik-copan/MayaSim;Simulation of the raise and fall of the ancient Maya civilization on the Yucatan penisula;pik;copan;research -https://github.com/pik-copan/pymofa; collection of simple functions to run and evaluate computer models systematically;pik;copan;no_research -https://github.com/pik-copan/pycopancore;reference implementation of the copan:CORE World-Earth modelling framework;pik;copan;research -https://github.com/pik-copan/pycopanbehave;Python implementation of COPAN:BEHAVE model;pik;copan;research -https://github.com/pik-copan/pycopanpbcc;Python scripts for analyzing planetary boundaries in a conceptual model of the Earth's carbon cycle including geoengineering by terrestrial carbon dioxide removal;pik;copan;research -https://github.com/pik-copan/pyregimeshifts;Python scripts for detecting nonlinear regime shifts in multiple paleoclimate time series as in Donges et al., Clim. Past. 11, 709-741 (2015);pik;copan;research -https://github.com/pik-copan/pycascades;Python framework for simulating tipping cascades on complex networks;pik;copan;research -https://github.com/pik-copan/pytippinginteractions;Python scripts for studying dynamics of interacting tipping elements;pik;copan;research -https://github.com/pik-copan/pycopandiscount;Python script to run the copan:DISCOUNT model;pik;copan;no_research -https://github.com/pik-copan/pydrf;Python scripts for estimating dose response functions and performing surrogate analysis based on temporal network data;pik;copan;research -https://github.com/pik-copan/thinkathon2021inunsafewaters;;pik;copan;no_research -https://github.com/pik-piam/madrat;R package | May All Data be Reproducible and Transparent (MADRaT);pik;pik-piam;research -https://github.com/pik-piam/magclass;R package | Data Class and Tools for Handling Spatial-Temporal Data;pik;pik-piam;research -https://github.com/pik-piam/mip;Model intercomparison visualization package;pik;pik-piam;research -https://github.com/pik-piam/magpie4;R package | MAgPIE outputs R package for MAgPIE version 4.x;pik;pik-piam;research -https://github.com/pik-piam/gdx;R package | readGDX package for R;pik;pik-piam;research -https://github.com/pik-piam/lusweave;R package | Landuse Sweave Utilities;pik;pik-piam;research -https://github.com/pik-piam/magpiesets;R package | MAgPIE sets for R;pik;pik-piam;research -https://github.com/pik-piam/luscale;R package | Landuse Scaling Tools;pik;pik-piam;research -https://github.com/pik-piam/goxygen;Documentation package for modular GAMS code;pik;pik-piam;research -https://github.com/pik-piam/shinyresults;R package with shiny modules and apps to analyze model results;pik;pik-piam;research -https://github.com/pik-piam/citation;R package | create cff citation file from R package metadata;pik;pik-piam;research -https://github.com/pik-piam/demystas;R package | Demystifying Automation on Simple Tasks;pik;pik-piam;research -https://github.com/pik-piam/remulator;A collection of R tools for fitting model results.;pik;pik-piam;research -https://github.com/pik-piam/remind;Contains the REMIND-specific routines for data and model output manipulation.;pik;pik-piam;research -https://github.com/pik-piam/luplot;Some useful functions to plot data such as a map plot function for MAgPIE objects.;pik;pik-piam;research -https://github.com/pik-piam/trafficlight;The package contains tools for data validation and aggregation of validation results.;pik;pik-piam;research -https://github.com/pik-piam/mrvalidation;Package contains routines to prepare data for validation exercises.;pik;pik-piam;research -https://github.com/pik-piam/regressionworlddata;Model estimates parameters of model functions.;pik;pik-piam;research -https://github.com/pik-piam/lpjclass;Package containing the LPJ-Object-Class together with relevant functions and methods.;pik;pik-piam;research -https://github.com/pik-piam/quitte;Bits and pieces of code to use with quitte-style data frames;pik;pik-piam;research -https://github.com/pik-piam/limes;Contains the LIMES-specific routines for data and model output manipulation.;pik;pik-piam;research -https://github.com/pik-piam/rmndt;Tools for data.table objects in the REMIND context. (Dis-)Aggregation, magpie conversion, interpolation etc.;pik;pik-piam;research -https://github.com/pik-piam/mstools;tool functions that can be used by several madrat-dependent or magpie4 output functions.;pik;pik-piam;research -https://github.com/pik-piam/edgeTrpLib;Support Library for EDGE-Transport.;pik;pik-piam;research -https://github.com/pik-piam/coupling-doc;Documentation and instructions for model coupling;pik;pik-piam;no_research -https://github.com/pik-piam/mrcommons;;pik;pik-piam;research -https://github.com/pik-piam/mrremind;The mrremind packages contains data preprocessing for the REMIND model.;pik;pik-piam;research -https://github.com/pik-piam/mrfeed;;pik;pik-piam;research -https://github.com/pik-piam/mrland;;pik;pik-piam;research -https://github.com/pik-piam/mrsoil;Package contains soil organic carbon cycling model based on IPCC Guidelines 2019 for data prepared in the madrat universe. ;pik;pik-piam;research -https://github.com/pik-piam/project_interfaces;Project specific interfaces to REMIND / MAgPIE.;pik;pik-piam;no_research -https://github.com/pik-piam/lucode2;A collection of tools which allow to manipulate and analyze code.;pik;pik-piam;research -https://github.com/pik-piam/gms;;pik;pik-piam;research -https://github.com/pik-piam/mrmagpie;The package provides cellular magpie related data via the madrat framework.;pik;pik-piam;research -https://github.com/pik-piam/primap;Coordination of primap development;pik;pik-piam;no_research -https://github.com/pik-piam/edgeTransport;A detailed transport sector model.;pik;pik-piam;research -https://github.com/pik-piam/mrfable;Tool for easy handling of FABLE project data (India Foodcrop);pik;pik-piam;research -https://github.com/pik-piam/mrwater;MAgPIE water preprocessing;pik;pik-piam;research -https://github.com/pik-piam/mrtutorial;Tutorial for mr- world packages, made as part of MAgPIE workshop;pik;pik-piam;research -https://github.com/pik-piam/MAgPIENCGains;;pik;pik-piam;research -https://github.com/pik-piam/remind2;The remind2 package contains the REMIND-specific routines for data and model output manipulation.;pik;pik-piam;research -https://github.com/pik-piam/piamModelTests;R package to work with IAMC-format data;pik;pik-piam;research -https://github.com/pik-piam/modelstats;A collection of tools for monitoring and diagnosing models;pik;pik-piam;research -https://github.com/pik-piam/mrvalidnitrogen;Madrat Sublibrary with validation-style reporting of nitrogen budgets;pik;pik-piam;research -https://github.com/pik-piam/GDPuc;R package for GDP unit conversion;pik;pik-piam;research -https://github.com/pik-piam/mrfish;calculations connected to fish and aquaculture;pik;pik-piam;research -https://github.com/pik-piam/mrwaste;MADRAT-linked package calculates municipal solid waste projections and environmental impacts, doi.org/10.1088/1748-9326/ab8659;pik;pik-piam;research -https://github.com/pik-piam/universe;;pik;pik-piam;no_research -https://github.com/pik-piam/mrdrivers;Create GDP and population scenarios;pik;pik-piam;research -https://github.com/pik-piam/piktests;;pik;pik-piam;research -https://github.com/pik-piam/mredgebuildings;;pik;pik-piam;research -https://github.com/pik-piam/mredgetransport;;pik;pik-piam;research -https://github.com/pik-piam/.github;;pik;pik-piam;no_research -https://github.com/pik-piam/discussions;Questions, answers, and discussions about PIAM tools, packages, and workflows;pik;pik-piam;no_research -https://github.com/pik-piam/m4fsdp;Output routines for extracting results from the MAgPIE framework (versions 4.x) for the FSDP project;pik;pik-piam;research -https://github.com/pik-piam/mrdieter;The mrdieter packages contains data preprocessing for the DIETER model. ;pik;pik-piam;research -https://github.com/pik-piam/blackmagicc;Generate warming pathways using MAGICC for your MAgPIE runs using reference REMIND emissions;pik;pik-piam;research -https://github.com/pik-piam/cookiecutter-lucode;cookiecutter template for a new R package using lucode2;pik;pik-piam;no_research -https://github.com/pik-piam/rOpenscmRunner;Run different simple climate models from R using a unified interface;pik;pik-piam;research -https://github.com/pik-piam/r2databus;;pik;pik-piam;research -https://github.com/pik-piam/rfp;;pik;pik-piam;research -https://github.com/pik-piam/lockfile-archive;Includes renv.lock files to document the pik-piam R package environment at different points in time;pik;pik-piam;no_research -https://github.com/pik-piam/miniPackage;;pik;pik-piam;no_research -https://github.com/pik-piam/piamInterfaces;;pik;pik-piam;research -https://github.com/pik-piam/piamenv;;pik;pik-piam;research -https://github.com/pik-piam/mrwaterplots;Plotting functions for water-specific output analysis of mrwater library;pik;pik-piam;research -https://github.com/pik-piam/remindPypsa;;pik;pik-piam;research -https://github.com/pik-piam/piamMappings;;pik;pik-piam;no_research -https://github.com/pik-piam/mrtech;;pik;pik-piam;no_research -https://github.com/pik-piam/mrdownscale;;pik;pik-piam;research -https://github.com/pik-piam/brick;;pik;pik-piam;research -https://github.com/pik-piam/mrfactors;;pik;pik-piam;research -https://github.com/remindmodel/remind;REMIND - REgional Model of INvestments and Development;pik;remind;research -https://github.com/remindmodel/pre-processing;;pik;remind;no_research -https://github.com/pik-gane/vodle;We develop an interactive, consensus-oriented group decision app;pik;pik-gane;research -https://github.com/pik-gane/tricl;TriCl model in C++;pik;pik-gane;research -https://github.com/pik-gane/pyresponsibility;quantify agents' degrees of moral responsibility in complex multi-agent decision situations;pik;pik-gane;no_research -https://github.com/pik-gane/pyoptes;Python framework for optimization of epidemic testing strategies;pik;pik-gane;no_research -https://github.com/pik-gane/satisfia;Satisficing-based Intelligent Agents;pik;pik-gane;no_research -https://github.com/pik-gane/decision-transformer-satisfia;Official codebase for Decision Transformer: Reinforcement Learning via Sequence Modeling.;pik;pik-gane;research -https://github.com/pik-gane/attainable-utility-preservation-satisfia;;pik;pik-gane;no_research -https://github.com/pik-gane/pymdptoolbox-satisfia;Markov Decision Process (MDP) Toolbox for Python;pik;pik-gane;research -https://github.com/pik-gane/ai-safety-gridworlds-satisfia;This is a suite of reinforcement learning environments illustrating various safety properties of intelligent agents.;pik;pik-gane;research -https://github.com/pik-gane/avoiding-side-effects-satisfia;Code for reproducing the results from the paper Avoiding Side Effects in Complex Environments;pik;pik-gane;research -https://github.com/pik-gane/stable-baselines3-satisfia;PyTorch version of Stable Baselines, reliable implementations of reinforcement learning algorithms. ;pik;pik-gane;research -https://github.com/pik-gane/stable-baselines3-contrib-satisfia;Contrib package for Stable-Baselines3 - Experimental reinforcement learning (RL) code;pik;pik-gane;research -https://github.com/pik-gane/train-procgen-pytorch-satisfia;Pytorch implementation on OpenAI's Procgen ppo-baseline, built from scratch.;pik;pik-gane;research -https://github.com/pik-gane/procgenAISC-satisfia;;pik;pik-gane;no_research -https://github.com/pik-gane/motabarnn;python package for torch-based neural network version of MoTaBaR;pik;pik-gane;no_research -https://github.com/pik-gane/RL4LMs_RLCHF;A modular RL library to fine-tune language models to human preferences;pik;pik-gane;research -https://github.com/pik-gane/webppl-agents-satisfia;Webppl library for generating Gridworld MDPs. JS library for displaying Gridworld. Additional agents that satisfice.;pik;pik-gane;research -https://github.com/pik-gane/alpaca_farm-collective;A simulation framework for RLHF and alternatives. Develop your RLHF method without collecting human data. ;pik;pik-gane;research -https://github.com/pik-gane/alpaca_eval-collective;A validated automatic evaluator for instruction-following language models. High-quality, cheap, and fast.;pik;pik-gane;research -https://github.com/pik-gane/Minigrid-satisfia; Simple and easily configurable grid world environments for reinforcement learning;pik;pik-gane;research -https://github.com/PIK-LPJmL/LPJmL;Welcome to the central open-source repository of LPJmL at PIK. You are free to download the code under the AGPLv3 license, see LICENSE file. Have fun. Please note that there is absolutely no support outside agreed collaborations. We also don't provide any input data, which is derived from other sources. ;pik;LPJmL_group;no_research -https://github.com/PIK-LPJmL/LPJmLmdi;LPJmLmdi - model-data integration for the LPJmL dynamic global vegetation model (R package);pik;LPJmL_group;research -https://github.com/PIK-LPJmL/lpjmlkit;A collection of basic functions to facilitate the work with the DGVM LPJmL hosted at the Potsdam Institute for Climate Impact Research. It provides functions for running LPJmL, as well as reading, processing and writing model-related data such as inputs and outputs or configuration files.;pik;LPJmL_group;research -https://github.com/PIK-LPJmL/LandInG;The Land Input Generator (LandInG) contains a collection of scripts to derive basic input datasets for terrestrial ecosystem models from diverse and partially conflicting data sources.;pik;LPJmL_group;research -https://github.com/PIK-LPJmL/pycoupler;;pik;LPJmL_group;no_research -https://github.com/GFZ/spechomo;Spectral homogenization of multispectral satellite data.;helmholz_center-gfz_potsdam;geosciences_gfz;research -https://github.com/GFZ/arosics;AROSICS - Automated and Robust Open-Source Image Co-Registration Software;helmholz_center-gfz_potsdam;geosciences_gfz;research -https://github.com/GFZ/enpt;EnMAP Processing Tool - A Python package for pre-processing of EnMAP Level-1B data;helmholz_center-gfz_potsdam;geosciences_gfz;research -https://github.com/GFZ/LocalPLSR;Quantification of soil parameters e.g. organic carbon, in field soil samples using spectrally similar soil samples from a large scale soil spectral database.;helmholz_center-gfz_potsdam;geosciences_gfz;research -https://github.com/GFZ/eGSIM;A web API and portal to explote, select and test Ground Shaking Intensity Models;helmholz_center-gfz_potsdam;geosciences_gfz;research -https://github.com/GFZ/grunt-css-url-rewrite;A grunt task for rewriting urls inside a stylesheet, using base64-encoded strings.;helmholz_center-gfz_potsdam;geosciences_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/caravan;CARAVAN is a free and open source web-based framework for on-demand seismic risk assessment, developed by the German Centre for Geosciences, Potsdam.;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/exsim;EXSIM12: A stochastic finite - fault computer program in FORTRAN (Assatourians and Atkinson, 2012);helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/exsim-pargen;Utility for generating init parameter files for EXSIM (in python);helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/REM_optimized_routing;REM (Rapid Environmental Mapping) module for optimized routing;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/REM_satex_plugin;SATEX is a QGIS plugin to process LANDSAT satellite images;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/REM_RRVS;RRVS (Remote Rapid Visual Survey) is a web tool for exposure screening based on omnidirectional images ;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/REM_DBschema;REM Database schema;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/REM_installation;Instructions for REM installation;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/workshop_unesco;;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/workshop_suggested_readings;Suggested readings for Workshop UNESCO - Lima and Santiago, May 2017;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/TrainingCourse;;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/REM_DEA;Rapid Environmental Mapping - Data Exploration Application;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/Bottom-up-Exposure-Modelling;Ipython script to exemplify the methodology of fuzzy scoring to model exposure;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/ECEE2018_Workshop;Landing Page for the joint Exposure Elicitation Workshop at 16ECEE 2018;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/shakyground;Webservice for OpenQuake based ground motion field calculator as proposed by G.Weatherill;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/quakeledger;Webservice that returns earthquake events from a local database;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/riesgos_story_c1;;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/EMCA-Exposure;Earthquake Model Central Asia - Exposure Models;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/assetmaster;web service providing exposure models upon geographical query - RIESGOS project;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/modelprop;Program to serve a fragility / vulnerability model according to a given schema - RIESGOS Project;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research -https://github.com/GFZ-Centre-for-Early-Warning/fuzzy_schemas;;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/GFZ-Centre-for-Early-Warning/damage_state_conversion;Python notebook to estimate probabilistic conversion across different physical damage states;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research -https://github.com/fastscape-lem/fastscapelib;A C++/Python library of efficient algorithms for landscape evolution modeling;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/fastscape;A fast, versatile and user-friendly landscape evolution model;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/fastscape-demo;A collection of Jupyter notebooks as examples of usage of the Fastscape software stack.;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/fastscapelib-fortran;A Fortran (+ Python bindings) library of efficient algorithms for landscape evolution modeling;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/design;Design ressources for Fastscape;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/fastscape-lem/flow-routing-depressions;ESurfD paper code supplement ;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/gilbert-board;A demonstration of Fastscape in an interactive GUI;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/orographic-precipitation;LT Model of Orographic Precipitation - A Python Implementation;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/fastscape-lem.github.io;Fastscape website;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/fastscape-lem/ipyfastscape;Interactive widgets for topographic data analysis and modelling in Jupyter notebooks;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/s2s-future-dragonstone;S2S-Future DragonStone training program materials (Jupyter notebooks);helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/workshop-gfz-2021-01;Workshop Fastscape / Xarray-simlab 01-2021 materials (Jupyter notebooks);helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/fastscape-litho;;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/crc-1211-short-course;Short Course on FastScape CRC 1211 K√∂ln;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/fastscape-lem/isterre-short-course;Short course on FastScape at ISTerre, Universite Grenoble-Alpes, October 19 to 21, 2021;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/fastscape-lem/ESPM-course;Material for Earth Surface Process Modeling Course @ Uni Potsdam, Summer Semester 2022;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/fastscape-lem/workshop-potsdam-2022-10;Workshop on Xarray and Xarray-simlab - GFZ Potsdam 10/2022;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/fastscape-lem/workshop-xsimlab-grenoble-10-2022;Notebooks for workshop on Xarray-simlab run at ISTerre, University of Grenoble-Alpes, October 2022;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/fastscape-lem/workshop-itn-potsdam-2023-01;Workshop ITN - GFZ Potsdam 01/2023;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/fastscape-lem/VariableSPIM;Variable Discharge Stream Power Incision Model;helmholz_center-gfz_potsdam;fastscape_lem;research -https://github.com/fastscape-lem/adascape;Simple adaptive speciation model as a component of FastScape-LEM;helmholz_center-gfz_potsdam;fastscape_lem;no_research -https://github.com/telota/ediarum;Archived repository for ediarum.JAR - see https://github.com/ediarum;bbaw;telota;no_research -https://github.com/telota/archiv-editor;;bbaw;telota;no_research -https://github.com/telota/rasmify;Reduce Arabic strings to their rasm, i.e. remove vocalization and other diacritics;bbaw;telota;research -https://github.com/telota/rasmify.js;;bbaw;telota;research -https://github.com/telota/cvma_fotostation_config;Konfiguration f√ºr die Metadatenverwaltung des CVMA-Bildarchivs in Potsdam mit FotoStation;bbaw;telota;no_research -https://github.com/telota/rasmipy;Reduce Arabic strings to their rasm, i.e. remove vocalization and other diacritics;bbaw;telota;research -https://github.com/telota/docker-mattermost;Docker solution for mattermost;bbaw;telota;no_research -https://github.com/telota/python-for-the-humanities;;bbaw;telota;no_research -https://github.com/telota/exist;eXist Native XML Database and Application Platform;bbaw;telota;research -https://github.com/telota/exist-documentation;Documentation of eXist;bbaw;telota;research -https://github.com/telota/bts;Berlin Text System - Collaborative Editing of Ancient Egyptian Texts and Dictionaries;bbaw;telota;research -https://github.com/telota/ava;:rocket: Futuristic JavaScript test runner;bbaw;telota;no_research -https://github.com/telota/digilib;A versatile image viewing environment for the internet.;bbaw;telota;no_research -https://github.com/telota/digilib-iiif-migrate;;bbaw;telota;no_research -https://github.com/telota/tag-denestify.js;Flatten nested tags onto one level;bbaw;telota;no_research -https://github.com/telota/quick-csr;;bbaw;telota;no_research -https://github.com/telota/wsp-forschungsaktivitaet;;bbaw;telota;no_research -https://github.com/telota/tavern;A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simnple, concise and flexible YAML-based syntax;bbaw;telota;no_research -https://github.com/telota/owlfonk-owlcarousel;Forked from https://bitbucket.org/shahzadns/owlfonk-owlcarousel;bbaw;telota;no_research -https://github.com/telota/wdio-example;Kleines WebdriverIO Testing Beispiel f√ºr den Techsprint;bbaw;telota;no_research -https://github.com/telota/quoteSalute;Inspiring greetings for your correspondence;bbaw;telota;research -https://github.com/telota/existance;;bbaw;telota;research -https://github.com/telota/quoteSalute_xpi;;bbaw;telota;no_research -https://github.com/telota/bbaw-schoell;BBAW Schoell font;bbaw;telota;no_research -https://github.com/telota/kor;ConedaKOR ‚Äì store.manage.retrieve.;bbaw;telota;research -https://github.com/telota/researchspace;ResearchSpace Platform;bbaw;telota;research -https://github.com/telota/lobid-client;JavaScript / TypeScript library to query the GND (Gemeinsame Normdatei);bbaw;telota;no_research -https://github.com/telota/ccc-tei-example;TEI-Example for Corpus Coranicum Christianum Workshop using CETEIcean;bbaw;telota;no_research -https://github.com/telota/ccdb-transliterator;;bbaw;telota;no_research -https://github.com/telota/dhd2019-exist-vue-workshop;;bbaw;telota;no_research -https://github.com/telota/rdmo-docker-compose;RDMO running in different docker images held together by docker compose;bbaw;telota;no_research -https://github.com/telota/lebenswelten-lehndorff;"XML/TEI-files from the digital edition ""Lebenswelten, Erfahrungsr√§ume und politische Horizonte der ostpreu√üischen Adelsfamilie Lehndorff vom 18. bis in das 20. Jahrhundert""";bbaw;telota;research -https://github.com/telota/jean_paul_briefe;"Daten der digitalen Edition ""Jean Paul ‚Äì S√§mtliche Briefe digital""";bbaw;telota;research -https://github.com/telota/LeibnizVIII-LaTeX_TEI;;bbaw;telota;no_research -https://github.com/telota/CIL-ACE;CIL | ACE at BBAW, Berlin, DE;bbaw;telota;research -https://github.com/telota/corpus-nummorum-editor;A Laravel-Vue-Application for Numismatics;bbaw;telota;research -https://github.com/telota/PIR;PROSOPOGRAPHIA IMPERII ROMANI, Laravel, PHP, Vue;bbaw;telota;research -https://github.com/telota/edition-humboldt-digital;TEI-XML dataset of the edition humboldt digital;bbaw;telota;research -https://github.com/telota/LinkEdLeibniz-data;;bbaw;telota;research -https://github.com/telota/pdf2jpg;Script to covert PDF to JPG without losing quality;bbaw;telota;no_research -https://github.com/telota/DigitalResourceManager;;bbaw;telota;no_research -https://github.com/telota/ChronoTool;;bbaw;telota;no_research -https://github.com/zentrum-lexikographie/ttml2tei;Convert ttml to tei xml format;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research -https://github.com/zentrum-lexikographie/e-Lexicography-2019;Course materials for the compact course in digital lexicography held at the University of Potsdam;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research -https://github.com/zentrum-lexikographie/e-lexicography-2020-WiSe;Wintersemester 2020;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research -https://github.com/zentrum-lexikographie/dwds-addon;Browser extension adding shortcuts to DWDS queries;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research -https://github.com/zentrum-lexikographie/IMSnPars;IMS Neural Dependency Parser;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;research -https://github.com/zentrum-lexikographie/e-lexicography-2021-WiSe;Wintersemester 2020/21;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research -https://github.com/zentrum-lexikographie/eval-de-lemma;;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;research -https://github.com/zentrum-lexikographie/wikimedia;Data Exchange Routines between the ZDL and Wikimedia Projects;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research -https://github.com/zentrum-lexikographie/elexicography-WiSe2023;Course materials for the compact course in digital lexicography held at the University of Potsdam;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research -https://github.com/zentrum-lexikographie/corpus-schema;TEI-P5 Schema for Annotated Text Corpora @ ZDL;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research -https://github.com/zentrum-lexikographie/dwdsmor;SFST/SMOR/DWDS-based German Morphology;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;research -https://github.com/aipescience/DBIngestor;This library provides wrappers to data ingestion into various DB systems, such as MySQL, SQLite3, and ODBC compatible systems. You can use this C++ library to ingest data in any format (you need to implement the reading routines though). The library provides an ingestion buffer that allows for multiple rows to be ingested at one time. This greatly improves ingestion performance. Further assertion and conversion functions are provided for elementary data transformation and processing. These can easily be extended by custom functions and many examples for implementing such functions are provided in the source.;leibniz;aip_e-science;no_research -https://github.com/aipescience/AsciiIngest;A general ASCII file row based ingestion tool using the DBIngestor library. This tool allows you to define custom ASCII data formats similar to the MS SQL Server format files. However it is possible to define custom checks, transformation functions, derived data rows, and constant data rows. It is easy to extend the assertion and convertion functions, by implementing ones own functions in the DBIngestor library. Further the DBIngestor library provided data buffering for higher ingest performance and many interfaces to various DB systems.;leibniz;aip_e-science;no_research -https://github.com/aipescience/libhilbert;Library for N-Dimensional Hilbert Mapping;leibniz;aip_e-science;no_research -https://github.com/aipescience/daiquiri;A framework for the publication of scientific databases;leibniz;aip_e-science;research -https://github.com/aipescience/daiquiri-app;Empty web application for the daiquiri framework;leibniz;aip_e-science;no_research -https://github.com/aipescience/uws-client;IVOA UWS service command line client;leibniz;aip_e-science;research -https://github.com/aipescience/mysql_sphere;MySQL port of pgSphere 1.1.1;leibniz;aip_e-science;no_research -https://github.com/aipescience/sqlite_sphere;Sqlite3 port of pgSphere 1.1.1 https://escience.aip.de/mysql-sphere/;leibniz;aip_e-science;no_research -https://github.com/aipescience/verlustdernacht;;leibniz;aip_e-science;no_research -https://github.com/aipescience/daiquiri-admin;A python library for administrative tasks to be used with the Daiquiri Framework;leibniz;aip_e-science;no_research -https://github.com/aipescience/make-a-movie;;leibniz;aip_e-science;no_research -https://github.com/aipescience/lightmeter;;leibniz;aip_e-science;no_research -https://github.com/aipescience/mysql_healpix;HEALPix plugin for MySQL;leibniz;aip_e-science;no_research -https://github.com/aipescience/queryparser;Parsing, processing, and translation of PostgreSQL, MySQL and ADQL queries;leibniz;aip_e-science;research -https://github.com/aipescience/lyonetia;Test tools and data for ADQL parsers and TAP services.;leibniz;aip_e-science;no_research -https://github.com/aipescience/spider-docker;Docker files for a Spider-Engine MariaDB cluster;leibniz;aip_e-science;no_research -https://github.com/aipescience/spider-test-data;Test data for a Spider-Engine MariaDB cluster;leibniz;aip_e-science;no_research -https://github.com/aipescience/copy-files-in-parallel;A python wrapper to rsync and parallel to copy a large number files using parallel threads.;leibniz;aip_e-science;no_research -https://github.com/aipescience/raid-utils;;leibniz;aip_e-science;no_research -https://github.com/aipescience/mysql_udf;MySQL UDF collection;leibniz;aip_e-science;no_research -https://github.com/aipescience/votable2sql;Tool to convert VOTables into SQL dumps;leibniz;aip_e-science;no_research -https://github.com/aipescience/django-daiquiri-tap;A tiny wrapper for astroquery.utils.tap, adding support for token authorization.;leibniz;aip_e-science;no_research -https://github.com/aipescience/provenance-applause;Provenance for APPLAUSE database;leibniz;aip_e-science;no_research -https://github.com/aipescience/cosmosim-tap-tutorials;Tutorials for using TAP service on www.cosmosim.org;leibniz;aip_e-science;no_research -https://github.com/ATB-Potsdam/IDM;Irrigation water Demand Module;leibniz;agricultural_engineering_and_bioeconomy;research -https://github.com/ATB-Potsdam/monica-env-extractor;"Extract all subobjects from a MONICA ""env"" JSON to separate files";leibniz;agricultural_engineering_and_bioeconomy;no_research -https://github.com/ATB-Potsdam/Matlab_TVDI_cal;Calculate TVDI using Landsat 8 images;leibniz;agricultural_engineering_and_bioeconomy;no_research -https://github.com/ATB-Potsdam/monica;license;leibniz;agricultural_engineering_and_bioeconomy;research -https://github.com/ATB-Potsdam/jupyterhub_dockerized;;leibniz;agricultural_engineering_and_bioeconomy;no_research -https://github.com/ATB-Potsdam/daisy-model_dockerized;;leibniz;agricultural_engineering_and_bioeconomy;no_research -https://github.com/ATB-Potsdam/N_opt_economic;simple approach to estimate economic optimum of N fertilisation;leibniz;agricultural_engineering_and_bioeconomy;research -https://github.com/ATB-Potsdam/Food-Packaging-Simulation;Matlab code for simulation of package headspace and shelf life;leibniz;agricultural_engineering_and_bioeconomy;no_research -https://github.com/PolarTerrestrialEnvironmentalSystems/LegacyAge-1.0;Calculation of Bacon Age-Depth-models for the LegacyAge 1.0 dataset. Supplement to: Chenzhi Li, Alexander Postl, Thomas B√∂hmer, Xianyong Cao, Andrew Dolman, Ulrike Herzschuh (2021): Harmonized chronologies of a global late Quaternary pollen dataset (LegacyAge 1.0);awi;polar_terrestrial_environmental_systems;no_research -https://github.com/PolarTerrestrialEnvironmentalSystems/LandCoverChange;;awi;polar_terrestrial_environmental_systems;no_research -https://github.com/EarthSystemDiagnostics/hamstr;An rstan implementation of Bacon-like age-depth modelling but with hierarchically structured multi-resolution depth scales.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/corit;An R package to calculate time scale dependent correlations.;awi;earth_system_diagnostics;no_research -https://github.com/EarthSystemDiagnostics/sedproxy;An R package for modelling sediment archived climate proxy records.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/simproxyage;An R package to simulate age uncertainty in layer-counted climate proxy records.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/proxysnr;An R package to separate the common signal from local noise in climate proxy records using spectral analyses.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/orbitalforcing;R package for calculating orbital forcing of the climate. (data package);awi;earth_system_diagnostics;no_research -https://github.com/EarthSystemDiagnostics/ecustools;An R package of miscellaneous functions for the ECUS/SPACE group.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/MonsoonMinimalModel;"Minimal model for monsoon precipitation for manuscript ""Position and orientation of the westerly jet determined Holocene rainfall patterns in China, Nature Communications, 2019""";awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/HolSNR;;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/piccr;A bundle of R functions to correct and calibrate raw Picarro cavity ring down spectroscopy stable isotope data.;awi;earth_system_diagnostics;no_research -https://github.com/EarthSystemDiagnostics/simulate-picarro;simple simulation of Picarro measurement process;awi;earth_system_diagnostics;no_research -https://github.com/EarthSystemDiagnostics/cpt-picarr;;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/TrenchR;An R package to analyse and plot trench-like proxy records.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/optimalcores;An R software project to analyse optimal ice core locations.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/exNGT;A bundle of R scripts to analyse extended North Greenland Traverse firn core data;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/paleospec;PaleoSpec is an R package to assist the analysis of variance and power spectra;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/climproxyrecords;R data package containing the Marcott and Shakun proxy record compilations, GISP2, and other data.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/pfields;An R package to analyse gridded field data.;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/psem;Proxy Spectral Error Model;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/esdpublic;Metapackage to ease installation of all public ESD R packages and their dependencies.;awi;earth_system_diagnostics;no_research -https://github.com/EarthSystemDiagnostics/geostools;An R package of tools to assist with handling geoscientific problems;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/grfxtools;An R package of tools to assist with various plotting tasks;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/stattools;An R package of tools for statistical analyses;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/prxytools;An R package of tools to assist with proxy analyses;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/ncdftools;An R package of tools to handle NetCDF files ;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/Dolman14C_2021;Code to reproduce the analyses in Dolman et al. (2021) Estimating bioturbation from replicated small-sample radiocarbon ages;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/laepple22-commentbova;Code for Laepple et al., 2022, Nature Communications Arising ;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/hamstrbacon;Interface between rbacon and hamstr;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/topoExtract;extract interpolated values from raster along ice-flow trajectories;awi;earth_system_diagnostics;research -https://github.com/EarthSystemDiagnostics/shinysedproxy;shiny app for sedproxy;awi;earth_system_diagnostics;no_research \ No newline at end of file +html_url;description;organisation;research_group;project;language +https://github.com/Open-Systems-Pharmacology/Suite;Open Systems Pharmacology Suite Setup ;startup;open_systems_pharmacology;research;Rich Text Format +https://github.com/Open-Systems-Pharmacology/PK-Sim;PK-Sim¬Æ is a comprehensive software tool for whole-body physiologically based pharmacokinetic modeling;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/MoBi;MoBi¬Æ is a software tool for multiscale physiological modeling and simulation;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox;Collection of Matlab¬Æ functions for the processing of PK-Sim¬Æ or MoBi¬Æ models;startup;open_systems_pharmacology;research;Rich Text Format +https://github.com/Open-Systems-Pharmacology/R-Toolbox;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Vision-Mission;Vision & Mission of Open Systems Pharmacology ;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSPSuite.BDDHelper;Helper functions for BDD Development used in the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/Forum;Discussion forum for the Open Systems Pharmacology Project;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/MiKTeX;MiKTeX distribution used by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSPSuite.Utility;Cross-cutting concerns implementation used in the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/OSPSuite.Serializer;Xml serialization engine used in the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding;DataBinding framework for WinForms application used in the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding.DevExpress;DataBinding Framework for DevExpress components used by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/OSPSuite.TeXReporting;LaTeX Reporting Component for the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/DCI;Data Component Interface used in the Open-Systems-Pharmacology Suite ;startup;open_systems_pharmacology;research;C++ +https://github.com/Open-Systems-Pharmacology/OSPSuite.FuncParser;Function parser for numeric and logic expressions used by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C++ +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel;Calculation engine for models built with PK-Sim¬Æ or MoBi¬Æ;startup;open_systems_pharmacology;research;C++ +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES.282;ODE solver used by OSPSuite.SimModel. Based on CVODES solver version 2.8.2 (Copyright ¬© 2002-2016, Lawrence Livermore National Security);startup;open_systems_pharmacology;research;C +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModelSolverBase;Base implementation for all solver used by OSPSuite.SimModel;startup;open_systems_pharmacology;research;C++ +https://github.com/Open-Systems-Pharmacology/build-scripts;Collection of rake tasks used during build;startup;open_systems_pharmacology;research;Ruby +https://github.com/Open-Systems-Pharmacology/OSPSuite.Core;Core functionalities of the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/OSPSuite.Dimensions;List of dimensions supported by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSPSuite.PKParameters;List of PK parameters supported by the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSPSuite.Documentation;Documentation files for the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/InstallationValidator;Installation Validation Tool for the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/Glucose-Insulin-Model;The physiologically-based whole-body model of the glucose-insulin-glucagon regulatory system;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/PAGE2017-Budapest;Training materials for the OSP workshop at PAGE 2017 Budapest;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/ISSX-2017-Cologne;Training materials for the OSP workshop at ISSX 2017, Cologne;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/ISOP-webinar---PK-Sim-MoBi-introduction;ISOP QSP Webinar Series: Bridging and Tackling the Gap between Empirical and Systems Pharmacology Models: Where do we stand? Part 7: PK-Sim/Mobi ‚Äì Open Systems Pharmacology Suite by Jan Schlender;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSP-based-publications-and-content;Publications of all kind based on the Open Systems Pharmacology Suite;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Example_Diclofenac;MoBi example projects for Diclofenac;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Example_ManualModel;MoBi example project for a model created in MoBi from scratch;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Example_Aciclovir;PK-Sim example project for Aciclovir;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Example_Caffeine;PK-Sim example project for Caffeine;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Example_Paracetamol;PK-Sim example project for Paracetamol;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Example_Theophylline;PK-Sim example project for Theophylline;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Reporting-Engine;(Matlab) Reporting-Engine;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox-Core;Collection of Matlab¬Æ core functions for the processing of PK-Sim¬Æ or MoBi¬Æ models ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/ACoP-2017-FortLauderdale;Training materials for the OSP workshop at ACoP 2017, Fort Lauderdale;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Schema;Schema definition for xml model created for the OSPSuite.SimModel calculation engine ;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/open-systems-pharmacology.github.io;Open Systems Pharmacology Website (www.open-systems-pharmacology.org);startup;open_systems_pharmacology;no_research;SCSS +https://github.com/Open-Systems-Pharmacology/Pregnancy-Models;Physiologically Based Pharmacokinetic Models for Pregnant Women;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/ICRP-Extended;On going work regarding ICRP Population improvement;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/PAGE-2018-Workshop;PK-Sim¬Æ & MoBi¬Æ (OSPS¬Æ) workshop on integrating PBPK with QSP for in-silico first-in-man PD predictions ;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-March-2018;Training materials for the PharMetrX POSP PBPK workshop, Potsdam March 2018;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Exemplary-Protein-Models;Exemplary Protein PBPK Models ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/ACoP-2018-Workshop;PK-Sim¬Æ & MoBi¬Æ (OSPS¬Æ) workshop on integrating PBPK with QSP;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/BOSTON-2018-Workshop; PK-Sim¬Æ & MoBi¬Æ workshop on integrating PBPK with QSP;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/2-Day-BOSTON-Workshop-2018;PK-Sim¬Æ & MoBi¬Æ (OSPS¬Æ) workshop on integrating PBPK with QSP;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Model;Whole-body PBPK model of clarithromycin as CYP3A4 and P-gp DDI perpetrator drug ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Alfentanil-Model;Whole-body PBPK model of alfentanil as CYP3A4 DDI victim drug;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Digoxin-Model;Whole-body PBPK model of digoxin as P-gp DDI victim drug;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Itraconazole-Model;Whole-body PBPK model of itraconazole as CYP3A4 and P-gp DDI perpetrator drug;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Midazolam-Model;Whole-body PBPK model of midazolam as CYP3A4 DDI victim drug;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Rifampicin-Model;Whole-body PBPK model of rifampicin as CYP3A4 and P-gp DDI perpetrator drug;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Midazolam-DDI;Modeling of published clinical Clarithromycin-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Digoxin-DDI;Modeling of published clinical Itraconazole-Digoxin-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Midazolam-DDI;Modeling of published clinical Itraconazole-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Alfentanil-DDI;Modeling of published clinical Rifampicin-Alfentanil-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Digoxin-DDI;Modeling of published clinical Rifampicin-Digoxin-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Midazolam-DDI;Modeling of published clinical Rifampicin-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Digoxin-DDI;Modeling of published clinical Clarithromycin-Digoxin-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Hormonal-Contraceptive-Agents-Datasets; Concentration data from studies performed during proprietary drug development programs by Bayer;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/docs;Open Systems Pharmacology - Live Documentation;startup;open_systems_pharmacology;no_research;HTML +https://github.com/Open-Systems-Pharmacology/Protein-Abundance-Database;WIP: Protein Abundance Database;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/SGLT2i-hyperfiltration-model;A Quantitative Systems Pharmacology kidney model of diabetes associated renal hyperfiltration and the effects of SGLT inhibitors.;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/QualificationPlan;Creation and processing of a qualification plan;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Gene-Expression-Databases;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/BERLIN-2019-WORKSHOP;[FULLY BOOKED] SGS Exprimo and the FU Berlin will run a two-days hands-on PK-Sim¬Æ & MoBi¬Æ workshop on introducing PBPK for human dose projection and drug-drug interaction (DDI) prediction on 21st-22nd Feb 2019 at the Institute of Pharmacy, FU-Berlin, Germany.;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/2-Day-WASHINGTON-Workshop-2019;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES;ODE solver used by OSPSuite.SimModel. Based on CVODES solver (Copyright ¬© 2002-2018, Lawrence Livermore National Security);startup;open_systems_pharmacology;research;C +https://github.com/Open-Systems-Pharmacology/PAGE-2019-PB-QSP-Workshop;PK-Sim¬Æ & MoBi¬Æ (OSP Suite) workshop on PBPK-basd QSP;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/PAGE-2019-PBPK-Workshop;PK-Sim¬Æ & MoBi¬Æ (OSP Suite) workshop on PBPK;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/2-Day-Orlando-Workshop-2019;PK-Sim¬Æ & MoBi¬Æ workshop on PBPK and PBPK-based QSP;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/QualificationRunner;Qualification runner in charge of managing a qualification workflow;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Model;Whole-body PBPK model of fluvoxamine as CYP1A2 and CYP3A4 DDI perpetrator drug;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Theophylline-DDI;Modeling of published clinical Fluvoxamine-Theophylline-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Theophylline-DDI;Modeling of published clinical Rifampicin-Theophylline-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Caffeine-DDI;Modeling of published clinical Fluvoxamine-Caffeine-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Midazolam-DDI;Modeling of published clinical Fluvoxamine-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Theophylline-Model;Whole-body PBPK model of theophylline as CYP1A2 DDI victim drug;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Triazolam-Model;Whole-body PBPK model of triazolam;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Alprazolam-Model;Whole-body PBPK model of alprazolam;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-March-2019;Training materials for the PharMetrX POSP PBPK workshop, Potsdam March 2019;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/IFN-alpha;A multiscale QSP model of IFN-alpha induced activation of the JAK/STAT pathway in human liver cells (Kalra et al., 2019);startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/OSPSuite-R;R package for the OSPSuite;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/markdown-joiner;Reporting tool allowing different markdown files to be exported in a cohesive structure (html, md, pdf);startup;open_systems_pharmacology;research;JavaScript +https://github.com/Open-Systems-Pharmacology/Qualification-text-modules;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Skin-permeation-model;Implementation of Dancik et al (2013) skin permeation model in MoBi;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP3A4;Qualification of OSP platform for CYP3A4-mediated DDI;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Model;Whole-body PBPK model of gemfibrozil as CYP2C8 and OATP1B1 DDI perpetrator drug;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Repaglinide-Model;Whole-body PBPK model of repaglinide as CYP2C8, CYP3A4, OATP1B1 and OATP1B3 DDI victim drug;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Pioglitazone-Model;Whole-body PBPK model of pioglitazone as CYP2C8 DDI victim drug;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Repaglinide-DDI;Modeling of published clinical gemfibrozil-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Pioglitazone-DDI;Modeling of published clinical gemfibrozil-pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Repaglinide-DDI;Modeling of published clinical itraconazole-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Pioglitazone-DDI;Modeling of published clinical itraconazole-pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Repaglinide-DDI;Modeling of published clinical gemfibrozil-itraconazole-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Pioglitazone-DDI;Modeling of published clinical gemfibrozil-itraconazole-pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Repaglinide-DDI;Modeling of published clinical rifampicin-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Pioglitazone-DDI;Modeling of published clinical rifampicin-pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Repaglinide-DDI;Modeling of published clinical clarithromycin-repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Amikacin-Model;Whole-body PBPK model of Amikacin;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Vancomycin-Model;Whole-body PBPK model of Vancomycin ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Pregabalin-Model;Whole-body PBPK model of Pregabalin;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Sufentanil-Model;Whole-body PBPK model of Sufentanil;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/ACoP-10-PBPK-Workshop-2019;PBPK Workshop at ACoP 10 2019;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/ACoP-10-Antibody-PBPKPD-Workshop-2019;Workshop on PBPK/PD of ADCs in Tumor Treatment;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Montelukast-Model;Whole-body PBPK model of montelukast;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Paclitaxel-Model;Whole-body PBPK model of paclitaxel;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_GFR_Ontogeny;Pediatric Qualification Package for GFR Ontogeny ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP3A4_Ontogeny;Pediatric Qualification Package for CYP3A4 Ontogeny ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP2C8_Ontogeny;Pediatric Qualification Package for CYP2C8 Ontogeny ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/TLF-Library;TLF Library implementation in R;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Boston-PBPKPD-Workshop-Sept-2019;PBPK/PD Workshop for Small Molecules and Antibodies with PK-Sim and MoBi;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSMOSES;Open-Source MOdeling framework for automated quality control and management of complex life Science systEms modelS (OSMOSES);startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Dapagliflozin-Model;Whole-body PBPK model of dapagliflozin;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Evaluation-plan-template;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Raltegravir-Model;Whole-body PBPK model of Raltegravir;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Atazanavir-Raltegravir-DDI;Modeling of published clinical atazanavir-raltegravir-DDI studies ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Atazanavir-Model;Whole-body PBPK model of atazanavir ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Mefenamic_acid-Dapagliflozin-DDI;Modeling of published clinical mefenamic acid-dapagliflozin-DDI studies;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/OSPSuite.ReportingEngine;R implementation of the reporting engine ;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Ondansetron-Model;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Oxycodone-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/ASCPT-Satelite-OSPS-Workshops;ASCPT2020 satellite workshops: PK-Sim¬Æ & MoBi¬Æ hands-on training for PBPK and PBPK-based QSP at University of Houston, College of Pharmacy (www.esqlabs.com/news-events);startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/rClr;R package for accessing .NET;startup;open_systems_pharmacology;research;C# +https://github.com/Open-Systems-Pharmacology/QSPC-Satellite-OSPS-Workshops;QSPC2020 satellite workshops: PK-Sim¬Æ & MoBi¬Æ hands-on training for PBPK and PBPK-based QSP in Leiden, Netherlands (April 21st and 25th) (www.esqlabs.com/news-events) ;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSPS-Workshop-Afrika-Cape-Town-2020;PK-Sim goes Africa! Open source PBPK modelling with the OSPSuite (PK-Sim¬Æ & MoBi¬Æ) for MIDD at WCOP2020;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Qualification-DDI-UGT;Qualification of UGT-mediated drug-drug interactions;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Mefenamic-acid-Model;Whole-body PBPK model of mefenamic acid;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Database-for-observed-data;Database for published pharmacokinetic data;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/OSPS-PBPK-and-QSP-Workshop-at-PAGE-2020;PAGE 2020 satellite workshops: PK-Sim¬Æ & MoBi¬Æ hands-on training for PBPK and PBPK-based QSP (www.esqlabs.com/news-events) ;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Idarucizumab-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Dabigatran-Reversal-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/tracelib;package to capture and store workflow traceability metadata;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/test-appveyor;Repository for testing purposes only;startup;open_systems_pharmacology;no_research;Ruby +https://github.com/Open-Systems-Pharmacology/OSPSuite.CentOS;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Alprazolam-DDI;Modeling of published clinical Itraconazole-Alprazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Triazolam-DDI;Modeling of published clinical Itraconazole-Triazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Midazolam-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Alprazolam-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Alfentanil-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Triazolam-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Triazolam-DDI;Modeling of published clinical Clarithromycin-Triazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Alprazolam-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Nicotine-Cotinine-Model;Whole-body PBPK/PD model of nicotine and cotinine;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Alprazolam-DDI;Modeling of published clinical Rifampicin-Alprazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Triazolam-DDI;Modeling of published clinical Rifampicin-Triazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Efavirenz-Model;Whole-body PBPK model of efavirenz as CYP3A4 perpetrator drug ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Efavirenz-Midazolam-DDI;Modeling of published clinical Efavirenz-Midazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Efavirenz-Alfentanil-DDI;Modeling of published clinical Efavirenz-Alfentanil-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/OSP-Qualification-Reports;Qualification Reports recreated with every new OSP Release;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/OSP-PBPK-Model-Library;Library of released PBPK substance models and evaluation reports;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Erythromycin-Model;;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Verapamil-Midazolam-DDI;Modeling of published clinical Verapamil-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Verapamil-Model;Verapamil PBPK model (parent only);startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Metformin-Model;Whole-body PBPK model of metformin (OCT2/MATE DDI victim drug);startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Metformin-DDI;Modeling of published clinical Cimetidine-Metformin-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Midazolam-DDI;Modeling of published clinical Cimetidine-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Model;Whole-body PBPK model of cimetidine (OCT2/MATE and CYP3A4 DDI perpetrator drug);startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Incretins-Model;Physiologically-based Quantitative Systems Pharmacology model of GLP-1 and GIP and DPP4-inhibitor sitagliptin;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/OSPSuite.CPP-Toolbox;;startup;open_systems_pharmacology;no_research;C +https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-June-2020;Training materials for the PharMetrX OSP PBPK workshop, online, June 2020;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Buprenorphine-Model;Whole-body PBPK models of buprenorphine for adults, children and preterm neonates;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/CompiledModel-Template;;startup;open_systems_pharmacology;no_research;C++ +https://github.com/Open-Systems-Pharmacology/Amoxicillin-Model;Whole-body PBPK model of intravenously administered amoxicillin for adults, pregnant women and postpartum women;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fentanyl-Model;Physiologically-Based Pharmacokinetic (PBPK) Modeling of Fentanyl in Adults and Pediatric Patients;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Lung-absorption-model;Pulmonary drug absorption implemented in MoBi (Eriksson et al. 2020);startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Roadmap;Roadmap for the Open Systems Pharmacology Platform;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Trimethoprim-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Trimethoprim-Metformin-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Trimethoprim-Repaglinide-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Trimethoprim-Pioglitazone-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Trimethoprim-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Levonorgestrel;Whole-body PBPK model of levonorgestrel with and without ethinyl estradiol as CYP3A4 DDI victim drug;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Verapamil-DDI;Modeling of published clinical Cimetidine-Verapamil-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Alprazolam-DDI;Modeling of published clinical Cimetidine-Alprazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Triazolam-DDI;Modeling of published clinical Cimetidine-Triazolam-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Alfentanil-DDI;Modeling of published clinical Cimetidine-Alfentanil-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Furosemide-Model;Whole-body PBPK model of furosemide (OAT victim drug) ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Probenecid-Model;Whole-body PBPK model of probenecid (OAT perpetrator drug);startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Probenecid-Furosemide-DDI;Modeling of published clinical Probenecid-Furosemide-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Probenecid-Rifampicin-DDI;Modeling of published clinical Probenecid-Rifampicin-DDI studies for model evaluation ;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Verapamil-DDI;Modeling of published clinical Rifampicin-Verapamil-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/BE-Studies;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Model;Whole-body PBPK model of ethinylestradiol as CYP1A2 DDI perpetrator drug;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Mexiletine-Model;Whole-body PBPK model of mexiletine as CYP1A2 DDI substrate and inhibitor drug;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Moclobemide-Model;Whole-body PBPK model of moclobemide as a substrate and a moderate inhibitor of CYP2C19;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Omeprazole-Model;Whole-body PBPK model of omeprazole as a substrate of CYP2C19 and CYP3A4 and an inhibitor of CYP2C19.;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/S-Mephenytoin-Model;Whole-body PBPK model of s-mephenytoin as a substrate of CYP2C19;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Tizanidine-Model;Whole-body PBPK model of tizanidine as a substrate of CYP1A2;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Metoprolol-Model;PBPK model of metoprolol and metoprolol-CYP2D6 drug-gene interactions;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Caffeine-DDI;Modeling of published clinical Ethinylestradiol-Caffeine-DDI studies for model evaluation.;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Mexiletine-Caffeine-DDI;Modeling of published clinical Mexiletine-Caffeine-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Mexiletine-DDI;Modeling of published clinical Fluvoxamine-Mexiletine-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Tizanidine-DDI;Modeling of published clinical Ethinylestradiol-Tizanidine-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Tizanidine-DDI;Modeling of published clinical Fluvoxamine-Tizanidine-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Mexiletine-Tizanidine-DDI;Modeling of published clinical Mexiletine-Tizanidine-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Omeprazole-DDI;Modeling of published clinical Fluvoxamine-Omeprazole-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Moclobemide-Omeprazole-DDI;Modeling of published clinical Moclobemide-Omeprazole-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-S-mephenytoin-DDI;Modeling of published clinical Fluvoxamine-S-mephenytoin-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP1A2;Qualification of OSP platform for CYP1A2-mediated DDI;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP2C19;Qualification of OSP platform for CYP2C19-mediated DDI;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Inhalation-model;Implementation of inhalation model in MoBi;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/OSPSuite-Epics;Repository used to define epics for our releases;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Quetiapine-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Aripiprazole-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Bupropion-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Bupropion-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Voriconazole-Bupropion-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-April-2021;Training materials for the PharMetrX OSP PBPK workshop, online, April 2021;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Model;PBPK model of carbamazepine as CYP3A4 and CYP2B6 substrate and inducer;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Alprazolam-DDI;Modeling of published clinical Carbamazepine-Alprazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Bupropion-DDI;Modeling of published clinical Carbamazepine-Bupropion-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Carbamazepine-DDI;Modeling of published clinical Erythromycin-Carbamazepine DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Efavirenz-DDI;Modeling of published clinical Carbamazepine-Efavirenz DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/FDA-OSP-workshop-April-2021;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Irinotecan-Model;Whole-body PBPK model of Irinotecan (CPT-11) & SN-38 determining tumor tissue kinetics of both parent drug & active metabolite.;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/IVIVC-with-particle-dissolution-module-in-OSP;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/OSPSuite.ParameterIdentification;R package for parameter identification for OSPS models;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Cabozantinib-Model;Cabozantinib PBPK;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Docker-Base-Images;;startup;open_systems_pharmacology;no_research;Shell +https://github.com/Open-Systems-Pharmacology/Docker-Images;Temporary solution - images are created manually. Later docker images should be created automatically as part of CI;startup;open_systems_pharmacology;no_research;Shell +https://github.com/Open-Systems-Pharmacology/Docker-Images-Ospsuite-R;Temporary solution - images are created manually. Later docker images should be created automatically as part of CI;startup;open_systems_pharmacology;no_research;Shell +https://github.com/Open-Systems-Pharmacology/Docker-Images-ReportingEngine;Temporary solution - images are created manually. Later docker images should be created automatically as part of CI;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Fluconazole-Model;Whole-body PBPK model of fluconazole ;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/BIGS-Workshop-2021---University-of-Bonn;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Finerenone-Model;Whole-body PBPK model of finerenone (KERENDIA).;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Alfentanil-Pediatrics;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Amikacin-Pediatrics;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Raltegravir-Pediatrics;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Montelukast-Pediatrics;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Sufentanil-Pediatrics;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Vancomycin-Pediatrics;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluconazole-Alfentanil-DDI;Modeling of published clinical Fluconazole-Alfentanil-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluconazole-Midazolam-DDI;Modeling of published clinical Fluconazole-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Fluconazole-Triazolam-DDI;Modeling of published clinical Fluconazole-Triazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Propofol-Pediatrics;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Propofol-Model;Whole-body pbpbk model of Propofol;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_UGT1A1_Ontogeny;Pediatric Qualification Package for UGT1A1 Ontogeny;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Rifampicin-Rosuvastatin-DDI;Modeling of published clinical Rifampicin-Rosuvastatin-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Rosuvastatin-DDI;Modeling of published clinical Gemfibrozil-Rosuvastatin-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Probenecid-Rosuvastatin-DDI;Modeling of published clinical Probenecid-Rosuvastatin-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rosuvastatin-Model;Whole-body PBPK model of rosuvastatin (OATP1B1/OATP1B3/BCRP DDI victim drug);startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_UGT1A9_Ontogeny;Pediatric Qualification Package for UGT1A9 Ontogeny ;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/OSPSuite.BuildingBlockTemplates;List of PK-Sim building block templates available on demand for PK-Sim users;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/OSPSuite.RUtils;Utility functions for Open Systems Pharmacology R packages;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/AGePOP-OSP-Workshop-2021;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Olanzapine-Model;PBPK model of olanzapine;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Lactation-PBPK-model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/.github;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/TestCases;Test cases for the new OSP features;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Dextromethorphan-Model;PBPK Model of Dextromethorphan and its Metabolites;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-April-2022;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/2022_june_pbpk_page_workshop;Leveraging in vitro data for MIDD pre-PAGE 2-day workshop ;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Workflows;Reusable workflows (e.g. GitHub Actions) which can be used in any OSP repository;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Carbamazepine-DDI;Modeling of published clinical Cimetidine-Carbamazepine DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Midazolam-DDI;Modeling of published clinical Carbamazepine-Midazolam-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Model;Whole-body parent-metabolite PBPK model of Clopidogrel for CYP2B6, CYP2C8, CYP2C19, and CYP3A4 DDGI Predictions;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Bupropion-DDI;Modeling of published clinical Clopidogrel-Bupropion-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Montelukast-DDI;Modeling of published clinical Clopidogrel-Montelukast-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Pioglitazone-DDI;Modeling of published clinical Clopidogrel-Pioglitazone-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Repaglinide-DDI;Modeling of published clinical Clopidogrel-Repaglinide-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Omeprazole-Clopidogrel-DDI;Modeling of published clinical Omeprazole-Clopidogrel-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Clopidogrel-DDI;Modeling of published clinical Rifampicin-Clopidogrel-DDI studies for model evaluation;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Creatinine-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Creatinine-drug-biomaker-interactions;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-drug-biomaker-interactions;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Sildenafil-Model;;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Felodipine-Model;;startup;open_systems_pharmacology;research;MATLAB +https://github.com/Open-Systems-Pharmacology/Voriconazole-Model;Whole-body PBPK model of voriconazole as CYP2C19 substrate and CYP3A4 perpetrator drug;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Birds-PBK-Model;;startup;open_systems_pharmacology;research;HTML +https://github.com/Open-Systems-Pharmacology/Thyroid-Hormones-PB-QSP-Model;Physiology-based systems pharmacology model of thyroid hormones regulation in rat and human;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/dAb2-Model;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Inulin-Model;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/MEDI524-Model;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/MEDI524YTE-Model;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/CDA1-Model;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/BAY794620-Model;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Qualification-CKD;Chronic Kidney Disease - Qualification of PK-Sim implementation;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Tefibazumab-Model;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/7E3-Model;;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Erythromycin-Digoxin-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Digoxin-Pediatrics;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Warfarin-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_P-gp_Ontogeny;Pediatric Qualification Package P-gp Ontogeny;startup;open_systems_pharmacology;research;R +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Midazolam-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alfentanil-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Digoxin-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alprazolam-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Triazolam-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/pharmetheus_pbpk_workshop;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/PharMetrX-Workshop-March-2023;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/developer-docs;;startup;open_systems_pharmacology;no_research; +https://github.com/Open-Systems-Pharmacology/Quinidine-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Quinidine-DDGI-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Tacrolimus-Model;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Tacrolimus-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Voriconazole-Tacrolimus-DDGI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Tacrolimus-DDI;;startup;open_systems_pharmacology;research; +https://github.com/Open-Systems-Pharmacology/Sundials;;startup;open_systems_pharmacology;no_research; +https://github.com/potsdamer-buergerstiftung/inselbuehne;Die Website der Inselb√ºhne Potsdam;startup;potsdamer_b√ºrgerstiftung;no_research;TypeScript +https://github.com/potsdamer-buergerstiftung/projects;A monorepo that holds all of our web-related projects;startup;potsdamer_b√ºrgerstiftung;no_research;Vue +https://github.com/potsdamer-buergerstiftung/portal;Our web portal for volunteer and content management;startup;potsdamer_b√ºrgerstiftung;no_research;TypeScript +https://github.com/potsdamer-buergerstiftung/app;The app designed for volunteers at Potsdam Civic Foundation;startup;potsdamer_b√ºrgerstiftung;no_research;C++ +https://github.com/potsdamer-buergerstiftung/umami;Umami is a simple, fast, privacy-focused alternative to Google Analytics.;startup;potsdamer_b√ºrgerstiftung;no_research; +https://github.com/potsdamer-buergerstiftung/web;;startup;potsdamer_b√ºrgerstiftung;no_research;TypeScript +https://github.com/aeye-lab/pymovements;A python package for processing eye movement data;up;aeya;research;Python +https://github.com/aeye-lab/etra-fairness;;up;aeya;research;Jupyter Notebook +https://github.com/aeye-lab/etra-reading-comprehension;;up;aeya;research;Python +https://github.com/aeye-lab/ecml-ADHD;;up;aeya;research;Python +https://github.com/aeye-lab/neurips-gmml-2022-xai-eye-tracking-evaluation;;up;aeya;no_research;Python +https://github.com/aeye-lab/pymovements-conda-staged-recipes;A place to submit conda recipes before they become fully fledged conda-forge feedstocks;up;aeya;no_research;Python +https://github.com/aeye-lab/pymovements-toy-dataset;Example toy dataset resource for the pymovements package;up;aeya;no_research; +https://github.com/aeye-lab/Eyettention;;up;aeya;research;Python +https://github.com/aeye-lab/sp-eyegan;;up;aeya;research;Jupyter Notebook +https://github.com/aeye-lab/etra-2023-bridging-the-gap;;up;aeya;no_research;Jupyter Notebook +https://github.com/aeye-lab/pymovements-toy-dataset-eyelink;;up;aeya;no_research;AGS Script +https://github.com/potassco/lc2casp;A translator for logic programs with constraint atoms to CASP.;up;potassco;no_research;C++ +https://github.com/potassco/clingo;ü§î A grounder and solver for logic programs.;up;potassco;research;C++ +https://github.com/potassco/clasp;‚öôÔ∏è A conflict-driven nogood learning answer set solver;up;potassco;research;C++ +https://github.com/potassco/ginkgo;üå± Generalize learned constraints with ASP;up;potassco;research;C++ +https://github.com/potassco/xclasp;A variant of the clasp solver for extracting learned constraints;up;potassco;no_research; +https://github.com/potassco/plasp;üó∫Ô∏è ASP planning tools for PDDL;up;potassco;research;C++ +https://github.com/potassco/libcsp;;up;potassco;no_research;C++ +https://github.com/potassco/clingcon;‚õìÔ∏è Extension of clingo to handle constraints over integers;up;potassco;research;C++ +https://github.com/potassco/potassco.github.io;‚ÑπÔ∏è The Potassco website;up;potassco;no_research;HTML +https://github.com/potassco/libpotassco;üß± A utility library used by various potassco projects;up;potassco;research;C++ +https://github.com/potassco/clingo-rs;üóùÔ∏è Rust bindings to the clingo library;up;potassco;research;Rust +https://github.com/potassco/clingoLP;Theory propagator for linear programming using clingo theory language and interface.;up;potassco;research;Python +https://github.com/potassco/clingo-dl;üìè Theory propagator for difference logic using clingo's theory language and C++ API.;up;potassco;research;C++ +https://github.com/potassco/asprin;üíä Qualitative and quantitative optimization in answer set programming;up;potassco;research;Python +https://github.com/potassco/pddl-instances;üåç PDDL instances covering the International Planning Competitions;up;potassco;no_research;Common Lisp +https://github.com/potassco/anthem;üéº Translate answer set programs to first-order theorem prover language;up;potassco;research;Rust +https://github.com/potassco/fz2aspif;Translating flatzinc format to ASP intermediate language aspif. To be used with clingcon-3.x series.;up;potassco;no_research;C++ +https://github.com/potassco/coala;coala is a translation tool for BC to ASP;up;potassco;research;Python +https://github.com/potassco/acclingo;Automatic algorithm configuration for clingo;up;potassco;research;Python +https://github.com/potassco/asprilo-encodings;Collection of ASP encodings for asprilo;up;potassco;no_research;CLIPS +https://github.com/potassco/asprilo;ü§ñ ASPRILO, an intra-logistics benchmark suite for answer set programming;up;potassco;no_research;Python +https://github.com/potassco/planner;An ASP-based planner;up;potassco;research;Python +https://github.com/potassco/aspcud;A solver for package problems in CUDF format;up;potassco;research;C++ +https://github.com/potassco/guide;ü¶Æ An introduction to our Answer Set Programming tools focusing on gringo, clingo, and clasp.;up;potassco;no_research;TeX +https://github.com/potassco/benchmark-tool;üèéÔ∏è Git-mirror of the benchmark-tool;up;potassco;no_research;Python +https://github.com/potassco/tel;;up;potassco;no_research;Haskell +https://github.com/potassco/telingo;üï∞Ô∏è A solver for temporal programs.;up;potassco;no_research;Python +https://github.com/potassco/conda;üì¶ Conda recepies for potassco projects.;up;potassco;no_research;Python +https://github.com/potassco/qasp2qbf;üßä A translator from quantified answer set programming to quantified boolean formula;up;potassco;research;Python +https://github.com/potassco/xorro;‚öîÔ∏è A solver for programs with XOR constraints.;up;potassco;research;Python +https://github.com/potassco/asprilo-seminar;;up;potassco;no_research; +https://github.com/potassco/asp-planning-benchmarks;A repository of ASP planning benchmarks;up;potassco;no_research;ASP +https://github.com/potassco/aspStream;A simple approach to stream reasoning in clingo;up;potassco;no_research;Python +https://github.com/potassco/multiclingo;A simple approach to multi-shot solving with clingo;up;potassco;no_research;Python +https://github.com/potassco/guess_and_check;Guess and Check Answer Set Programming;up;potassco;no_research;Python +https://github.com/potassco/clorm;üóÉÔ∏è A Python ORM-like interface for the Clingo Answer Set Programming (ASP) reasoner;up;potassco;research;Python +https://github.com/potassco/train-scheduling-with-clingo-dl;üöÑ Benchmark scripts, encodings and instances for train scheduling with clingo-dl;up;potassco;research;Python +https://github.com/potassco/clingo-vs-telingo-planning;;up;potassco;research;ASP +https://github.com/potassco/clingo_derive;derive macro for the clingo::ToSymbol trait;up;potassco;no_research;Rust +https://github.com/potassco/eclingo;ü߆ A solver for epistemic logic programs.;up;potassco;research;Python +https://github.com/potassco/eclingo-prototype;Epistemic logic programming with clingo;up;potassco;research;Python +https://github.com/potassco/teaspoon;ü•Ñ ASP encodings to solve the curriculum-based course timetabling problem;up;potassco;research;C++ +https://github.com/potassco/train-scheduling-with-hybrid-asp;"üöÇ Benchmark instances and encoding for the paper ""Train Scheduling With Hybrid Answer Set Programming""";up;potassco;research;Python +https://github.com/potassco/tefoli;üêô Theory Loading For Clingo;up;potassco;research;Python +https://github.com/potassco/clingo-cmake-example;üèóÔ∏è Example how to use the clingo library in a cmake based project.;up;potassco;research;C +https://github.com/potassco/asp-date-lib;üìÖ ASP Library for dates ;up;potassco;research;Python +https://github.com/potassco/xls2asp;üìä Convert excel spreadsheets to ASP facts;up;potassco;research;Python +https://github.com/potassco/aspic-legacy;üèöÔ∏è aspic legacy code: last development snapshot from Sep 2016.;up;potassco;research;Python +https://github.com/potassco/flatzinc;ü´ì A parser for the FlatZinc modelling language;up;potassco;research;Rust +https://github.com/potassco/foliage;üçÅ Rust crate for first-order logic with integer arithmetics;up;potassco;research;Rust +https://github.com/potassco/fzn2lp;ü•û A converter from FlatZinc into an ASP fact format;up;potassco;research;Rust +https://github.com/potassco/flatzingo;:flamingo: A flatzinc frontend for clingcon ;up;potassco;research;Python +https://github.com/potassco/clingo-sys;Raw Rust FFI bindings to the C API of clingo library;up;potassco;research;Rust +https://github.com/potassco/python-clingox;üß∞ Library with auxilary functions to use along with the clingo module.;up;potassco;no_research;Python +https://github.com/potassco/clingo-server;üåê Clingo via HTTP;up;potassco;research;Rust +https://github.com/potassco/clingomil;Meta-interpretive learning in clingo;up;potassco;research;Python +https://github.com/potassco/clingo-lpx;üßÆ A simplistic simplex solver for checking satisfiability of a set of equations.;up;potassco;research;C++ +https://github.com/potassco/clingo-dl-theory-rs;Raw Rust FFI bindings to the C API of clingo-dl library ;up;potassco;no_research;Rust +https://github.com/potassco/mu-gringo;üå± A prototypical grounder implementation;up;potassco;no_research;Rust +https://github.com/potassco/clingcon-theory-rs;Raw Rust FFI bindings to the C API of clingcon library ;up;potassco;no_research;Rust +https://github.com/potassco/atlingo;Automata for dynamic answer set solving;up;potassco;no_research;C++ +https://github.com/potassco/tree-sitter-clingo;üå≥ Clingo grammar for tree-sitter;up;potassco;no_research;C +https://github.com/potassco/clintest;üß™ A test framework for clingo programs;up;potassco;no_research;Python +https://github.com/potassco/clingraph;üï∏Ô∏è A visualizer for graphs defined as logic programs;up;potassco;research;Python +https://github.com/potassco/clingofmt;‚ôªÔ∏è Experimental formatter for clingo code;up;potassco;no_research;Rust +https://github.com/potassco/mapf-subgraph-system;üïµÔ∏è Solving MAPF under map-to-subgraph transformation with SAT and ASP;up;potassco;research;C++ +https://github.com/potassco/mapf-subgraph-instances;Instance set for Solving MAPF under map-to-subgraph transformation;up;potassco;no_research; +https://github.com/potassco/clingo-xor; üìü Clingo + XOR-constraints + Simplex;up;potassco;research;C++ +https://github.com/potassco/plingo;üçÄ A system for probabilistic reasoning in clingo;up;potassco;research;Python +https://github.com/potassco/clinguin;üêß Clingo Interactive UI;up;potassco;no_research;Python +https://github.com/potassco/configuration-encoding;üß© An encoding for solving configuration problems with ASP;up;potassco;no_research;Python +https://github.com/potassco/ngo;Non Ground Optimizer for logic programs.;up;potassco;no_research;Python +https://github.com/UP-macroecology/ODMAP;;up;macroecology;research;R +https://github.com/UP-macroecology/Response_Summerschool;;up;macroecology;no_research;R +https://github.com/UP-macroecology/Malchow_DemogEnv_2022;"Supplementary informaion to the publication: ""Demography-environment relationships improve mechanistic understanding of range dynamics under climate change"" by Anne-Kathleen Malchow, Florian Hartig, Jette Reeg, Marc K√©ry, and Damaris Zurell.";up;macroecology;research;R +https://github.com/UP-macroecology/Malchow_IBMcalibration_2022;"This is supplementary material to the publication ""Fitting individual-based models of species range dynamics to long-term monitoring data"" by Anne-Kathleen Malchow, Guillermo Fandos, Urs G. Kormann, Martin Gr√ºebler, Marc K√©ry, Florian Hartig, Damaris Zurell.";up;macroecology;research;R +https://github.com/UP-macroecology/EBBA_Niche_vs_Range_shifts;Niche and range shifts analyses of European breeding bird atlas data.;up;macroecology;research;R +https://github.com/krr-up/bibliography;üìö BibTeX bibliography files of all papers referenced by the group;up;krr;no_research;TeX +https://github.com/krr-up/latex-style-comments;A scaled down version of Torsten's comments style that is hopefully more compatible;up;krr;no_research;TeX +https://github.com/krr-up/asp-macros;LaTeX macros for concepts from ASP (originally built for ASP book);up;krr;no_research;TeX +https://github.com/krr-up/logos;Collection of logos, eg for use in slides;up;krr;no_research;PostScript +https://github.com/krr-up/latex-collaboration-guide;;up;krr;no_research; +https://github.com/krr-up/latex-paper-template;;up;krr;no_research;TeX +https://github.com/krr-up/latex-slides-template;Template for creating (blue) slides with LaTeX beamer class;up;krr;no_research;TeX +https://github.com/krr-up/notebook;;up;krr;research;Jupyter Notebook +https://github.com/krr-up/robot-scheduling-encodings;Encodings and benchmarking for the robot-scheduling paper;up;krr;research;Python +https://github.com/krr-up/action_juggling_robot;;up;krr;research; +https://github.com/krr-up/latex-class-ceurart;latex-class-ceurart;up;krr;no_research;TeX +https://github.com/krr-up/asp-dse;ASP-based solution for Design Space Exploration;up;krr;research;Python +https://github.com/krr-up/mapf-instance-generator;MAPF instance generator;up;krr;research;Python +https://github.com/krr-up/path-repair;;up;krr;no_research; +https://github.com/krr-up/python-project-template;üìÑ Template for python based projects.;up;krr;research;Python +https://github.com/krr-up/clinguin-course-scheduling;Course scheduling project using clinguin;up;krr;no_research; +https://github.com/krr-up/renopro;Reifying non-ground ASP programs.;up;krr;research;Python +https://github.com/krr-up/meta-metric-temporal;Experiments in implementing metric temporal answer set programming using metaprogramming.;up;krr;no_research; +https://github.com/krr-up/clingo-explaid;Tools to aid the development of explanation systems using clingo;up;krr;no_research;Python +https://github.com/krr-up/latex-class-lni;;up;krr;no_research;TeX +https://github.com/krr-up/metric-temporal-experiments;Various approaches to implementing metric temporal ASP.;up;krr;no_research;Python +https://github.com/krr-up/study-reg-configuration;Describing the study regulation problem as a configuration problem;up;krr;no_research; +https://github.com/discourse-lab/pocores;coreference resolution for German;up;discourse-lab;research;Python +https://github.com/discourse-lab/dimlex;A Lexicon of German discourse markers;up;discourse-lab;research;XSLT +https://github.com/discourse-lab/GraPat;A tool for graph annotations;up;discourse-lab;research;JavaScript +https://github.com/discourse-lab/DiscourseSegmenter;A collection of various discourse segmenters;up;discourse-lab;research;Python +https://github.com/discourse-lab/DisCoDict;A Dictionary of Dutch Discourse Connectives;up;discourse-lab;research; +https://github.com/discourse-lab/Connective-Lex.info;A web app for a multilingual connective database.;up;discourse-lab;research;JavaScript +https://github.com/discourse-lab/DiMLex-Bangla;DiMLex Bangla is a lexicon of Bangla discourse connectives;up;discourse-lab;no_research; +https://github.com/discourse-lab/en_dimlex;A Lexicon of English discourse markers;up;discourse-lab;research; +https://github.com/discourse-lab/arg-microtexts-part2;An annotated corpus of argumentative microtexts - Part 2;up;discourse-lab;research; +https://github.com/discourse-lab/turkish_connective_lexicon;;up;discourse-lab;research; +https://github.com/discourse-lab/naijalex;Nigerian Pidgin Connective Lexicon;up;discourse-lab;research; +https://github.com/discourse-lab/chinese-dimlex;A lexicon of Chinese discourse connectives;up;discourse-lab;no_research;Python +https://github.com/discourse-lab/russian-dimlex;A lexicon of Russian discourse connectives;up;discourse-lab;no_research; +https://github.com/cslm-lab/.github;;up;cslm-lab;no_research; +https://github.com/cslm-lab/pcibex;Python and R scripts to make pre-processing of data collected with Prolific/PCIbex easier;up;cslm-lab;no_research;Python +https://github.com/cslm-lab/reliability;reliability;up;cslm-lab;no_research;HTML +https://github.com/cslm-lab/cognitive_skills;Experiment 2 from SFB Phase 1;up;cslm-lab;research;TeX +https://github.com/cslm-lab/reliability_project;reliability_project;up;cslm-lab;research;HTML +https://github.com/UP-RS-ESP/addem;Analysis of Distributions from Digital Elevation Models (ADDEM);up;rs-esp;research;Python +https://github.com/UP-RS-ESP/CorrCoef;Python C-extension for memory efficient and multithreaded Pearson product-moment correlation coefficient estimation using OpenMP;up;rs-esp;no_research;C +https://github.com/UP-RS-ESP/Codes;Codes pertinent for the analysis for remote sensing or earth-surface data;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/DEM-KZP;Digital Elevation Model (DEM) and KnickZone-Picker (KZP) Analyzer (http://onlinelibrary.wiley.com/doi/10.1002/2017JF004250/full);up;rs-esp;research;Matlab +https://github.com/UP-RS-ESP/bpl;Python module to work with bounded power-law (BPL) distributed random variables.;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/demnets;Digital Elevation Model Networks;up;rs-esp;no_research;C +https://github.com/UP-RS-ESP/DEM_fourier_noise;Matlab code for DEM noise analysis using 2D DFT;up;rs-esp;research;MATLAB +https://github.com/UP-RS-ESP/Normalize;Normalize time series by quantile normalization to the normal distribution.;up;rs-esp;no_research;C +https://github.com/UP-RS-ESP/SnowmeltTracking;Algorithm for tracking the onset and end of the snowmelt season from passive microwave data;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/mkt;Python module to compute the Mann-Kendall test for trend in time series data;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/PointCloudWorkshop-June2017;Point-Cloud Workshop from 7-9 June 2017;up;rs-esp;no_research;Matlab +https://github.com/UP-RS-ESP/ChanGeom;ChanGeom - Channel Geometry, River Width, and along-stream distance extraction from KML;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/Transects;Create a set of windows perpendicular to a given line shapefile;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/mfdrouting;Multiple Flow Direction (MFD) flow routing after Freeman (1991);up;rs-esp;research;C +https://github.com/UP-RS-ESP/MinGrid;MinGrid creates a gridded DEM from point clouds by the minimum elevation per grid cell;up;rs-esp;no_research;C +https://github.com/UP-RS-ESP/PC_geomorph_roughness;;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/TanDEM-SRTM-dh;Python scripts for the correction of raw SRTM-C tiles with TanDEM-X and potential vertical land-level change mapping;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/river-clusters;Code for river profile clustering;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/TopoMetricUncertainty;Uncertainties in topographic metrics due to truncation errors and elevation uncertainty;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/GEW-DAP05-2018;;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/up-rs-esp.github.io;University of Potsdam - Remote Sensing and Earth Surface Processes;up;rs-esp;no_research;JavaScript +https://github.com/UP-RS-ESP/GEW-DAP04-WS201819;;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/qreg;Python module to carry out quantile regression;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/GNSS-Correction-RTKLIB;GNSS Collection and Post-Processing with RTKLIB;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/PebbleCounts;PebbleCounts: grain-sizing algorithm for gravel-bed river imagery;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/FacetFlowNetwork;Flow accumulation on TINs of point-cloud data ;up;rs-esp;research;C +https://github.com/UP-RS-ESP/PointCloudWorkshop-Oct2019;From point clouds and full-waveform data to DEM analysis (Sep-30 to Oct-4 2019);up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/LidarPC-KDTree;Comparison of KDTree implementations for Lidar PointClouds (PC);up;rs-esp;research;Jupyter Notebook +https://github.com/UP-RS-ESP/pulsewaves;Python3 module for reading lidar full waveform PulseWaves files;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/HillslopeAsymmetry;;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/laspy-waveform;Laspy based lidar waveform reading;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/GeologicalRemoteSensing_Manuals;Manuals (Markdown, PDF) for Python, Remote-Sensing Software, and SSH installation;up;rs-esp;no_research;TeX +https://github.com/UP-RS-ESP/MoraineAge_GaussianMixture;Calculating the Moraine Age from Cosmogenic Nuclide Boulder Ages using a Gaussian Mixture Model ;up;rs-esp;research; +https://github.com/UP-RS-ESP/PebbleCounts-Application;;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/Gaussian-kernel-interpolation;Voxelize a point-cloud variable via Gaussian kernel interpolation to voxel centers;up;rs-esp;no_research;Python +https://github.com/UP-RS-ESP/DEM_ConnectedComponents;Connected Components (CC) from longitudinal river profiles for debris flow mapping;up;rs-esp;no_research;Jupyter Notebook +https://github.com/UP-RS-ESP/volumetric-diffusion;Fast volumetric diffusion of signed scalar fields;up;rs-esp;no_research; +https://github.com/UP-RS-ESP/DEM-Consistency-Metrics;;up;rs-esp;research;Python +https://github.com/UP-RS-ESP/msc-rsiv;MSc Remote Sensing, geoInformation, and Visualization at the University of Potsdam;up;rs-esp;research;Ruby +https://github.com/UP-RS-ESP/ICESat-2_SVDA;The Sparse Vegetation Detection Algorithm (SVDA) for ICESat-2 data;up;rs-esp;research; +https://github.com/UP-RS-ESP/PointCloudWorkshop-May2022;Point Cloud and Change Detection in the Geoscience;up;rs-esp;no_research;Jupyter Notebook +https://github.com/UP-RS-ESP/Ames-Stereo-Pipeline-SPOT;Scripts to process SPOT6/7 (or other satellite) imagery with the Ames Stereo Pipeline (https://github.com/NeoGeographyToolkit/StereoPipeline);up;rs-esp;research;Shell +https://github.com/UP-RS-ESP/ICESat-2_QdelToro;Geometric based filtering of ICESat-2 ATL03 data for ground profile retrieval in Quebrada del Toro, Argentina;up;rs-esp;no_research;Jupyter Notebook +https://github.com/UP-RS-ESP/gaussian_kde_gpu;GPU Gaussian kernel density estimation;up;rs-esp;no_research;Jupyter Notebook +https://github.com/UP-RS-ESP/dtm-surface-area-and-slope;Tools for the estimation of surface area of digital terrain models (DTMs) and its effect on slope distributions;up;rs-esp;no_research; +https://github.com/UP-RS-ESP/PlanetScope_landslide_tracking;;up;rs-esp;research;Python +https://github.com/hpi-sam/ask-your-repository-old-api;;hpi;system_analysis_and_modeling_group;no_research;JavaScript +https://github.com/hpi-sam/BP2018HG1;Bachelor Project Documentation;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/ask-your-repository-web;React Web Application for visualising and managing image data. Main user interface of the Ask You Repository project.;hpi;system_analysis_and_modeling_group;no_research;JavaScript +https://github.com/hpi-sam/ask-your-repository-api;This service provides an api to store artefacts with their related meta-data and tags and performs machine learning on them;hpi;system_analysis_and_modeling_group;no_research;Python +https://github.com/hpi-sam/ask-your-repository-dialogflow-adapter;NodeJS API for handling voice query fulfilment with Dialogflow.;hpi;system_analysis_and_modeling_group;no_research;JavaScript +https://github.com/hpi-sam/ask-your-repository-docker;Docker Deployment of Ask-Your-Repository;hpi;system_analysis_and_modeling_group;no_research;Shell +https://github.com/hpi-sam/rl-4-self-repair;Reinforcement Learning Models for Online Learning of Self-Repair and Self-Optimization;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/bandits-4-self-repair;Multi-Armed bandits models for online learning of self-repair actions;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-Course-2020;Lecture Materials;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-Effectants;Investigate different methods for link prediction and their effectiveness for the polypharmacy problem. ;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-EntityLinking;Exploration of Graph Neural Network techniques to represent, predict, and intervene on Entity Linking tasks.;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-Commenters;Exploration of Graph Neural Network techniques for representation, prediction, and intervention on networks of comments on news sites.;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/GNN-SpaceTimeGraphs;Graph Neural Networks utilization for Spatiotemporal graphs. These methods will be applied into the problem of forecasting traffic flow on PEMS-Bay, METR-LA and Seattle Loop Datasets;hpi;system_analysis_and_modeling_group;research;Jupyter Notebook +https://github.com/hpi-sam/GNN-CommunityInteraction;Repo fro Bastian, Leo and Berkay project;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-Connectomics;Exploration of Graph Neural Networks techniques for Connectomics ;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/GNN-NLP;Exploration of Graph Neural Networks for representation, prediction, and intervention in NLP tasks;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/MarkovModels_Lecture;Hidden Markov Models Learning for Self-Adaptive Systems. Defintion of hidden states, observations, and application of the Baum-Welch algorithm;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/RL_SelfSupervised_GameEngine;"Exploring Self-supervised Self-Adaption Mechanisms Based on Continuous Reinforcement Learning with Application to Game Systems""";hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/MachineLearningControl;Machine Learning-Based Control of Dynamical Systems ;hpi;system_analysis_and_modeling_group;research;Java +https://github.com/hpi-sam/QuantumProgramming;Exercises, Tasks, and Projects for the Course on Quantum Programming;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/dps.training_shared_files;;hpi;system_analysis_and_modeling_group;research;Dart +https://github.com/hpi-sam/RL_4_Feedback_Control;Train a reinforcement learning agent online to control a self-healing mechanism;hpi;system_analysis_and_modeling_group;research;Jupyter Notebook +https://github.com/hpi-sam/robust-marl4sas;Research project on robust multi-agent reinforcement learning (marl) for self-adaptive systems (sas);hpi;system_analysis_and_modeling_group;research;Jupyter Notebook +https://github.com/hpi-sam/minimum-wage-rl;Project to share documentation, source code and analyzes on the topic of simulating effects of minimum wage interventions on employment and other economic metrics.;hpi;system_analysis_and_modeling_group;research;Python +https://github.com/hpi-sam/GNN-Course-2021;Materials of the Graph Neural Networks course taught in Winter Semester 2021 at the Hasso-Plattner Institute University of Potsdam;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/Adversarial-Digital-Twins;Materials from the course Adversarial Self-Supervised Learning with Digital Twins;hpi;system_analysis_and_modeling_group;no_research;Java +https://github.com/hpi-sam/AI_Ethics_Engineering;Prototypes, Tutorials, Speifications for Engineering Ethical AI Systems;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/digital-fuesim-manv;A German simulation system for training emergency medical services leadership personnel on how to manage Mass Casualty Incidents.;hpi;system_analysis_and_modeling_group;research;TypeScript +https://github.com/hpi-sam/ethical-recsys-engineering;Ethical concerns and solutions for engineering recommender systems;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/GNN_Graph_Query-Matching;Graph Neural Networks for Graph Query Matching Tasks;hpi;system_analysis_and_modeling_group;no_research;Python +https://github.com/hpi-sam/host-graph-sensitive-rete-nets;Repository containing evaluation artifacts for host-graph-sensitive RETE nets.;hpi;system_analysis_and_modeling_group;no_research;Java +https://github.com/hpi-sam/multi-version-models;Repository containing evaluation artifacts for multi-version models.;hpi;system_analysis_and_modeling_group;no_research;Java +https://github.com/hpi-sam/Spatio-Temporal-Graphs;Projects on Spatio-Temporal Graphs;hpi;system_analysis_and_modeling_group;research;Jupyter Notebook +https://github.com/hpi-sam/MARL-TransferLearning;Projects on Transfer Learning for Multi-Agent Reinforcement Learning (MARL) in Self-Adaptive Systems;hpi;system_analysis_and_modeling_group;research; +https://github.com/hpi-sam/HT_WithinBetweenGroups;Hypotheses tests for within and between group experiments ;hpi;system_analysis_and_modeling_group;research;R +https://github.com/hpi-sam/sct-validation-framework;Tool Support for the Teaching of State-Based Behavior Modeling: A validation framework that simulates and animated environments interacting with the code generated from statecharts to be used for teaching modeling.;hpi;system_analysis_and_modeling_group;research;Java +https://github.com/hpi-sam/sct-teaching-materials;;hpi;system_analysis_and_modeling_group;no_research;TeX +https://github.com/hpi-sam/Meta-Reinforcement-Learning-for-SAS;Exploration of meta-learning methods and techniques in reinforcement learning with appication to self-adaptives systems;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/GNN-for-Knowledge-Graphs;Graph Neural Networks for Knowledge-Graph Systesm ;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/ProbabilisticModels_WiSe22_23;Projects on Discrete Time Markov Chains, Continuous Time Markov Chains, Hidden Markov Models, Markov Decision Processes;hpi;system_analysis_and_modeling_group;no_research;Jupyter Notebook +https://github.com/hpi-sam/TGGs-for-Multi-Version-Models;Evaluation artifacts for TGGs for multi-version models;hpi;system_analysis_and_modeling_group;no_research;Java +https://github.com/hpi-sam/Extended-GDNs;Evaluation artifacts for extended Generalized Discrimination Networks;hpi;system_analysis_and_modeling_group;no_research;Java +https://github.com/hpi-sam/digital-fuesim-manv-public-test-scenarios;Public test scenarios for the Digital Fuesim MANV project.;hpi;system_analysis_and_modeling_group;research; +https://github.com/hpi-sam/Responsible-AI;Course work of Responsible Artificial Intelligence Project Seminar;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/RL.4.Autonomous.Vehicles;Training reinforcement learning agents to coordinate autonomous vehicles ;hpi;system_analysis_and_modeling_group;no_research; +https://github.com/hpi-sam/Safe-RL-4-SAS;;hpi;system_analysis_and_modeling_group;research;Python +https://github.com/hpi-sam/Incremental-TGGs-for-Multi-version-Models;;hpi;system_analysis_and_modeling_group;no_research;Java +https://github.com/bptlab/chimera;Chimera: Execution Engine for Case Management;hpi;business_process_technology;research;JavaScript +https://github.com/bptlab/processeditor;Home of the true Open Source BPM Framework.;hpi;business_process_technology;research;Java +https://github.com/bptlab/promnicat;Automatically exported from code.google.com/p/promnicat;hpi;business_process_technology;no_research;Java +https://github.com/bptlab/bibtex.js;JavaScript bibtex Library;hpi;business_process_technology;no_research;TeX +https://github.com/bptlab/bpt-resource-management;Automatically exported from code.google.com/p/bpt-resource-management;hpi;business_process_technology;no_research;HTML +https://github.com/bptlab/JUserManagement;The JUserManagement offers a user management support to the JEngine to enable a role feature within PCM;hpi;business_process_technology;research;Java +https://github.com/bptlab/BPMConverter;Converts different BPM representations.;hpi;business_process_technology;no_research;Java +https://github.com/bptlab/codebase;The jBPT code library is a compendium of process technologies that support research on the design, execution, and evaluation of processes. The idea originated from observations on the evolution of process-related research disciplines. The library offers a broad range of basis analysis and utility functionality and, due to its open publishing model, can easily be extended. ;hpi;business_process_technology;no_research;Java +https://github.com/bptlab/Coffee-in-the-Cloud;A webapp for managing a tally list for coffee consumption.;hpi;business_process_technology;no_research;Python +https://github.com/bptlab/gryphon;web-based modeler based on bpmn.io for fCM case models (to be executed by https://github.com/bptlab/chimera);hpi;business_process_technology;research;HTML +https://github.com/bptlab/Unicorn;Unicorn Event Processing Platform;hpi;business_process_technology;research;Java +https://github.com/bptlab/argos-backend;This is the repository for the argos backend server. The server controls and serves product, event type and event data for an event dashboard. It requires an Event Processing Platform, eg. Unicorn;hpi;business_process_technology;research;Java +https://github.com/bptlab/argos-frontend;;hpi;business_process_technology;no_research;JavaScript +https://github.com/bptlab/scylla;Extensible BPMN process simulator;hpi;business_process_technology;research;Java +https://github.com/bptlab/wiki-resources;;hpi;business_process_technology;no_research;JavaScript +https://github.com/bptlab/argos;Documentation for the Argos project.;hpi;business_process_technology;no_research;JavaScript +https://github.com/bptlab/lola-webservice;A web service wrapper for LoLA 2.0 (Low-Level Analyzer for petri nets);hpi;business_process_technology;no_research;PHP +https://github.com/bptlab/scylla-ui;UI visualizing results of the BPMN process simulator Scylla;hpi;business_process_technology;research;TypeScript +https://github.com/bptlab/bpt-docker-zoo;Docker-compose file to easily deploy bpt lab applications Gryphon, Unicorn and Chimera;hpi;business_process_technology;no_research;Smarty +https://github.com/bptlab/bookshelf-docs;;hpi;business_process_technology;no_research;JavaScript +https://github.com/bptlab/goodberry;This service implements an IoT device on a Raspberry Pi. The event data is sent to an arbitrary webservice.;hpi;business_process_technology;no_research;Python +https://github.com/bptlab/bookshelf-frontend;;hpi;business_process_technology;no_research;TypeScript +https://github.com/bptlab/chimera-webservice-mock;Mocked Service to test Chimera Webservice Activitites;hpi;business_process_technology;no_research; +https://github.com/bptlab/bpt-iot-website;;hpi;business_process_technology;no_research;HTML +https://github.com/bptlab/bpstruct;Archived code from old google code project;hpi;business_process_technology;no_research;Java +https://github.com/bptlab/chor-js;An editor for BPMN 2.0 choreography diagrams based on bpmn-js;hpi;business_process_technology;research;JavaScript +https://github.com/bptlab/blockchain-choreography;Tamper proof collaborative modelling of choreograpy models based on distributed ledger technology.;hpi;business_process_technology;no_research;TypeScript +https://github.com/bptlab/chor-js-demo;A demo showcasing the chor-js BPMN 2.0 choreography diagram modeler.;hpi;business_process_technology;research;JavaScript +https://github.com/bptlab/caz;Generic adapter to handle communication between Unicorn and Third Party APIs;hpi;business_process_technology;research;JavaScript +https://github.com/bptlab/mantichor-frontend;Frontend for the Mantichor choreography framework;hpi;business_process_technology;no_research;Vue +https://github.com/bptlab/mantichor-tezos;Tezos adapter for the Mantichor choreography framework ;hpi;business_process_technology;no_research;TypeScript +https://github.com/bptlab/mantichor-corda;Corda R3 adapter for the Mantichor choreography framework ;hpi;business_process_technology;no_research;Kotlin +https://github.com/bptlab/rembrandt-frontend;The front end for the Rembrandt Resource-Management-Platform.;hpi;business_process_technology;no_research;Vue +https://github.com/bptlab/rembrandt-backend;The back end for the Rembrandt Resource-Management-Platform.;hpi;business_process_technology;no_research;TypeScript +https://github.com/bptlab/rembrandt;A resource organization and resource usage optimization platform.;hpi;business_process_technology;no_research;JavaScript +https://github.com/bptlab/bpic19;;hpi;business_process_technology;no_research;Python +https://github.com/bptlab/bpm2019ws-fcm-compliance;Checking Compliance in Data-Driven Case Management;hpi;business_process_technology;no_research; +https://github.com/bptlab/mantichor-share;;hpi;business_process_technology;no_research;TypeScript +https://github.com/bptlab/active-chor-js;Extension of chor-js for blockchain-based active choreographies;hpi;business_process_technology;no_research;JavaScript +https://github.com/bptlab/cepta;CEPTA - Complex Event Processing Transportation Analysis;hpi;business_process_technology;research;Java +https://github.com/bptlab/awesome-master-thesis;A curated list of awesome master thesis related things;hpi;business_process_technology;no_research;TeX +https://github.com/bptlab/correlation-analysis;"Code for the master thesis ""Deriving Decisive Case Characteristics in Process Performance Analysis"" by Jonas Beyer";hpi;business_process_technology;research;Java +https://github.com/bptlab/chor-checker;TLAplus based model checking framework for choreographies;hpi;business_process_technology;no_research;TypeScript +https://github.com/bptlab/chor-checker-frontend;Frontend for the choreography model checking framework;hpi;business_process_technology;no_research;JavaScript +https://github.com/bptlab/subscription-point-visualizer;Visualizes subscription points in bpmn choreography diagrams.;hpi;business_process_technology;research;JavaScript +https://github.com/bptlab/ds2020-data-driven-case-management-compliance;;hpi;business_process_technology;no_research; +https://github.com/bptlab/fcm2cpn;;hpi;business_process_technology;research;Java +https://github.com/bptlab/fiber2xes;This project contains a python utility intended to use EHR data coming from fiber to create .xes event logs.;hpi;business_process_technology;research;Python +https://github.com/bptlab/blockchain-deferred-choice;;hpi;business_process_technology;research;JavaScript +https://github.com/bptlab/bpi-challenge-2020;The purpose of this repository is to maintain code and text produced to analyze this year's BPI Challenge.;hpi;business_process_technology;no_research;Jupyter Notebook +https://github.com/bptlab/fCM-Engine;An Execution Engine for fragment-based Case Management (fCM) based on Access/CPN;hpi;business_process_technology;no_research;Java +https://github.com/bptlab/ark_automate;An open source RPA tool which uses BPMN to create bots.;hpi;business_process_technology;research;JavaScript +https://github.com/bptlab/bpmn-js-properties-panel;A properties panel for bpmn-js.;hpi;business_process_technology;research; +https://github.com/bptlab/ark_automate_local;Execute robots build with ark_automate locally;hpi;business_process_technology;no_research;JavaScript +https://github.com/bptlab/fCM-query-generator;;hpi;business_process_technology;research;Vue +https://github.com/bptlab/rpa-dmn-operation;This repo contains examples how DMN can be integrated in RPA tools.;hpi;business_process_technology;research;C# +https://github.com/bptlab/odea-light;The purpose of this repository is to¬†provide and maintain code to quantify, interpret, and configure ontology-based event abstraction for process mining.;hpi;business_process_technology;research;Python +https://github.com/bptlab/fCM-design-support;Modeling Tool with Design-Time Support for Fragment-Based Case Management;hpi;business_process_technology;research;JavaScript +https://github.com/bptlab/onto-rpa-frontend;;hpi;business_process_technology;no_research;Vue +https://github.com/bptlab/conceptual-bot-backend;;hpi;business_process_technology;no_research;TypeScript +https://github.com/bptlab/onto-rpa-platform;A meta repository for the components of the conceptual bot platform;hpi;business_process_technology;no_research; +https://github.com/bptlab/mimic-log-extraction;A CLI tool for extracting event logs out of MIMIC Databases.;hpi;business_process_technology;research;Python +https://github.com/bptlab/holistic-process-platform;A BPMN-based platform that combines BPMS and RPA.;hpi;business_process_technology;research;Vue +https://github.com/bptlab/fCM-Collection;A collection of fCM models;hpi;business_process_technology;no_research; +https://github.com/bptlab/data-based-process-variant-analysis;;hpi;business_process_technology;no_research;Jupyter Notebook +https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;;hpi;business_process_technology;research;Jupyter Notebook +https://github.com/bptlab/relationships-between-change-patterns;;hpi;business_process_technology;research;Jupyter Notebook +https://github.com/bptlab/model-driven-RPA;Master Project 2023 | Model-driven RPA Bot Development;hpi;business_process_technology;research;HTML +https://github.com/bptlab/MdRPA_Library;;hpi;business_process_technology;research;RobotFramework +https://github.com/hpi-swa-lab/Nemo;;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/TargetSpecific-ICOOOLPS;Paper on Call-target-specific Method Arguments for ICOOOLPS 2015;hpi;software_architecture_group;no_research;TeX +https://github.com/hpi-swa-lab/hpitr;LaTeX class for technical reports at the HPI Potsdam;hpi;software_architecture_group;no_research;TeX +https://github.com/hpi-swa-lab/GazeTracker;Support for gaze/eye tracking in Squeak;hpi;software_architecture_group;research;C +https://github.com/hpi-swa-lab/SQPyte;;hpi;software_architecture_group;no_research;C +https://github.com/hpi-swa-lab/GlyphHub;The Font Engineering Toolkit: Live Font Creation in a Self-supporting Programming Environment;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/CommunityCodeReview;;hpi;software_architecture_group;no_research;TeX +https://github.com/hpi-swa-lab/home-desktop-system;The Home Desktop System;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/simplelanguage;A simple example language built using the Truffle API.;hpi;software_architecture_group;no_research;Java +https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;A Squeak/Smalltalk implementation of polymorphic identifiers;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/teaching-image;A repository for scripts to build a teaching image;hpi;software_architecture_group;no_research;Shell +https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;Blocks to the Rescue: Live Exploration of an Interactive Environment to Support Education, Construction, and Reflection in Program Design;hpi;software_architecture_group;research;StringTemplate +https://github.com/hpi-swa-lab/learning-liveness;;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/polyglot-adapters;Polyglot adapters prototype for the GraalVM.;hpi;software_architecture_group;research;Python +https://github.com/hpi-swa-lab/graalpython;A Python 3 implementation built on GraalVM;hpi;software_architecture_group;research;Python +https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;An implementation of the Babylonian Programming Editor for Squeak/Smalltalk;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/tools-interactive-simulations;;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/cpython;The Python programming language;hpi;software_architecture_group;no_research;Python +https://github.com/hpi-swa-lab/Rack;A hierarchical ordering system for objects in Squeak/Smalltalk with a graphical interface;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/SqueakByExample-english;An introductory book about the Squeak/Smalltalk programming system, guiding students and developers through the environment, language, tools, and the Morphic framework by means of a series of examples and exercises.;hpi;software_architecture_group;no_research;TeX +https://github.com/hpi-swa-lab/BP2019RH1;;hpi;software_architecture_group;research;JavaScript +https://github.com/hpi-swa-lab/squeak-graphics-canvas;A collection of projects related to hardware-accelerated rendering of Squeak's Morphic.;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/px20-code-finder;;hpi;software_architecture_group;no_research;Python +https://github.com/hpi-swa-lab/graal;GraalVM: Run Programs Faster Anywhere :rocket:;hpi;software_architecture_group;no_research; +https://github.com/hpi-swa-lab/lively.next;Repository for work on lively.next at HPI's chair for software architecture.;hpi;software_architecture_group;no_research;JavaScript +https://github.com/hpi-swa-lab/QoppaS;An implementation of Qoppa Scheme using Ohm/S;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/qinoq;Create wonderful scrollytellings inside of lively.next ‚ùÑ;hpi;software_architecture_group;no_research;JavaScript +https://github.com/hpi-swa-lab/squeak-graphics-opengl;A collection of projects related to using OpenGL in Squeak/Smalltalk;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/squeak-inbox-talk;Bringing squeak-dev into your image;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/graalpython-java-example;Java and Python Integration Example for GraalVM;hpi;software_architecture_group;no_research;Java +https://github.com/hpi-swa-lab/squeak-spelling-services;;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/BP2021RH1;Crowd-Sourced Picture Archive for Bad Harzburg / BP2021RH1;hpi;software_architecture_group;no_research;TypeScript +https://github.com/hpi-swa-lab/sb-visual-primitives;;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/sb-tree-sitter;Integration of Sandblocks with Tree-Sitter to load block-based languages from grammars;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/squeak-tracedebugger;A lightweight and efficient back-in-time debugger for Squeak to trace and retrace past method invocations and state changes. Powered by SimulationStudio.;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/godot-squeak;;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/sb-terminal;;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/ts-edit-action-detector;;hpi;software_architecture_group;research;Kotlin +https://github.com/hpi-swa-lab/pivr;;hpi;software_architecture_group;research;Smalltalk +https://github.com/hpi-swa-lab/pivr-tools;;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/pivr-tools-assets;;hpi;software_architecture_group;no_research; +https://github.com/hpi-swa-lab/native-image-visualizations;Visualizing GraalVM Native Images for Exploring Ways of Reducing File Sizes;hpi;software_architecture_group;research;TypeScript +https://github.com/hpi-swa-lab/react-midi;An MIDI generator built on top of React/S;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/Probe-S;;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/serverless-squeak;;hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/aws-sdk-smalltalk;AWS SDK for Smalltalk (Squeak port);hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/cloud-squeak;Minimal Squeak for Cloud Functions (Experimental);hpi;software_architecture_group;no_research;Smalltalk +https://github.com/hpi-swa-lab/godot-pronto;;hpi;software_architecture_group;research;GDScript +https://github.com/hpi-swa-lab/vr-shell;;hpi;software_architecture_group;no_research;GDScript +https://github.com/hpi-swa-lab/graalvm-causality-graph;;hpi;software_architecture_group;no_research;Java +https://github.com/SemanticMultimedia/locopod;LOcal COPy On Demand;hpi;semantic_multimedia_research_group;research;Python +https://github.com/SemanticMultimedia/JungGraphMeasures;JungGraphMeasures - PageRank and HITS implementations for large RDF graphs ;hpi;semantic_multimedia_research_group;research;Java +https://github.com/SemanticMultimedia/DBpedia_HITS_Scores;DBpedia_HITS_Scores;hpi;semantic_multimedia_research_group;no_research; +https://github.com/SemanticMultimedia/DBpedia_PageinLinkCounts_Cleaned;DBpedia_PageinLinkCounts_Cleaned;hpi;semantic_multimedia_research_group;no_research; +https://github.com/SemanticMultimedia/DBpedia_PageoutLinkCounts_Cleaned;DBpedia_PageoutLinkCounts_Cleaned;hpi;semantic_multimedia_research_group;no_research; +https://github.com/SemanticMultimedia/DBpedia_PageRank_Scores;DBpedia_PageRank_Scores;hpi;semantic_multimedia_research_group;no_research; +https://github.com/SemanticMultimedia/vocabularies;vocabularies;hpi;semantic_multimedia_research_group;no_research;HTML +https://github.com/SemanticMultimedia/tlr;a platform for preserving history on the web of data;hpi;semantic_multimedia_research_group;research;Python +https://github.com/SemanticMultimedia/COAL;web media content analysis framework;hpi;semantic_multimedia_research_group;research;Java +https://github.com/SemanticMultimedia/tlr-java-api;Java API for tailr;hpi;semantic_multimedia_research_group;no_research;Java +https://github.com/SemanticMultimedia/RefreshQueries;;hpi;semantic_multimedia_research_group;no_research; +https://github.com/Museum-Barberini/twitterscraper;Scrape Twitter for Tweets;hpi;museum_barberini;research;Python +https://github.com/Museum-Barberini/Barberini-Analytics;A suite of data mining, analytics, and visualization solutions for analyzing museum data;hpi;museum_barberini;research;Python +https://github.com/Museum-Barberini/twint;An advanced Twitter scraping & OSINT tool written in Python that doesn't use Twitter's API, allowing you to scrape a user's followers, following, Tweets and more while evading most API limitations.;hpi;museum_barberini;research;Python +https://github.com/Museum-Barberini/FlightReset;Microsoft Office 365/2019/2016 for Mac Flight Reset Tool;hpi;museum_barberini;no_research; +https://github.com/Museum-Barberini/OutlookFontPoke;Microsoft Outlook 365/2019/2016 for Mac Default Font Changer;hpi;museum_barberini;no_research; +https://github.com/pik-copan/pyunicorn;Unified Complex Network and Recurrence Analysis Toolbox;pik;copan;research;Jupyter Notebook +https://github.com/pik-copan/MayaSim;Simulation of the raise and fall of the ancient Maya civilization on the Yucatan penisula;pik;copan;research;Jupyter Notebook +https://github.com/pik-copan/pymofa; collection of simple functions to run and evaluate computer models systematically;pik;copan;no_research;Jupyter Notebook +https://github.com/pik-copan/pycopancore;reference implementation of the copan:CORE World-Earth modelling framework;pik;copan;research;Python +https://github.com/pik-copan/pycopanbehave;Python implementation of COPAN:BEHAVE model;pik;copan;research;Python +https://github.com/pik-copan/pycopanpbcc;Python scripts for analyzing planetary boundaries in a conceptual model of the Earth's carbon cycle including geoengineering by terrestrial carbon dioxide removal;pik;copan;research;Python +https://github.com/pik-copan/pyregimeshifts;Python scripts for detecting nonlinear regime shifts in multiple paleoclimate time series as in Donges et al., Clim. Past. 11, 709-741 (2015);pik;copan;research;Python +https://github.com/pik-copan/pycascades;Python framework for simulating tipping cascades on complex networks;pik;copan;research;Jupyter Notebook +https://github.com/pik-copan/pytippinginteractions;Python scripts for studying dynamics of interacting tipping elements;pik;copan;research;Python +https://github.com/pik-copan/pycopandiscount;Python script to run the copan:DISCOUNT model;pik;copan;no_research;Python +https://github.com/pik-copan/pydrf;Python scripts for estimating dose response functions and performing surrogate analysis based on temporal network data;pik;copan;research;Jupyter Notebook +https://github.com/pik-copan/thinkathon2021inunsafewaters;;pik;copan;no_research;Python +https://github.com/pik-piam/madrat;R package | May All Data be Reproducible and Transparent (MADRaT);pik;pik-piam;research;R +https://github.com/pik-piam/magclass;R package | Data Class and Tools for Handling Spatial-Temporal Data;pik;pik-piam;research;R +https://github.com/pik-piam/mip;Model intercomparison visualization package;pik;pik-piam;research;R +https://github.com/pik-piam/magpie4;R package | MAgPIE outputs R package for MAgPIE version 4.x;pik;pik-piam;research;R +https://github.com/pik-piam/gdx;R package | readGDX package for R;pik;pik-piam;research;R +https://github.com/pik-piam/lusweave;R package | Landuse Sweave Utilities;pik;pik-piam;research;R +https://github.com/pik-piam/magpiesets;R package | MAgPIE sets for R;pik;pik-piam;research;R +https://github.com/pik-piam/luscale;R package | Landuse Scaling Tools;pik;pik-piam;research;R +https://github.com/pik-piam/goxygen;Documentation package for modular GAMS code;pik;pik-piam;research;R +https://github.com/pik-piam/shinyresults;R package with shiny modules and apps to analyze model results;pik;pik-piam;research;R +https://github.com/pik-piam/citation;R package | create cff citation file from R package metadata;pik;pik-piam;research;R +https://github.com/pik-piam/demystas;R package | Demystifying Automation on Simple Tasks;pik;pik-piam;research;R +https://github.com/pik-piam/remulator;A collection of R tools for fitting model results.;pik;pik-piam;research;R +https://github.com/pik-piam/remind;Contains the REMIND-specific routines for data and model output manipulation.;pik;pik-piam;research;R +https://github.com/pik-piam/luplot;Some useful functions to plot data such as a map plot function for MAgPIE objects.;pik;pik-piam;research;R +https://github.com/pik-piam/trafficlight;The package contains tools for data validation and aggregation of validation results.;pik;pik-piam;research;R +https://github.com/pik-piam/mrvalidation;Package contains routines to prepare data for validation exercises.;pik;pik-piam;research;R +https://github.com/pik-piam/regressionworlddata;Model estimates parameters of model functions.;pik;pik-piam;research;R +https://github.com/pik-piam/lpjclass;Package containing the LPJ-Object-Class together with relevant functions and methods.;pik;pik-piam;research;R +https://github.com/pik-piam/quitte;Bits and pieces of code to use with quitte-style data frames;pik;pik-piam;research;R +https://github.com/pik-piam/limes;Contains the LIMES-specific routines for data and model output manipulation.;pik;pik-piam;research;R +https://github.com/pik-piam/rmndt;Tools for data.table objects in the REMIND context. (Dis-)Aggregation, magpie conversion, interpolation etc.;pik;pik-piam;research;R +https://github.com/pik-piam/mstools;tool functions that can be used by several madrat-dependent or magpie4 output functions.;pik;pik-piam;research;R +https://github.com/pik-piam/edgeTrpLib;Support Library for EDGE-Transport.;pik;pik-piam;research;R +https://github.com/pik-piam/coupling-doc;Documentation and instructions for model coupling;pik;pik-piam;no_research; +https://github.com/pik-piam/mrcommons;;pik;pik-piam;research;R +https://github.com/pik-piam/mrremind;The mrremind packages contains data preprocessing for the REMIND model.;pik;pik-piam;research;R +https://github.com/pik-piam/mrfeed;;pik;pik-piam;research;R +https://github.com/pik-piam/mrland;;pik;pik-piam;research;R +https://github.com/pik-piam/mrsoil;Package contains soil organic carbon cycling model based on IPCC Guidelines 2019 for data prepared in the madrat universe. ;pik;pik-piam;research;R +https://github.com/pik-piam/project_interfaces;Project specific interfaces to REMIND / MAgPIE.;pik;pik-piam;no_research;R +https://github.com/pik-piam/lucode2;A collection of tools which allow to manipulate and analyze code.;pik;pik-piam;research;R +https://github.com/pik-piam/gms;;pik;pik-piam;research;R +https://github.com/pik-piam/mrmagpie;The package provides cellular magpie related data via the madrat framework.;pik;pik-piam;research;R +https://github.com/pik-piam/primap;Coordination of primap development;pik;pik-piam;no_research;Jupyter Notebook +https://github.com/pik-piam/edgeTransport;A detailed transport sector model.;pik;pik-piam;research;R +https://github.com/pik-piam/mrfable;Tool for easy handling of FABLE project data (India Foodcrop);pik;pik-piam;research;HTML +https://github.com/pik-piam/mrwater;MAgPIE water preprocessing;pik;pik-piam;research;R +https://github.com/pik-piam/mrtutorial;Tutorial for mr- world packages, made as part of MAgPIE workshop;pik;pik-piam;research;R +https://github.com/pik-piam/MAgPIENCGains;;pik;pik-piam;research;R +https://github.com/pik-piam/remind2;The remind2 package contains the REMIND-specific routines for data and model output manipulation.;pik;pik-piam;research;R +https://github.com/pik-piam/piamModelTests;R package to work with IAMC-format data;pik;pik-piam;research;R +https://github.com/pik-piam/modelstats;A collection of tools for monitoring and diagnosing models;pik;pik-piam;research;HTML +https://github.com/pik-piam/mrvalidnitrogen;Madrat Sublibrary with validation-style reporting of nitrogen budgets;pik;pik-piam;research;R +https://github.com/pik-piam/GDPuc;R package for GDP unit conversion;pik;pik-piam;research;R +https://github.com/pik-piam/mrfish;calculations connected to fish and aquaculture;pik;pik-piam;research;R +https://github.com/pik-piam/mrwaste;MADRAT-linked package calculates municipal solid waste projections and environmental impacts, doi.org/10.1088/1748-9326/ab8659;pik;pik-piam;research;R +https://github.com/pik-piam/universe;;pik;pik-piam;no_research; +https://github.com/pik-piam/mrdrivers;Create GDP and population scenarios;pik;pik-piam;research;R +https://github.com/pik-piam/piktests;;pik;pik-piam;research;R +https://github.com/pik-piam/mredgebuildings;;pik;pik-piam;research;R +https://github.com/pik-piam/mredgetransport;;pik;pik-piam;research;R +https://github.com/pik-piam/.github;;pik;pik-piam;no_research; +https://github.com/pik-piam/discussions;Questions, answers, and discussions about PIAM tools, packages, and workflows;pik;pik-piam;no_research; +https://github.com/pik-piam/m4fsdp;Output routines for extracting results from the MAgPIE framework (versions 4.x) for the FSDP project;pik;pik-piam;research;R +https://github.com/pik-piam/mrdieter;The mrdieter packages contains data preprocessing for the DIETER model. ;pik;pik-piam;research;R +https://github.com/pik-piam/blackmagicc;Generate warming pathways using MAGICC for your MAgPIE runs using reference REMIND emissions;pik;pik-piam;research;R +https://github.com/pik-piam/cookiecutter-lucode;cookiecutter template for a new R package using lucode2;pik;pik-piam;no_research;Python +https://github.com/pik-piam/rOpenscmRunner;Run different simple climate models from R using a unified interface;pik;pik-piam;research;R +https://github.com/pik-piam/r2databus;;pik;pik-piam;research;R +https://github.com/pik-piam/rfp;;pik;pik-piam;research;R +https://github.com/pik-piam/lockfile-archive;Includes renv.lock files to document the pik-piam R package environment at different points in time;pik;pik-piam;no_research;R +https://github.com/pik-piam/miniPackage;;pik;pik-piam;no_research; +https://github.com/pik-piam/piamInterfaces;;pik;pik-piam;research;R +https://github.com/pik-piam/piamenv;;pik;pik-piam;research;R +https://github.com/pik-piam/mrwaterplots;Plotting functions for water-specific output analysis of mrwater library;pik;pik-piam;research;R +https://github.com/pik-piam/remindPypsa;;pik;pik-piam;research;R +https://github.com/pik-piam/piamMappings;;pik;pik-piam;no_research;R +https://github.com/pik-piam/mrtech;;pik;pik-piam;no_research; +https://github.com/pik-piam/mrdownscale;;pik;pik-piam;research;R +https://github.com/pik-piam/brick;;pik;pik-piam;research;R +https://github.com/pik-piam/mrfactors;;pik;pik-piam;research;R +https://github.com/remindmodel/remind;REMIND - REgional Model of INvestments and Development;pik;remind;research;GAMS +https://github.com/remindmodel/pre-processing;;pik;remind;no_research;R +https://github.com/pik-gane/vodle;We develop an interactive, consensus-oriented group decision app;pik;pik-gane;research;JavaScript +https://github.com/pik-gane/tricl;TriCl model in C++;pik;pik-gane;research;C++ +https://github.com/pik-gane/pyresponsibility;quantify agents' degrees of moral responsibility in complex multi-agent decision situations;pik;pik-gane;no_research;Python +https://github.com/pik-gane/pyoptes;Python framework for optimization of epidemic testing strategies;pik;pik-gane;no_research;Python +https://github.com/pik-gane/satisfia;Satisficing-based Intelligent Agents;pik;pik-gane;no_research;Python +https://github.com/pik-gane/decision-transformer-satisfia;Official codebase for Decision Transformer: Reinforcement Learning via Sequence Modeling.;pik;pik-gane;research;Python +https://github.com/pik-gane/attainable-utility-preservation-satisfia;;pik;pik-gane;no_research; +https://github.com/pik-gane/pymdptoolbox-satisfia;Markov Decision Process (MDP) Toolbox for Python;pik;pik-gane;research;Jupyter Notebook +https://github.com/pik-gane/ai-safety-gridworlds-satisfia;This is a suite of reinforcement learning environments illustrating various safety properties of intelligent agents.;pik;pik-gane;research;Python +https://github.com/pik-gane/avoiding-side-effects-satisfia;Code for reproducing the results from the paper Avoiding Side Effects in Complex Environments;pik;pik-gane;research; +https://github.com/pik-gane/stable-baselines3-satisfia;PyTorch version of Stable Baselines, reliable implementations of reinforcement learning algorithms. ;pik;pik-gane;research;Python +https://github.com/pik-gane/stable-baselines3-contrib-satisfia;Contrib package for Stable-Baselines3 - Experimental reinforcement learning (RL) code;pik;pik-gane;research;Python +https://github.com/pik-gane/train-procgen-pytorch-satisfia;Pytorch implementation on OpenAI's Procgen ppo-baseline, built from scratch.;pik;pik-gane;research; +https://github.com/pik-gane/procgenAISC-satisfia;;pik;pik-gane;no_research; +https://github.com/pik-gane/motabarnn;python package for torch-based neural network version of MoTaBaR;pik;pik-gane;no_research;Python +https://github.com/pik-gane/RL4LMs_RLCHF;A modular RL library to fine-tune language models to human preferences;pik;pik-gane;research; +https://github.com/pik-gane/webppl-agents-satisfia;Webppl library for generating Gridworld MDPs. JS library for displaying Gridworld. Additional agents that satisfice.;pik;pik-gane;research;JavaScript +https://github.com/pik-gane/alpaca_farm-collective;A simulation framework for RLHF and alternatives. Develop your RLHF method without collecting human data. ;pik;pik-gane;research;Python +https://github.com/pik-gane/alpaca_eval-collective;A validated automatic evaluator for instruction-following language models. High-quality, cheap, and fast.;pik;pik-gane;research; +https://github.com/pik-gane/Minigrid-satisfia; Simple and easily configurable grid world environments for reinforcement learning;pik;pik-gane;research; +https://github.com/PIK-LPJmL/LPJmL;Welcome to the central open-source repository of LPJmL at PIK. You are free to download the code under the AGPLv3 license, see LICENSE file. Have fun. Please note that there is absolutely no support outside agreed collaborations. We also don't provide any input data, which is derived from other sources. ;pik;LPJmL_group;no_research;C +https://github.com/PIK-LPJmL/LPJmLmdi;LPJmLmdi - model-data integration for the LPJmL dynamic global vegetation model (R package);pik;LPJmL_group;research;R +https://github.com/PIK-LPJmL/lpjmlkit;A collection of basic functions to facilitate the work with the DGVM LPJmL hosted at the Potsdam Institute for Climate Impact Research. It provides functions for running LPJmL, as well as reading, processing and writing model-related data such as inputs and outputs or configuration files.;pik;LPJmL_group;research;R +https://github.com/PIK-LPJmL/LandInG;The Land Input Generator (LandInG) contains a collection of scripts to derive basic input datasets for terrestrial ecosystem models from diverse and partially conflicting data sources.;pik;LPJmL_group;research;R +https://github.com/PIK-LPJmL/pycoupler;;pik;LPJmL_group;no_research; +https://github.com/GFZ/spechomo;Spectral homogenization of multispectral satellite data.;helmholz_center-gfz_potsdam;geosciences_gfz;research;Python +https://github.com/GFZ/arosics;AROSICS - Automated and Robust Open-Source Image Co-Registration Software;helmholz_center-gfz_potsdam;geosciences_gfz;research;Python +https://github.com/GFZ/enpt;EnMAP Processing Tool - A Python package for pre-processing of EnMAP Level-1B data;helmholz_center-gfz_potsdam;geosciences_gfz;research;Python +https://github.com/GFZ/LocalPLSR;Quantification of soil parameters e.g. organic carbon, in field soil samples using spectrally similar soil samples from a large scale soil spectral database.;helmholz_center-gfz_potsdam;geosciences_gfz;research;R +https://github.com/GFZ/eGSIM;A web API and portal to explote, select and test Ground Shaking Intensity Models;helmholz_center-gfz_potsdam;geosciences_gfz;research;JavaScript +https://github.com/GFZ/grunt-css-url-rewrite;A grunt task for rewriting urls inside a stylesheet, using base64-encoded strings.;helmholz_center-gfz_potsdam;geosciences_gfz;research;JavaScript +https://github.com/GFZ-Centre-for-Early-Warning/caravan;CARAVAN is a free and open source web-based framework for on-demand seismic risk assessment, developed by the German Centre for Geosciences, Potsdam.;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;JavaScript +https://github.com/GFZ-Centre-for-Early-Warning/exsim;EXSIM12: A stochastic finite - fault computer program in FORTRAN (Assatourians and Atkinson, 2012);helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;FORTRAN +https://github.com/GFZ-Centre-for-Early-Warning/exsim-pargen;Utility for generating init parameter files for EXSIM (in python);helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;Python +https://github.com/GFZ-Centre-for-Early-Warning/REM_optimized_routing;REM (Rapid Environmental Mapping) module for optimized routing;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research;QML +https://github.com/GFZ-Centre-for-Early-Warning/REM_satex_plugin;SATEX is a QGIS plugin to process LANDSAT satellite images;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research;Python +https://github.com/GFZ-Centre-for-Early-Warning/REM_RRVS;RRVS (Remote Rapid Visual Survey) is a web tool for exposure screening based on omnidirectional images ;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research;HTML +https://github.com/GFZ-Centre-for-Early-Warning/REM_DBschema;REM Database schema;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;PLpgSQL +https://github.com/GFZ-Centre-for-Early-Warning/REM_installation;Instructions for REM installation;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;TeX +https://github.com/GFZ-Centre-for-Early-Warning/workshop_unesco;;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;Jupyter Notebook +https://github.com/GFZ-Centre-for-Early-Warning/workshop_suggested_readings;Suggested readings for Workshop UNESCO - Lima and Santiago, May 2017;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research; +https://github.com/GFZ-Centre-for-Early-Warning/TrainingCourse;;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;Jupyter Notebook +https://github.com/GFZ-Centre-for-Early-Warning/REM_DEA;Rapid Environmental Mapping - Data Exploration Application;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research;HTML +https://github.com/GFZ-Centre-for-Early-Warning/Bottom-up-Exposure-Modelling;Ipython script to exemplify the methodology of fuzzy scoring to model exposure;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research;Jupyter Notebook +https://github.com/GFZ-Centre-for-Early-Warning/ECEE2018_Workshop;Landing Page for the joint Exposure Elicitation Workshop at 16ECEE 2018;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research; +https://github.com/GFZ-Centre-for-Early-Warning/shakyground;Webservice for OpenQuake based ground motion field calculator as proposed by G.Weatherill;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;Python +https://github.com/GFZ-Centre-for-Early-Warning/quakeledger;Webservice that returns earthquake events from a local database;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;Python +https://github.com/GFZ-Centre-for-Early-Warning/riesgos_story_c1;;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research; +https://github.com/GFZ-Centre-for-Early-Warning/EMCA-Exposure;Earthquake Model Central Asia - Exposure Models;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research; +https://github.com/GFZ-Centre-for-Early-Warning/assetmaster;web service providing exposure models upon geographical query - RIESGOS project;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research;Jupyter Notebook +https://github.com/GFZ-Centre-for-Early-Warning/modelprop;Program to serve a fragility / vulnerability model according to a given schema - RIESGOS Project;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;research;Jupyter Notebook +https://github.com/GFZ-Centre-for-Early-Warning/fuzzy_schemas;;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;Jupyter Notebook +https://github.com/GFZ-Centre-for-Early-Warning/damage_state_conversion;Python notebook to estimate probabilistic conversion across different physical damage states;helmholz_center-gfz_potsdam;center_for_early_warning_gfz;no_research;Jupyter Notebook +https://github.com/fastscape-lem/fastscapelib;A C++/Python library of efficient algorithms for landscape evolution modeling;helmholz_center-gfz_potsdam;fastscape_lem;research;C++ +https://github.com/fastscape-lem/fastscape;A fast, versatile and user-friendly landscape evolution model;helmholz_center-gfz_potsdam;fastscape_lem;research;Python +https://github.com/fastscape-lem/fastscape-demo;A collection of Jupyter notebooks as examples of usage of the Fastscape software stack.;helmholz_center-gfz_potsdam;fastscape_lem;research;Jupyter Notebook +https://github.com/fastscape-lem/fastscapelib-fortran;A Fortran (+ Python bindings) library of efficient algorithms for landscape evolution modeling;helmholz_center-gfz_potsdam;fastscape_lem;research;Fortran +https://github.com/fastscape-lem/design;Design ressources for Fastscape;helmholz_center-gfz_potsdam;fastscape_lem;no_research; +https://github.com/fastscape-lem/flow-routing-depressions;ESurfD paper code supplement ;helmholz_center-gfz_potsdam;fastscape_lem;research;C++ +https://github.com/fastscape-lem/gilbert-board;A demonstration of Fastscape in an interactive GUI;helmholz_center-gfz_potsdam;fastscape_lem;research;Python +https://github.com/fastscape-lem/orographic-precipitation;LT Model of Orographic Precipitation - A Python Implementation;helmholz_center-gfz_potsdam;fastscape_lem;research;Jupyter Notebook +https://github.com/fastscape-lem/fastscape-lem.github.io;Fastscape website;helmholz_center-gfz_potsdam;fastscape_lem;no_research;HTML +https://github.com/fastscape-lem/ipyfastscape;Interactive widgets for topographic data analysis and modelling in Jupyter notebooks;helmholz_center-gfz_potsdam;fastscape_lem;research;Python +https://github.com/fastscape-lem/s2s-future-dragonstone;S2S-Future DragonStone training program materials (Jupyter notebooks);helmholz_center-gfz_potsdam;fastscape_lem;research;Jupyter Notebook +https://github.com/fastscape-lem/workshop-gfz-2021-01;Workshop Fastscape / Xarray-simlab 01-2021 materials (Jupyter notebooks);helmholz_center-gfz_potsdam;fastscape_lem;research;Jupyter Notebook +https://github.com/fastscape-lem/fastscape-litho;;helmholz_center-gfz_potsdam;fastscape_lem;research;Python +https://github.com/fastscape-lem/crc-1211-short-course;Short Course on FastScape CRC 1211 K√∂ln;helmholz_center-gfz_potsdam;fastscape_lem;no_research;Jupyter Notebook +https://github.com/fastscape-lem/isterre-short-course;Short course on FastScape at ISTerre, Universite Grenoble-Alpes, October 19 to 21, 2021;helmholz_center-gfz_potsdam;fastscape_lem;no_research;Jupyter Notebook +https://github.com/fastscape-lem/ESPM-course;Material for Earth Surface Process Modeling Course @ Uni Potsdam, Summer Semester 2022;helmholz_center-gfz_potsdam;fastscape_lem;no_research;Jupyter Notebook +https://github.com/fastscape-lem/workshop-potsdam-2022-10;Workshop on Xarray and Xarray-simlab - GFZ Potsdam 10/2022;helmholz_center-gfz_potsdam;fastscape_lem;no_research;Jupyter Notebook +https://github.com/fastscape-lem/workshop-xsimlab-grenoble-10-2022;Notebooks for workshop on Xarray-simlab run at ISTerre, University of Grenoble-Alpes, October 2022;helmholz_center-gfz_potsdam;fastscape_lem;no_research;Jupyter Notebook +https://github.com/fastscape-lem/workshop-itn-potsdam-2023-01;Workshop ITN - GFZ Potsdam 01/2023;helmholz_center-gfz_potsdam;fastscape_lem;no_research;Jupyter Notebook +https://github.com/fastscape-lem/VariableSPIM;Variable Discharge Stream Power Incision Model;helmholz_center-gfz_potsdam;fastscape_lem;research;Python +https://github.com/fastscape-lem/adascape;Simple adaptive speciation model as a component of FastScape-LEM;helmholz_center-gfz_potsdam;fastscape_lem;no_research;Jupyter Notebook +https://github.com/telota/ediarum;Archived repository for ediarum.JAR - see https://github.com/ediarum;bbaw;telota;no_research;Java +https://github.com/telota/archiv-editor;;bbaw;telota;no_research;Java +https://github.com/telota/rasmify;Reduce Arabic strings to their rasm, i.e. remove vocalization and other diacritics;bbaw;telota;research;PHP +https://github.com/telota/rasmify.js;;bbaw;telota;research;JavaScript +https://github.com/telota/cvma_fotostation_config;Konfiguration f√ºr die Metadatenverwaltung des CVMA-Bildarchivs in Potsdam mit FotoStation;bbaw;telota;no_research;Gnuplot +https://github.com/telota/rasmipy;Reduce Arabic strings to their rasm, i.e. remove vocalization and other diacritics;bbaw;telota;research;Python +https://github.com/telota/docker-mattermost;Docker solution for mattermost;bbaw;telota;no_research;Shell +https://github.com/telota/python-for-the-humanities;;bbaw;telota;no_research;Python +https://github.com/telota/exist;eXist Native XML Database and Application Platform;bbaw;telota;research;Java +https://github.com/telota/exist-documentation;Documentation of eXist;bbaw;telota;research;XQuery +https://github.com/telota/bts;Berlin Text System - Collaborative Editing of Ancient Egyptian Texts and Dictionaries;bbaw;telota;research;Java +https://github.com/telota/ava;:rocket: Futuristic JavaScript test runner;bbaw;telota;no_research;JavaScript +https://github.com/telota/digilib;A versatile image viewing environment for the internet.;bbaw;telota;no_research;Java +https://github.com/telota/digilib-iiif-migrate;;bbaw;telota;no_research;JavaScript +https://github.com/telota/tag-denestify.js;Flatten nested tags onto one level;bbaw;telota;no_research;JavaScript +https://github.com/telota/quick-csr;;bbaw;telota;no_research;Python +https://github.com/telota/wsp-forschungsaktivitaet;;bbaw;telota;no_research;HTML +https://github.com/telota/tavern;A command-line tool and Python library and Pytest plugin for automated testing of RESTful APIs, with a simnple, concise and flexible YAML-based syntax;bbaw;telota;no_research;Python +https://github.com/telota/owlfonk-owlcarousel;Forked from https://bitbucket.org/shahzadns/owlfonk-owlcarousel;bbaw;telota;no_research;JavaScript +https://github.com/telota/wdio-example;Kleines WebdriverIO Testing Beispiel f√ºr den Techsprint;bbaw;telota;no_research;JavaScript +https://github.com/telota/quoteSalute;Inspiring greetings for your correspondence;bbaw;telota;research;CSS +https://github.com/telota/existance;;bbaw;telota;research;Python +https://github.com/telota/quoteSalute_xpi;;bbaw;telota;no_research;JavaScript +https://github.com/telota/bbaw-schoell;BBAW Schoell font;bbaw;telota;no_research; +https://github.com/telota/kor;ConedaKOR ‚Äì store.manage.retrieve.;bbaw;telota;research;JavaScript +https://github.com/telota/researchspace;ResearchSpace Platform;bbaw;telota;research;TypeScript +https://github.com/telota/lobid-client;JavaScript / TypeScript library to query the GND (Gemeinsame Normdatei);bbaw;telota;no_research;TypeScript +https://github.com/telota/ccc-tei-example;TEI-Example for Corpus Coranicum Christianum Workshop using CETEIcean;bbaw;telota;no_research;CSS +https://github.com/telota/ccdb-transliterator;;bbaw;telota;no_research;TypeScript +https://github.com/telota/dhd2019-exist-vue-workshop;;bbaw;telota;no_research;HTML +https://github.com/telota/rdmo-docker-compose;RDMO running in different docker images held together by docker compose;bbaw;telota;no_research;Python +https://github.com/telota/lebenswelten-lehndorff;"XML/TEI-files from the digital edition ""Lebenswelten, Erfahrungsr√§ume und politische Horizonte der ostpreu√üischen Adelsfamilie Lehndorff vom 18. bis in das 20. Jahrhundert""";bbaw;telota;research; +https://github.com/telota/jean_paul_briefe;"Daten der digitalen Edition ""Jean Paul ‚Äì S√§mtliche Briefe digital""";bbaw;telota;research; +https://github.com/telota/LeibnizVIII-LaTeX_TEI;;bbaw;telota;no_research;TeX +https://github.com/telota/CIL-ACE;CIL | ACE at BBAW, Berlin, DE;bbaw;telota;research;PHP +https://github.com/telota/corpus-nummorum-editor;A Laravel-Vue-Application for Numismatics;bbaw;telota;research;Vue +https://github.com/telota/PIR;PROSOPOGRAPHIA IMPERII ROMANI, Laravel, PHP, Vue;bbaw;telota;research;PHP +https://github.com/telota/edition-humboldt-digital;TEI-XML dataset of the edition humboldt digital;bbaw;telota;research; +https://github.com/telota/LinkEdLeibniz-data;;bbaw;telota;research; +https://github.com/telota/pdf2jpg;Script to covert PDF to JPG without losing quality;bbaw;telota;no_research;Python +https://github.com/telota/DigitalResourceManager;;bbaw;telota;no_research;HTML +https://github.com/telota/ChronoTool;;bbaw;telota;no_research;HTML +https://github.com/zentrum-lexikographie/ttml2tei;Convert ttml to tei xml format;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research;Python +https://github.com/zentrum-lexikographie/e-Lexicography-2019;Course materials for the compact course in digital lexicography held at the University of Potsdam;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research;Jupyter Notebook +https://github.com/zentrum-lexikographie/e-lexicography-2020-WiSe;Wintersemester 2020;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research;Python +https://github.com/zentrum-lexikographie/dwds-addon;Browser extension adding shortcuts to DWDS queries;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research;JavaScript +https://github.com/zentrum-lexikographie/IMSnPars;IMS Neural Dependency Parser;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;research;Python +https://github.com/zentrum-lexikographie/e-lexicography-2021-WiSe;Wintersemester 2020/21;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research; +https://github.com/zentrum-lexikographie/eval-de-lemma;;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;research;Jupyter Notebook +https://github.com/zentrum-lexikographie/wikimedia;Data Exchange Routines between the ZDL and Wikimedia Projects;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research;Clojure +https://github.com/zentrum-lexikographie/elexicography-WiSe2023;Course materials for the compact course in digital lexicography held at the University of Potsdam;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research;Jupyter Notebook +https://github.com/zentrum-lexikographie/corpus-schema;TEI-P5 Schema for Annotated Text Corpora @ ZDL;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;no_research;Python +https://github.com/zentrum-lexikographie/dwdsmor;SFST/SMOR/DWDS-based German Morphology;bbaw;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;research;XSLT +https://github.com/aipescience/DBIngestor;This library provides wrappers to data ingestion into various DB systems, such as MySQL, SQLite3, and ODBC compatible systems. You can use this C++ library to ingest data in any format (you need to implement the reading routines though). The library provides an ingestion buffer that allows for multiple rows to be ingested at one time. This greatly improves ingestion performance. Further assertion and conversion functions are provided for elementary data transformation and processing. These can easily be extended by custom functions and many examples for implementing such functions are provided in the source.;leibniz;aip_e-science;no_research;C++ +https://github.com/aipescience/AsciiIngest;A general ASCII file row based ingestion tool using the DBIngestor library. This tool allows you to define custom ASCII data formats similar to the MS SQL Server format files. However it is possible to define custom checks, transformation functions, derived data rows, and constant data rows. It is easy to extend the assertion and convertion functions, by implementing ones own functions in the DBIngestor library. Further the DBIngestor library provided data buffering for higher ingest performance and many interfaces to various DB systems.;leibniz;aip_e-science;no_research;C++ +https://github.com/aipescience/libhilbert;Library for N-Dimensional Hilbert Mapping;leibniz;aip_e-science;no_research;C++ +https://github.com/aipescience/daiquiri;A framework for the publication of scientific databases;leibniz;aip_e-science;research;PHP +https://github.com/aipescience/daiquiri-app;Empty web application for the daiquiri framework;leibniz;aip_e-science;no_research;PHP +https://github.com/aipescience/uws-client;IVOA UWS service command line client;leibniz;aip_e-science;research;Python +https://github.com/aipescience/mysql_sphere;MySQL port of pgSphere 1.1.1;leibniz;aip_e-science;no_research;C++ +https://github.com/aipescience/sqlite_sphere;Sqlite3 port of pgSphere 1.1.1 https://escience.aip.de/mysql-sphere/;leibniz;aip_e-science;no_research;C++ +https://github.com/aipescience/verlustdernacht;;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/daiquiri-admin;A python library for administrative tasks to be used with the Daiquiri Framework;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/make-a-movie;;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/lightmeter;;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/mysql_healpix;HEALPix plugin for MySQL;leibniz;aip_e-science;no_research;C +https://github.com/aipescience/queryparser;Parsing, processing, and translation of PostgreSQL, MySQL and ADQL queries;leibniz;aip_e-science;research;Python +https://github.com/aipescience/lyonetia;Test tools and data for ADQL parsers and TAP services.;leibniz;aip_e-science;no_research; +https://github.com/aipescience/spider-docker;Docker files for a Spider-Engine MariaDB cluster;leibniz;aip_e-science;no_research;PLpgSQL +https://github.com/aipescience/spider-test-data;Test data for a Spider-Engine MariaDB cluster;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/copy-files-in-parallel;A python wrapper to rsync and parallel to copy a large number files using parallel threads.;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/raid-utils;;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/mysql_udf;MySQL UDF collection;leibniz;aip_e-science;no_research;C +https://github.com/aipescience/votable2sql;Tool to convert VOTables into SQL dumps;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/django-daiquiri-tap;A tiny wrapper for astroquery.utils.tap, adding support for token authorization.;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/provenance-applause;Provenance for APPLAUSE database;leibniz;aip_e-science;no_research;Python +https://github.com/aipescience/cosmosim-tap-tutorials;Tutorials for using TAP service on www.cosmosim.org;leibniz;aip_e-science;no_research;Jupyter Notebook +https://github.com/ATB-Potsdam/IDM;Irrigation water Demand Module;leibniz;agricultural_engineering_and_bioeconomy;research;C# +https://github.com/ATB-Potsdam/monica-env-extractor;"Extract all subobjects from a MONICA ""env"" JSON to separate files";leibniz;agricultural_engineering_and_bioeconomy;no_research;JavaScript +https://github.com/ATB-Potsdam/Matlab_TVDI_cal;Calculate TVDI using Landsat 8 images;leibniz;agricultural_engineering_and_bioeconomy;no_research;MATLAB +https://github.com/ATB-Potsdam/monica;license;leibniz;agricultural_engineering_and_bioeconomy;research; +https://github.com/ATB-Potsdam/jupyterhub_dockerized;;leibniz;agricultural_engineering_and_bioeconomy;no_research;Python +https://github.com/ATB-Potsdam/daisy-model_dockerized;;leibniz;agricultural_engineering_and_bioeconomy;no_research;Dockerfile +https://github.com/ATB-Potsdam/N_opt_economic;simple approach to estimate economic optimum of N fertilisation;leibniz;agricultural_engineering_and_bioeconomy;research;Jupyter Notebook +https://github.com/ATB-Potsdam/Food-Packaging-Simulation;Matlab code for simulation of package headspace and shelf life;leibniz;agricultural_engineering_and_bioeconomy;no_research;MATLAB +https://github.com/PolarTerrestrialEnvironmentalSystems/LegacyAge-1.0;Calculation of Bacon Age-Depth-models for the LegacyAge 1.0 dataset. Supplement to: Chenzhi Li, Alexander Postl, Thomas B√∂hmer, Xianyong Cao, Andrew Dolman, Ulrike Herzschuh (2021): Harmonized chronologies of a global late Quaternary pollen dataset (LegacyAge 1.0);awi;polar_terrestrial_environmental_systems;no_research; +https://github.com/PolarTerrestrialEnvironmentalSystems/LandCoverChange;;awi;polar_terrestrial_environmental_systems;no_research;R +https://github.com/EarthSystemDiagnostics/hamstr;An rstan implementation of Bacon-like age-depth modelling but with hierarchically structured multi-resolution depth scales.;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/corit;An R package to calculate time scale dependent correlations.;awi;earth_system_diagnostics;no_research;R +https://github.com/EarthSystemDiagnostics/sedproxy;An R package for modelling sediment archived climate proxy records.;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/simproxyage;An R package to simulate age uncertainty in layer-counted climate proxy records.;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/proxysnr;An R package to separate the common signal from local noise in climate proxy records using spectral analyses.;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/orbitalforcing;R package for calculating orbital forcing of the climate. (data package);awi;earth_system_diagnostics;no_research;R +https://github.com/EarthSystemDiagnostics/ecustools;An R package of miscellaneous functions for the ECUS/SPACE group.;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/MonsoonMinimalModel;"Minimal model for monsoon precipitation for manuscript ""Position and orientation of the westerly jet determined Holocene rainfall patterns in China, Nature Communications, 2019""";awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/HolSNR;;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/piccr;A bundle of R functions to correct and calibrate raw Picarro cavity ring down spectroscopy stable isotope data.;awi;earth_system_diagnostics;no_research;R +https://github.com/EarthSystemDiagnostics/simulate-picarro;simple simulation of Picarro measurement process;awi;earth_system_diagnostics;no_research;R +https://github.com/EarthSystemDiagnostics/cpt-picarr;;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/TrenchR;An R package to analyse and plot trench-like proxy records.;awi;earth_system_diagnostics;research;HTML +https://github.com/EarthSystemDiagnostics/optimalcores;An R software project to analyse optimal ice core locations.;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/exNGT;A bundle of R scripts to analyse extended North Greenland Traverse firn core data;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/paleospec;PaleoSpec is an R package to assist the analysis of variance and power spectra;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/climproxyrecords;R data package containing the Marcott and Shakun proxy record compilations, GISP2, and other data.;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/pfields;An R package to analyse gridded field data.;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/psem;Proxy Spectral Error Model;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/esdpublic;Metapackage to ease installation of all public ESD R packages and their dependencies.;awi;earth_system_diagnostics;no_research;Dockerfile +https://github.com/EarthSystemDiagnostics/geostools;An R package of tools to assist with handling geoscientific problems;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/grfxtools;An R package of tools to assist with various plotting tasks;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/stattools;An R package of tools for statistical analyses;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/prxytools;An R package of tools to assist with proxy analyses;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/ncdftools;An R package of tools to handle NetCDF files ;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/Dolman14C_2021;Code to reproduce the analyses in Dolman et al. (2021) Estimating bioturbation from replicated small-sample radiocarbon ages;awi;earth_system_diagnostics;research; +https://github.com/EarthSystemDiagnostics/laepple22-commentbova;Code for Laepple et al., 2022, Nature Communications Arising ;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/hamstrbacon;Interface between rbacon and hamstr;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/topoExtract;extract interpolated values from raster along ice-flow trajectories;awi;earth_system_diagnostics;research;R +https://github.com/EarthSystemDiagnostics/shinysedproxy;shiny app for sedproxy;awi;earth_system_diagnostics;no_research;R \ No newline at end of file diff --git a/data/all_research_repos.csv b/data/all_research_repos.csv index d720b79..d72b4f0 100644 --- a/data/all_research_repos.csv +++ b/data/all_research_repos.csv @@ -1,1549 +1,1549 @@ -html_url;howfairis_repository;howfairis_license;howfairis_registry;howfairis_citation;howfairis_checklist;fairscore;organisation;dlr_soft_class;project;quick_start_guide;readme_content;help_commands;test_folder;requirements_explicit;continuous_integration;ci_tool;add_lint_rule;add_test_rule;language;type;researchGroup;comment_percentage;comment_category; -https://github.com/Open-Systems-Pharmacology/Suite;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Rich Text Format;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/PK-Sim;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;TRUE;TRUE;TRUE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/MoBi;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Rich Text Format;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.BDDHelper;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.Utility;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.Serializer;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding.DevExpress;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.TeXReporting;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES.282;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/build-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Ruby;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.Core;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/InstallationValidator;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;TRUE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Glucose-Insulin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Reporting-Engine;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox-Core;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;FALSE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Pregnancy-Models;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Exemplary-Protein-Models;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Alfentanil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Itraconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Midazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Itraconazole-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Itraconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Hormonal-Contraceptive-Agents-Datasets;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/QualificationRunner;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Theophylline-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Theophylline-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Theophylline-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Triazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Alprazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/IFN-alpha;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/markdown-joiner;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Qualification-text-modules;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Skin-permeation-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP3A4;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Repaglinide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Pioglitazone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Itraconazole-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Itraconazole-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Amikacin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Vancomycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Pregabalin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Sufentanil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Montelukast-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Paclitaxel-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_GFR_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP3A4_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP2C8_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Dapagliflozin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Raltegravir-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Atazanavir-Raltegravir-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Atazanavir-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Mefenamic_acid-Dapagliflozin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Oxycodone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/rClr;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;1;;TRUE;TRUE;TRUE;TRUE;;;;;;C#;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Qualification-DDI-UGT;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Mefenamic-acid-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Idarucizumab-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Dabigatran-Reversal-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Itraconazole-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Itraconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Erythromycin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Erythromycin-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Erythromycin-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Erythromycin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clarithromycin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Nicotine-Cotinine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Efavirenz-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Efavirenz-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Efavirenz-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSP-Qualification-Reports;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/OSP-PBPK-Model-Library;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Erythromycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Verapamil-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Verapamil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Metformin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cimetidine-Metformin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cimetidine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cimetidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Buprenorphine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Amoxicillin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fentanyl-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Lung-absorption-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Trimethoprim-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Trimethoprim-Metformin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Trimethoprim-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Trimethoprim-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Trimethoprim-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Levonorgestrel;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cimetidine-Verapamil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cimetidine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cimetidine-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cimetidine-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Furosemide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Probenecid-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Probenecid-Furosemide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Probenecid-Rifampicin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Verapamil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Mexiletine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Moclobemide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Omeprazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/S-Mephenytoin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Tizanidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Metoprolol-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Mexiletine-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Mexiletine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Mexiletine-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Omeprazole-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Moclobemide-Omeprazole-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-S-mephenytoin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP1A2;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP2C19;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Quetiapine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Aripiprazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Bupropion-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Voriconazole-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Erythromycin-Carbamazepine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Efavirenz-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cabozantinib-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Finerenone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Alfentanil-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Amikacin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Raltegravir-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Montelukast-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Sufentanil-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Vancomycin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluconazole-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Fluconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Propofol-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Probenecid-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rosuvastatin-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Olanzapine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Lactation-PBPK-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Dextromethorphan-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Cimetidine-Carbamazepine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;1;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Carbamazepine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Montelukast-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Clopidogrel-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Omeprazole-Clopidogrel-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Clopidogrel-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Creatinine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Creatinine-drug-biomaker-interactions;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-drug-biomaker-interactions;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Sildenafil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Felodipine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Voriconazole-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Birds-PBK-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Erythromycin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Digoxin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Warfarin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Ketoconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Quinidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Quinidine-DDGI-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Tacrolimus-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Itraconazole-Tacrolimus-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Voriconazole-Tacrolimus-DDGI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/Open-Systems-Pharmacology/Rifampicin-Tacrolimus-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;; -https://github.com/aeye-lab/etra-fairness;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;aeya;;; -https://github.com/aeye-lab/sp-eyegan;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;aeya;;; -https://github.com/potassco/clingo-rs;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Rust;org;potassco;;; -https://github.com/potassco/anthem;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Rust;org;potassco;;; -https://github.com/potassco/clingo-vs-telingo-planning;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;org;potassco;;; -https://github.com/potassco/clingo-cmake-example;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;potassco;;; -https://github.com/potassco/flatzinc;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;; -https://github.com/potassco/foliage;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;; -https://github.com/potassco/fzn2lp;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;; -https://github.com/potassco/clingo-sys;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;; -https://github.com/potassco/clingo-server;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;; -https://github.com/krr-up/notebook;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;krr;;; -https://github.com/krr-up/action_juggling_robot;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;krr;;; -https://github.com/discourse-lab/dimlex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XSLT;org;discourse-lab;;; -https://github.com/discourse-lab/GraPat;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;discourse-lab;;; -https://github.com/discourse-lab/DisCoDict;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;; -https://github.com/discourse-lab/Connective-Lex.info;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;discourse-lab;;; -https://github.com/discourse-lab/en_dimlex;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;; -https://github.com/discourse-lab/arg-microtexts-part2;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;; -https://github.com/discourse-lab/turkish_connective_lexicon;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;; -https://github.com/discourse-lab/naijalex;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;; -https://github.com/cslm-lab/cognitive_skills;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;org;cslm-lab;;; -https://github.com/cslm-lab/reliability_project;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;cslm-lab;;; -https://github.com/UP-RS-ESP/DEM-KZP;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;org;rs-esp;;; -https://github.com/UP-RS-ESP/DEM_fourier_noise;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;rs-esp;;; -https://github.com/UP-RS-ESP/mfdrouting;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;TRUE;FALSE;;;;;;C;org;rs-esp;;; -https://github.com/UP-RS-ESP/FacetFlowNetwork;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;rs-esp;;; -https://github.com/UP-RS-ESP/LidarPC-KDTree;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;rs-esp;;; -https://github.com/UP-RS-ESP/MoraineAge_GaussianMixture;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;rs-esp;;; -https://github.com/UP-RS-ESP/msc-rsiv;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Ruby;org;rs-esp;;; -https://github.com/UP-RS-ESP/ICESat-2_SVDA;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;rs-esp;;; -https://github.com/UP-RS-ESP/Ames-Stereo-Pipeline-SPOT;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;;;;FALSE;;;;;;Shell;org;rs-esp;;; -https://github.com/hpi-sam/GNN-SpaceTimeGraphs;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/MachineLearningControl;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/dps.training_shared_files;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Dart;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/RL_4_Feedback_Control;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/robust-marl4sas;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/digital-fuesim-manv;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/Spatio-Temporal-Graphs;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/MARL-TransferLearning;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/sct-validation-framework;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;system_analysis_and_modeling_group;;; -https://github.com/hpi-sam/digital-fuesim-manv-public-test-scenarios;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;system_analysis_and_modeling_group;;; -https://github.com/bptlab/chimera;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;;; -https://github.com/bptlab/processeditor;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Java;org;business_process_technology;;; -https://github.com/bptlab/JUserManagement;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;; -https://github.com/bptlab/gryphon;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;2;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;org;business_process_technology;;; -https://github.com/bptlab/Unicorn;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Java;org;business_process_technology;;; -https://github.com/bptlab/argos-backend;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;; -https://github.com/bptlab/scylla;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;org;business_process_technology;;; -https://github.com/bptlab/scylla-ui;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;business_process_technology;;; -https://github.com/bptlab/chor-js;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;business_process_technology;;; -https://github.com/bptlab/chor-js-demo;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;;; -https://github.com/bptlab/caz;TRUE;FALSE;TRUE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;;; -https://github.com/bptlab/cepta;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;; -https://github.com/bptlab/correlation-analysis;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;; -https://github.com/bptlab/subscription-point-visualizer;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;JavaScript;org;business_process_technology;;; -https://github.com/bptlab/fcm2cpn;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;; -https://github.com/bptlab/blockchain-deferred-choice;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;;; -https://github.com/bptlab/ark_automate;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;;; -https://github.com/bptlab/bpmn-js-properties-panel;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;;org;business_process_technology;;; -https://github.com/bptlab/fCM-query-generator;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Vue;org;business_process_technology;;; -https://github.com/bptlab/rpa-dmn-operation;TRUE;TRUE;FALSE;TRUE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C#;org;business_process_technology;;; -https://github.com/bptlab/fCM-design-support;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;;; -https://github.com/bptlab/holistic-process-platform;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Vue;org;business_process_technology;;; -https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;business_process_technology;;; -https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;business_process_technology;;; -https://github.com/bptlab/model-driven-RPA;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;org;business_process_technology;;; -https://github.com/bptlab/MdRPA_Library;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;RobotFramework;org;business_process_technology;;; -https://github.com/hpi-swa-lab/Nemo;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/GazeTracker;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/home-desktop-system;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;StringTemplate;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/tools-interactive-simulations;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/Rack;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/BP2019RH1;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/squeak-inbox-talk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/squeak-spelling-services;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/squeak-tracedebugger;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/sb-terminal;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/ts-edit-action-detector;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Kotlin;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/pivr;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/native-image-visualizations;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;software_architecture_group;;; -https://github.com/hpi-swa-lab/godot-pronto;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;GDScript;org;software_architecture_group;;; -https://github.com/SemanticMultimedia/JungGraphMeasures;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;semantic_multimedia_research_group;;; -https://github.com/SemanticMultimedia/COAL;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;semantic_multimedia_research_group;;; -https://github.com/pik-copan/pyunicorn;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;Jupyter Notebook;org;copan;;; -https://github.com/pik-copan/MayaSim;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;org;copan;;; -https://github.com/pik-copan/pycascades;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;copan;;; -https://github.com/pik-copan/pydrf;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;copan;;; -https://github.com/pik-piam/mrfable;TRUE;TRUE;TRUE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;org;pik-piam;;; -https://github.com/pik-piam/modelstats;TRUE;FALSE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;FALSE;TRUE;;;;;;HTML;org;pik-piam;;; -https://github.com/remindmodel/remind;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;GAMS;org;remind;;; -https://github.com/pik-gane/vodle;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;pik-gane;;; -https://github.com/pik-gane/pymdptoolbox-satisfia;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;pik-gane;;; -https://github.com/pik-gane/avoiding-side-effects-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;;; -https://github.com/pik-gane/train-procgen-pytorch-satisfia;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;pik-gane;;; -https://github.com/pik-gane/RL4LMs_RLCHF;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;;; -https://github.com/pik-gane/webppl-agents-satisfia;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;pik-gane;;; -https://github.com/pik-gane/alpaca_eval-collective;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;;; -https://github.com/pik-gane/Minigrid-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;FALSE;TRUE;;;;;;;org;pik-gane;;; -https://github.com/GFZ/eGSIM;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;geosciences_gfz;;; -https://github.com/GFZ/grunt-css-url-rewrite;TRUE;FALSE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;geosciences_gfz;;; -https://github.com/GFZ-Centre-for-Early-Warning/REM_optimized_routing;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;QML;org;center_for_early_warning_gfz;;; -https://github.com/GFZ-Centre-for-Early-Warning/REM_RRVS;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;center_for_early_warning_gfz;;; -https://github.com/GFZ-Centre-for-Early-Warning/REM_DEA;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;center_for_early_warning_gfz;;; -https://github.com/GFZ-Centre-for-Early-Warning/Bottom-up-Exposure-Modelling;TRUE;FALSE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;;; -https://github.com/GFZ-Centre-for-Early-Warning/EMCA-Exposure;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;center_for_early_warning_gfz;;; -https://github.com/GFZ-Centre-for-Early-Warning/assetmaster;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;;; -https://github.com/GFZ-Centre-for-Early-Warning/modelprop;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;;; -https://github.com/fastscape-lem/fastscape-demo;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;;; -https://github.com/fastscape-lem/fastscapelib-fortran;TRUE;TRUE;FALSE;TRUE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Fortran;org;fastscape_lem;;; -https://github.com/fastscape-lem/orographic-precipitation;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;;; -https://github.com/fastscape-lem/s2s-future-dragonstone;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;;; -https://github.com/fastscape-lem/workshop-gfz-2021-01;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;;; -https://github.com/telota/rasmify;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;PHP;org;telota;;; -https://github.com/telota/rasmify.js;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;telota;;; -https://github.com/telota/exist;TRUE;TRUE;TRUE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Java;org;telota;;; -https://github.com/telota/exist-documentation;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XQuery;org;telota;;; -https://github.com/telota/bts;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;telota;;; -https://github.com/telota/quoteSalute;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;org;telota;;; -https://github.com/telota/kor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;telota;;; -https://github.com/telota/researchspace;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;TypeScript;org;telota;;; -https://github.com/telota/lebenswelten-lehndorff;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;;; -https://github.com/telota/jean_paul_briefe;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;;; -https://github.com/telota/CIL-ACE;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;org;telota;;; -https://github.com/telota/corpus-nummorum-editor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Vue;org;telota;;; -https://github.com/telota/PIR;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;FALSE;TRUE;;;;;;PHP;org;telota;;; -https://github.com/telota/edition-humboldt-digital;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;;; -https://github.com/telota/LinkEdLeibniz-data;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;;; -https://github.com/zentrum-lexikographie/eval-de-lemma;TRUE;TRUE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;;; -https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;org;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;;; -https://github.com/aipescience/daiquiri;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;PHP;org;aip_e-science;;; -https://github.com/ATB-Potsdam/IDM;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;C#;org;agricultural_engineering_and_bioeconomy;;; -https://github.com/ATB-Potsdam/monica;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;agricultural_engineering_and_bioeconomy;;; -https://github.com/ATB-Potsdam/N_opt_economic;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;;;;FALSE;;;;;;Jupyter Notebook;org;agricultural_engineering_and_bioeconomy;;; -https://github.com/EarthSystemDiagnostics/TrenchR;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;TRUE;TRUE;FALSE;TRUE;;;;;;HTML;org;earth_system_diagnostics;;; -https://github.com/EarthSystemDiagnostics/Dolman14C_2021;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;earth_system_diagnostics;;; -https://github.com/adrpar/densfield;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C;user;;;; -https://github.com/aipescience/daiquiri;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;PHP;user;;;; -https://github.com/aipescience/mysql_healpix;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;TRUE;;;;;;C;user;;;; -https://github.com/aipescience/spider-docker;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;FALSE;FALSE;FALSE;;;;;;PLpgSQL;user;;;; -https://github.com/ATB-Potsdam/IDM;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;C#;user;;;; -https://github.com/dshoman/MKN110;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Ruby;user;;;; -https://github.com/ekaterinailin/AltaiPony;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;2;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/dustycrocodile;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/ekaterinailin/flares-in-clusters-ii-draft;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/ekaterinailin/flares-in-clusters-with-k2-ii;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/flares-q-learning;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/flaring-spi;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/flaring-spi-paper;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/ekaterinailin/GaiaK2PSF;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/k2-panstarrs-sampedro;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/multiperiod-flares-draft;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/ekaterinailin/Orbital_Flare_Declustering;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/SiberianPine;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/bootstrapped_mds;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/fedenhance;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/nldr_visual_recognition;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/polymorphisms_statistic_analysis;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/sudo_rm_rf;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/unsup_speech_enh_adaptation;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/filipinascimento/bigscience;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/filipinascimento/bl-conmat2network;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;;; -https://github.com/filipinascimento/bl-network-template-matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/filipinascimento/CVAccessibility;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;;; -https://github.com/filipinascimento/CVRandomWalks;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;;; -https://github.com/filipinascimento/CVSymmetry;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;C;user;;;; -https://github.com/filipinascimento/cxnetwork;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C;user;;;; -https://github.com/filipinascimento/cxnetworks-docker;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;;; -https://github.com/filipinascimento/cxrandomwalk;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;TRUE;;;;;;C;user;;;; -https://github.com/filipinascimento/helios-network;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;FALSE;FALSE;TRUE;;;;;;C;user;;;; -https://github.com/filipinascimento/helios-web;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;user;;;; -https://github.com/filipinascimento/malleability;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;; -https://github.com/filipinascimento/metabonet;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;TRUE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/filipinascimento/openalexnet;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/filipinascimento/teleconnectionsgranger;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/filipinascimento/workshop-netviz;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/harmening/HArtMuT;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Julia;user;;;; -https://github.com/harmening/MRIsegmentation;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/harmening/phrase-frequency-counter;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;;; -https://github.com/hosilva/physrev_mplstyle;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/jochenklar/evora;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;FORTRAN;user;;;; -https://github.com/jochenklar/rdmo-advanced;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;;; -https://github.com/kristinriebe/cosmosim-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Shell;user;;;; -https://github.com/kristinriebe/cosmosim-uws-notebook;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/kristinriebe/provenance-cosmosim;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/mjziebarth/REHEATFUNQ;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/msdemlei/dig-um-fi-init;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/msdemlei/softid;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/wbarfuss/DetRL;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wbarfuss/intrinsic-fluctuations-cooperation;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Mathematica;user;;;; -https://github.com/wbarfuss/MARLDynamics;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wbarfuss/netlogo-exploit;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;; -https://github.com/wbarfuss/Paradigms;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wbarfuss/POLD;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wbarfuss/pyCRLD;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/09tangriro/WHEELS;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Java;user;;;; -https://github.com/aadeshnpn/OSDN;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/abdel/pathology-lab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;PHP;user;;;; -https://github.com/abhimishr/dynamic_forestry_GitHub;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;;; -https://github.com/abhimishr/LUMEN;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;GAMS;user;;;; -https://github.com/abhimishr/magpie_forestry;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;;; -https://github.com/Akhilez/DisCease;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/aklein1995/Pong_withDRL;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/AlexPasqua/DM-project;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/AlexPasqua/Sum-Product-Networks;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/amnmalik/PhdSummary;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/amnmalik/PhDThesis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/amnmalik/reducingstrandedassets;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/amy12xx/ml_notes_and_reports;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/andersthuesen/bachelor-project;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/andersthuesen/ChromaAI;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/araffin/es-with-search-path;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;; -https://github.com/araffin/graph-annotation-tool;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/araffin/rl-handson-rlvs21;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/aseembits93/VS_CNN;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;; -https://github.com/bs538/PlanetImage;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/Butanium/monte-carlo-tree-search-TSP;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;OCaml;user;;;; -https://github.com/camillebelmin/achieving-universal-energy-access;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/cchrisgong/dieter-coupling-remind;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;GAMS;user;;;; -https://github.com/cchrisgong/remind-coupling-dieter;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;;; -https://github.com/chroetz/PaperQuadRate19;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/chroetz/PaperStrong22;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/cyprienc/binary-Huffman-algorithm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/danielhuppmann/binary_equilibrium;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Assembly;user;;;; -https://github.com/danielhuppmann/climate-risks-academy-2021;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/danielhuppmann/iea-netzero2050-datawrangler;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/dbantje/internalization;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/dfilan/clusterability_in_neural_networks;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/enosair/bentkus_conf_seq;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/enosair/gdp-edgeworth;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/enosair/lightcurve-download;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Shell;user;;;; -https://github.com/enosair/tensor-subspace-norm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Matlab;user;;;; -https://github.com/ernestum/clestus;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/ernestum/GeodesicSphere;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;OpenSCAD;user;;;; -https://github.com/etzinis/fedenhance;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/polymorphisms_statistic_analysis;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/sudo_rm_rf;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/etzinis/unsup_speech_enh_adaptation;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/FelicitasBeier/IrrigationPotentials;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/filipinascimento/bigscience;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/filipinascimento/bl-network-template-matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/filipinascimento/cxnetworks-docker;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;;; -https://github.com/filipinascimento/malleability;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;; -https://github.com/filipinascimento/metabonet;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;TRUE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/filipinascimento/openalexnet;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/filipinascimento/teleconnectionsgranger;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/floringogianu/paper-notebooks;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/floringogianu/per-study;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ftl-traveller/youtube-sentiment-analysis-opinion-mining;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/g-leech/masks_v_mandates;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/glmcdona/FoosRL;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;user;;;; -https://github.com/glmcdona/Process-Dump;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;;; -https://github.com/harmening/HArtMuT;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Julia;user;;;; -https://github.com/harmening/MRIsegmentation;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/hkraemer/InterSpikeSpectra-Matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;TRUE;;;;;;MATLAB;user;;;; -https://github.com/hkraemer/MCDTS.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Julia;user;;;; -https://github.com/hkraemer/PECUZAL_Julia;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;; -https://github.com/hkraemer/PECUZAL_Matlab;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;;; -https://github.com/honglu2875/weirdonetworks;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;; -https://github.com/JacobPfau/introspective-self-consistency;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;TRUE;;;;;;Jupyter Notebook;user;;;; -https://github.com/jakobkolb/fMRI_FF;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;AGS Script;user;;;; -https://github.com/jakobkolb/Master-Thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/jakobkolb/ml-covid-nowcasting;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/jakobkolb/pysave;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;; -https://github.com/jansteinhauser/masc;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;GAMS;user;;;; -https://github.com/jbloomAus/ARENA_2.0-RLHF;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/JulesGM/DeepNeuro;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/JulesGM/eli5_retrieval_large_lm;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/juliusgarbe/modelling_sandbox;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/jvmncs/Contamination;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/jvmncs/DeepIDS;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/jvmncs/reinforcement-learning;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/kachayev/timely0;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Scala;user;;;; -https://github.com/lcswillems/ai-mx-docs;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/lcswillems/MVA-RecVis-project;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ManifoldFR/point-process-rust;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;user;;;; -https://github.com/matthiasmengel/fast_ant_sid;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Fortran;user;;;; -https://github.com/maximilian-gelbrecht/ChaoticNDETools.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;; -https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;; -https://github.com/maximilian-gelbrecht/MCBB.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;; -https://github.com/Miffyli/sym;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/Miffyli/ToriLLE;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Lua;user;;;; -https://github.com/mikapfl/gin_ansible_role;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;;; -https://github.com/mikapfl/read_di_unfccc;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/mikapfl/unfccc_di_data;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Makefile;user;;;; -https://github.com/mikewin-climsci/BGPvBGC;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/mjziebarth/REHEATFUNQ;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/mppalves/NetLogo_Bacterial_Infection_Model;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;NetLogo;user;;;; -https://github.com/mppalves/PIK-projects;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Mathematica;user;;;; -https://github.com/PhilippVerpoort/green-value-chains;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/pik-copan/MayaSim;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;; -https://github.com/pik-copan/pycascades;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/pik-copan/pydrf;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/pik-gane/vodle;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;user;;;; -https://github.com/pik-piam/modelstats;TRUE;FALSE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;;; -https://github.com/pik-piam/mrfable;TRUE;TRUE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;;; -https://github.com/pseudo-rnd-thoughts/Elastic-Resource-Allocation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;; -https://github.com/pvjeetze/Heterogeneity-RootWaterUptake;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/PwnerHarry/CLIA;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/PwnerHarry/Stronger_GCN;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/qxcv/asnets;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;PDDL;user;;;; -https://github.com/qxcv/comp2560;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;; -https://github.com/qxcv/structuredinference;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/rajammanabrolu/Automated-Story-Generation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/rajammanabrolu/CRD3-extended;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/remindmodel/remind;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;TRUE;TRUE;TRUE;TRUE;;;;;;GAMS;user;;;; -https://github.com/Renato-Rodrigues/EU_2040_transformation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/rizar/actor-critic-public;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/rmiddelanis/sandy_paper;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/rockt/ChemSpot;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;;; -https://github.com/rtaori/data_feedback;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/sawcordwell/MDPs.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;Julia;user;;;; -https://github.com/ScheiklP/lap_gym;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/ScheiklP/sofa_godot;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;GDScript;user;;;; -https://github.com/sgillen/fractal_mesh;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/sgillen/fractal_rl;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/sgillen/fractal_rl_scratch;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/sgillen/matlab_ars;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/simoninithomas/Baselines_icm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;;; -https://github.com/simoninithomas/Policy_gradients_CartPole;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/simoninithomas/the_mayan_adventure;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;ShaderLab;user;;;; -https://github.com/thejat/active-curricula-for-efficient-reinforcement-learning;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/thejat/dynamic-network-growth-models;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/thejat/facial-political-recognition;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/thejat/planout;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/thejat/profit-optimization-ride-sharing;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/thejat/supervised-learning-with-side-knowledge;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;; -https://github.com/thejat/Thompson-Sampling-for-a-Fatigue-aware-Online-Recommendation-System;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/Tiiiger/benchmark_llm_summarization;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/tobirohrer/gan-pretraining-ae;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/tobirohrer/reinforcement-learning-heat-pump;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ToBraun/RECFLOW;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ToBraun/RECLAC;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/tom-doerr/Intrinsic-Image-Popularity;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Shell;user;;;; -https://github.com/tomMcGrath/feeding-behaviour;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/tomMcGrath/feeding_analysis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wbarfuss/DetRL;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wbarfuss/intrinsic-fluctuations-cooperation;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Mathematica;user;;;; -https://github.com/wbarfuss/netlogo-exploit;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;; -https://github.com/wbarfuss/Paradigms;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wbarfuss/POLD;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wbarfuss/pyCRLD;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/YannDubs/Neural-Process-Family;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/YannDubs/RAW-Embedings;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/YannDubs/SSL-Risk-Decomposition;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/adbar/coronakorpus;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/adbar/flux-toolchain;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;Perl;user;;;; -https://github.com/adbar/valency-oriented-chunker;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Perl;user;;;; -https://github.com/ariporad/alfred-molar-mass-calculator;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/axellelecroq/digital-edition-bestiaire;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/duncdrum/cbdb-data;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/fgeorges/ml-invoker;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;TRUE;TRUE;;;;;;XQuery;user;;;; -https://github.com/FrederikeNeuber/lewald-correspondence-metadata;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/FrederikeNeuber/stgd-prototype-edition;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/FrederikeNeuber/typoo;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/gremid/idrovora;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;TRUE;;;;;;Clojure;user;;;; -https://github.com/gremid/ujwa;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Clojure;user;;;; -https://github.com/helmuthb/experiment-design-mediaeval;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/jadolan/zoomable_space;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/janpieterk/gemeentekaart-core;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;PHP;user;;;; -https://github.com/janpieterk/gemeentekaart-rest;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;PHP;user;;;; -https://github.com/jcklie/hack-assembler;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Assembly;user;;;; -https://github.com/jcklie/hanzi-website;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/jochenklar/rdmo-advanced;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;;; -https://github.com/jochenklar/rdmo-basic;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;;; -https://github.com/lcahlander/scxml-xq;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XQuery;user;;;; -https://github.com/lguariento/og-h-am;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/lpodl/Izhikevich-Neurons;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/lpodl/Stein-Variational-Gradient-Descend;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/Rein3ke/2d-game-immersive-prototype;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C#;user;;;; -https://github.com/Rein3ke/com.rein3ke.virtualtour.core;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;;; -https://github.com/Rein3ke/VirtualMuseumTour;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;;; -https://github.com/riccardodg/linguistic-tools-for-weblicht;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Java;user;;;; -https://github.com/robcast/digilib;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;;; -https://github.com/tboenig/ocrd_bbaw_pilotbibliothek;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/telota/archiv-editor;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;FALSE;FALSE;;;;;;Java;user;;;; -https://github.com/telota/bbaw-schoell;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;TRUE;FALSE;;;;;;;user;;;; -https://github.com/telota/ChronoTool;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;TRUE;FALSE;;;;;;HTML;user;;;; -https://github.com/telota/CIL-ACE;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;user;;;; -https://github.com/telota/corpus-nummorum-editor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Vue;user;;;; -https://github.com/telota/edition-humboldt-digital;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/telota/jean_paul_briefe_ediarum;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;;; -https://github.com/telota/LinkEdLeibniz-data;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/telota/PIR;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;user;;;; -https://github.com/telota/quoteSalute;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;;; -https://github.com/telota/wsp-forschungsaktivitaet;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/uiur/kanji_to_hanzi;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Ruby;user;;;; -https://github.com/ulf1/study-370b;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ulf1/ulf1;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;TRUE;FALSE;;;;;;;user;;;; -https://github.com/ulf1/vue-fit2box;TRUE;TRUE;TRUE;TRUE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/windauer/ws21-tp7-ws;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;XQuery;user;;;; -https://github.com/xlhrld/retro-dict;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;user;;;; -https://github.com/a-moi/political-argument-mining;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/Abdelwahab86/Water-polygons-photogrammetry;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/Adrian-Ziupka/ba-thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/aeye-lab/etra-fairness;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/aeye-lab/sp-eyegan;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/alecamcr/Immigration-RSE;TRUE;TRUE;FALSE;TRUE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/alisher-turubayev/dl-normalizing-flows;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/alisher-turubayev/trent-university-code;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C#;user;;;; -https://github.com/alisher-turubayev/uni-potsdam-code;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/alsino/vmt-network;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/arne-cl/feng-hirst-rst-parser;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Shell;user;;;; -https://github.com/AvitBhowmik/Poster-on-Spatial-Statistics-2015;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/AvitBhowmik/Presentation-at-SEFS9;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/bgroenks96/generative-downscaling;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/bgroenks96/normalizing-flows;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/BodoBookhagen/ICESat-2_SVDA;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/bptlab/scylla;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;;; -https://github.com/braunfuss/thermalintertia;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;; -https://github.com/briemadu/codraw-icr-v1;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/briemadu/inc-eval-revisions;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/briemadu/scorekeeping;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ClemensKubach/bicycle-bell-sed-models;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ClemensKubach/vae-art-restoration;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/crpiceda/dynamictopography;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/danielrm84/DeepLearning_AnimalVocalizations;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/danielrm84/Netlogo_Map_Generator;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;; -https://github.com/danielrm84/PanModel33;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;; -https://github.com/danielrm84/Romero-Mujalli-et-al.-BMC-Evolutionary-Biology;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;; -https://github.com/delwarhub/Multimodal_Task_and_Feature_Attribution;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;;; -https://github.com/delwarhub/Multimodal_Task_with_Prompting_Large_Language_Models;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/Diego-Dam/paper_co_creation_mobility_planning_germany;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/discourse-lab/dimlex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XSLT;user;;;; -https://github.com/discourse-lab/DisCoDict;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/ekaterinailin/AltaiPony;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/flaring-spi;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/Orbital_Flare_Declustering;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/ekaterinailin/TESS_UCD_flares;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/flying-bear/thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/fpottbaecker/st-data-gen;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/geveh/GLOFdetection;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/geveh/GLOFsusceptibility;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/hkraemer/PECUZAL_Julia;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;; -https://github.com/hkraemer/PECUZAL_Matlab;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;TRUE;;;;;;HTML;user;;;; -https://github.com/hydrogo/KALI;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/hydrogo/KALIv2;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/juliusgarbe/modelling_sandbox;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/krr-up/bibliography;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/linusha/bundesweiter-mietendeckel-visualisierung;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;; -https://github.com/maximilian-gelbrecht/MCBB.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;; -https://github.com/mcvidomi/MFI;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/peldszus/arg-microtexts-multilayer;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ActionScript;user;;;; -https://github.com/peldszus/joty-rstparser-docker;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;;; -https://github.com/PFischbeck/pygirgs;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/plauth/lib842;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;user;;;; -https://github.com/potassco/clingo-vs-telingo-planning;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;user;;;; -https://github.com/potassco/pddl-instances;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Common Lisp;user;;;; -https://github.com/prassepaul/mlmed_transfer_learning;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/pschonev/deepanomaly4docs;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/resfahani/GMD;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/resfahani/GVM-Player;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/RoshanRane/Deviance_explained;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/RoshanRane/ML_for_IMAGEN;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/RoshanRane/PredNet-and-Predictive-Coding-A-Critical-Review;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/RoshanRane/segmentation-moving-MNIST;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/SemanticMultimedia/JungGraphMeasures;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;; -https://github.com/TillF/directional_CRNS;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/ToBraun/RECLAC;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/TScheffler/Connectives;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/TScheffler/UK_DiMLex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/University-of-Potsdam-MM/GRANT;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;;; -https://github.com/UP-RS-ESP/DEM-KZP;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;; -https://github.com/UP-RS-ESP/LidarPC-KDTree;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/UP-RS-ESP/mfdrouting;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;;; -https://github.com/vasishth/HubermanBreathing;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/vasishth/HusainEtAlJEMR2015;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Stan;user;;;; -https://github.com/vasishth/manuscript_LogacevVasishth_CogSci_SMCM;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/vasishth/powerpose;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Stan;user;;;; -https://github.com/warpaint97/plan-merging-project;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/wschwanghart/ncquantreg;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;; -https://github.com/XiaoxiangGuanGFZ/kNN_MOF_cp;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;; -https://github.com/YanaPalacheva/avoidance_study;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/YanaPalacheva/experiments_neuralcoref;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/yanweiser/Beyond-Task-Success-But-Bert;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;user;;;; -https://github.com/zentrum-lexikographie/eval-de-lemma;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/EarthSystemDiagnostics/TrenchR;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;HTML;user;;;; -https://github.com/GPawi/CarbStock21k;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/GPawi/LANDOnline;TRUE;TRUE;FALSE;TRUE;FALSE;;awi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;; -https://github.com/GPawi/MAYHEM;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/slisovski/23-143-D-INSPIRES-B;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/slisovski/BTGodwit_Alaska_SnowNDVI;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;;user;;;; -https://github.com/slisovski/Inspires;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/slisovski/Lisovski-et-al.-2016-AmNat;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/abstraktor/multileveldebugging-QoppaS;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;;; -https://github.com/aksub99/molecular-vae;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/arne-z/BachelorThesis;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;; -https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/bptlab/scylla;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;;; -https://github.com/Buguemar/GRTC_GNNs;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/cenguix/Text2KGBench;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/chrisseaton/dfscala-benchmarks;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Scala;user;;;; -https://github.com/chrisseaton/low-overhead-polling-ruby;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;; -https://github.com/christianwarmuth/explainable-predictive-process-monitoring-with-text;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/christianwarmuth/treatment-based-patient-discharge-classification;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/cosminbasca/ellipsedetector;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;; -https://github.com/danijar/daydreamer;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/florian-papsdorf/kip-company-acquisition;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;; -https://github.com/fmannhardt/pddp;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;;; -https://github.com/HaidYi/admm-l1-2-logistic-regression;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;;; -https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;; -https://github.com/hpi-swa-lab/home-desktop-system;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;; -https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;FALSE;FALSE;;;;;;StringTemplate;user;;;; -https://github.com/hpi-swa-lab/squeak-inbox-talk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;; -https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;; -https://github.com/hpi-swa-lab/squeak-tracedebugger;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;user;;;; -https://github.com/JakobEdding/Collaborative-Filtering-Kafka;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;; -https://github.com/jirkamarsik/esa-wordseg;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Clojure;user;;;; -https://github.com/kanihal/vatic_modified;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;user;;;; -https://github.com/LeonBein/masterThesisCode;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/LinqLover/downstream-repository-mining;TRUE;TRUE;FALSE;TRUE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;user;;;; -https://github.com/linusha/twitter-saxony-anhalt-election-2021-sentiment;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;; -https://github.com/luisebenkert/Potree-Extension;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/marcfreiheit/generic-functions-squeak;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;; -https://github.com/nicolas-alder/KAFKA-EFDT;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;; -https://github.com/onsetsu/d3-bundleview;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;; -https://github.com/ThorbenLindhauer/cosimin;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;; -https://github.com/timgarrels/TableRecognition21;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;; -https://github.com/aipescience/daiquiri-admin;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/aipescience/django-daiquiri-tap;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/aipescience/lightmeter;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/aipescience/mysql_sphere;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;none; -https://github.com/aipescience/provenance-applause;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/aipescience/queryparser;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;most; -https://github.com/aipescience/raid-utils;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/aipescience/spider-test-data;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/aipescience/sqlite_sphere;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;C++;user;;;none; -https://github.com/aipescience/uws-client;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;2;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;more; -https://github.com/aipescience/verlustdernacht;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/aipescience/votable2sql;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/aodenweller/green-h2-upscaling;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/ATB-Potsdam/jupyterhub_dockerized;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/dshoman/MgII;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/ekaterinailin/flare-locations-ensembles-science;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;TRUE;TRUE;Python;user;;;most; -https://github.com/etzinis/biased_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/etzinis/heterogeneous_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/etzinis/nldrp;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/etzinis/optimal_condition_training;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/etzinis/speech_nlp_labs;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/etzinis/two_step_mask_learning;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/etzinis/unsupervised_spatial_dc;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/filipinascimento/bl-network-communities;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-measurements;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-nullmodel;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-preprocess;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-report;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-template;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-visualization;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-timeseries2network;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/harmening/pyhemo;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/harmening/pyreite;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none; -https://github.com/hosilva/mplstyle;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jochenklar/chemotion-formats;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/jochenklar/isimip-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/jochenklar/meps;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/jochenklar/quantify;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/jochenklar/reader2;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/kristinriebe/blendertools;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/kristinriebe/DensityIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/kristinriebe/FofIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/kristinriebe/GalacticusIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/kristinriebe/PmssIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/kristinriebe/SageIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/kristinriebe/SagIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/kristinriebe/uws-validator;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/lenas95/Projekt_B;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/lenas95/SEWS_Amazon_rainforest;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/mjziebarth/ACOSA;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/mjziebarth/acplotoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/mjziebarth/FlotteKarte;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;C++;user;;;most; -https://github.com/mjziebarth/InterpolateStress;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/mjziebarth/pybalonor;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;TRUE;TRUE;C++;user;;;most; -https://github.com/olebole/i386-test;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none; -https://github.com/olebole/python-cpl;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;none; -https://github.com/SimonPfeifer/cows;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;more; -https://github.com/SimonPfeifer/Ecosystem;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/SimonPfeifer/PyBrego;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/SimonPfeifer/WLmap;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/wbarfuss/CognitiveLevels;TRUE;TRUE;FALSE;TRUE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/wbarfuss/cyexploit;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/wbarfuss/eca;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/wbarfuss/EcoPG;TRUE;TRUE;FALSE;TRUE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/09tangriro/Pearl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;TRUE;TRUE;Python;user;;;none; -https://github.com/09tangriro/ppg;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/0UmfHxcvx5J7JoaOhFSs5mncnisTJJ6q/moinput;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/0xsuu/mutual-information-regulariser;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/aadeshnpn/cooperative-transport;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/aadeshnpn/knn-simple;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/aadeshnpn/LTLf2BT;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/aadeshnpn/nepali-mapper;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/aadeshnpn/PyGoal;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/aadeshnpn/swarm;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;more; -https://github.com/abaisero/asym-rlpo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/abaisero/gym-gridverse;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;TRUE;FALSE;Python;user;;;none; -https://github.com/abaisero/gym-pomdps;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/abaisero/gym-pyro;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/abaisero/one-to-one;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/abaisero/pre-commit-hooks;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/abaisero/rl-rpsr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/abhimishr/FADNUGent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/AdamGleave/pytest-shard;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;circleci;;;Python;user;;;more; -https://github.com/akifumi-wachi-4/safe_near_optimal_mdp;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/akifumi-wachi-4/spolf;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/aklein1995/exploration_sil_im;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/aklein1995/intrinsic_motivation_techniques_study;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/aklein1995/Multi-Agent-Reinforcement-MADDPG;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/aklein1995/Navigation_Bananas_DRL;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/AlexPasqua/Autoencoders;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/AlexPasqua/DeepNetSlice;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/AlexPasqua/keras-caffe-converter;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/amnmalik/gcam-v6-ceew;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/anand-bala/deepsort_ros;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/anand-bala/perception-algorithms;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/anand-bala/symbolic-automata-monitors;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none; -https://github.com/andersthuesen/reinforcement-exploration;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/AnjaKatzenberger/CMIP6-Indian-Monsoon;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/aodenweller/green-h2-upscaling;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/araffin/eagerx_quadruped;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;TRUE;TRUE;Python;user;;;some; -https://github.com/araffin/rl-baselines-zoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;Python;user;;;none; -https://github.com/araffin/robotics-rl-srl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/araffin/sbx;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none; -https://github.com/araffin/srl-zoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://git+A726+B726;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;; -https://github.com/atreyasha/language-detection;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/atreyasha/mimic3-benchmarks-occlusion;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/atreyasha/mv-temporal-rgan;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/atreyasha/semantic-isometry-nmt;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/atreyasha/sentiment-argument-mining;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/atreyasha/spam-detection;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/ayeright/swafa;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/bodirsky/lucode;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;R;user;;;most; -https://github.com/BolunDai0216/DifferentiableOptimizationCBF;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/BolunDai0216/FR3Env;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/BolunDai0216/ppo_torch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/BurakDmb/DifferentiableSearchIndexAndRetrieval;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/BurakDmb/mpc_example;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/BurakDmb/quadsim;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/caviddhen/bowheads;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/caviddhen/ggcmi2agmip;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/caviddhen/MagpieNCGains;TRUE;FALSE;FALSE;TRUE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/caviddhen/MarkupsChen;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/cchrisgong/aip_rockstar;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/cchrisgong/kuramoto_no_cluster;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/christophbertram/covid-power-sector;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/christopher-hesse/computer-tennis;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/chroetz/poisrrr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/chroetz/spheregr;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;user;;;some; -https://github.com/chroetz/TdaCpdSim;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/chroetz/WhenMeasureChaos;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/CppMaster/SC2-AI;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/cyl628/prompt-typing;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/d3sm0/dantebot;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/d3sm0/gym-vdp;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/d3sm0/svg;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/david-lindner/ai-safety-debate;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/david-lindner/idrl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/david-lindner/safe-grid-gym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;none; -https://github.com/david-lindner/single-peaked-bandits;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/deleip/empirical_analysis_of_cascading_effects;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some; -https://github.com/dengemann/meeg-preprocessing;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/dengemann/paper-multimodal-stacking-figures;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/devcurmudgeon/cida;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/elliottower/abstraction;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/elliottower/ProtoQA_Macaw;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/emolinab/PlotsPaper;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more; -https://github.com/emolinab/PlottingScripts;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more; -https://github.com/enosair/federated-fdp;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/ernestum/data-samples-printer;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;0;research;TRUE;FALSE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none; -https://github.com/etzinis/heterogeneous_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/etzinis/nldrp;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/etzinis/optimal_condition_training;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/etzinis/unsupervised_spatial_dc;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/FelicitasBeier/mrwater4SIMPLE-G;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/FelicitasBeier/mrwaterPlots;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/filipinascimento/bl-network-communities;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-measurements;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-nullmodel;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-preprocess;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-network-report;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/bl-timeseries2network;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/filipinascimento/openalex-raw;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/filipinascimento/RModularity;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/filipinascimento/WOSRaw;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/floringogianu/atari-agents;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;2;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/floringogianu/categorical-dqn;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/floringogianu/rlog;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/floringogianu/schrodinger;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/floringogianu/wintermute;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/g-leech/Py2HTK;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/gabriel-abrahao/analyze_cesm;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/glmcdona/LuxPythonEnvGym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/glmcdona/MALM;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/glmcdona/sparse-tabular-ml-benchmark;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/harmening/signature_extraction;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;TRUE;Python;user;;;none; -https://github.com/hkraemer/PECUZAL_python;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;more; -https://github.com/JacobPfau/PENCIL;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/JacobPfau/procgenAISC;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;C++;user;;;more; -https://github.com/JakobBruenker/HDR;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/jbkjr/allennlp_sempar;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jbloomAus/toy_model_interpretability;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jhilaire/ssawosacarb;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more; -https://github.com/jjshoots/DL_FasteNet;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/jjshoots/PyFlyt;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;most; -https://github.com/jjshoots/pyflyt_dogfight;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/jjshoots/railway_drone;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/jkterry1/ASWS;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;more; -https://github.com/jkterry1/MCMES_cleanup_scratch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/jkterry1/parameter-sharing-paper;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none; -https://github.com/jmhessel/BasicSpearmint;TRUE;FALSE;TRUE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jmhessel/caption_contest_corpus;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/jmhessel/catrank;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/jmhessel/clipscore;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/jmhessel/FightingWords;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jmhessel/fmpytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/jmhessel/multi-retrieval;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/jnnsbrr/PhotoBioDynamics;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/jondurbin/airoboros;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none; -https://github.com/joonleesky/train-procgen-pytorch;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jsalvatier/async_deep_reinforce;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/jsalvatier/numexpr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/jsalvatier/PyGame-Learning-Environment;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/JSchapke/essential-gene-detection;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/JSchapke/routing-environment;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/JulesGM/AccelerateRL4LMs;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/JulesGM/RL4LMS_fork;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/jvmncs/ParamNoise;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jvmncs/PytorchAdversarialGym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/kachayev/car-racing-attention-agent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/kachayev/ssl-in-one-epoch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/kcobbe/gans_mnist;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/kcobbe/ram_mnist;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/kcobbe/slitherin;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/kronion/microrts-ppo-comparison;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/kzl/aop;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/kzl/lifelong_rl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/kzl/universal-computation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/langosco/neural-variational-gradient-descent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/langusta/sutton-reinforcement-learning-intro;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/lcswillems/automatic-curriculum;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/lcswillems/MVA-RL-project;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/lcswillems/MVA-TDA-article;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/lcswillems/named-entity-recognizer;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/leesharkey/deep_attractor_network;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/lxuechen/inference-suboptimality;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/lxuechen/private-transformers;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/maibrittbergh/dischanalyst;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/maibrittbergh/lfanalyse;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/ManifoldFR/entropic-mfg;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;more; -https://github.com/marcwie/pycoment;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/marcwie/sedac-gpw-parser;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/MathisFederico/coffeematon;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/MathisFederico/LearnRL;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;more; -https://github.com/matthiasmengel/pism_pik;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/matthiasmengel/sealevel;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/Melanol/bacteria_evo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/mgoulao/Linear-Probing-for-RL;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/Miffyli/nle-sample-factory-baseline;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/Miffyli/policy-supervectors;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/Miffyli/rl-action-space-shaping;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;more; -https://github.com/Miffyli/rl-human-prior-tricks;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/miljanm/deep-learning-for-sentiment-mining;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/miljanm/Political-Twitter-Sentiment-Mining;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/minhlong94/Random-Mixup;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/mjziebarth/pybalonor;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/mppalves/soilcemulator;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/neale/avoiding-side-effects;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/neale/HyperGAN;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/neale/neural-canvas;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/neale/neural-data-format;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/neale/particle-based-vi_ood;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/PhilippVerpoort/blue-green-H2;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/PhilippVerpoort/posted;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/pik-copan/pycopanbehave;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/pik-copan/pycopancore;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/pik-copan/pycopandiscount;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/pik-copan/pycopanpbcc;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/pik-copan/pyregimeshifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/pik-copan/pytippinginteractions;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/pik-copan/pyunicorn;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/PIK-LPJmL/LandInG;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/PIK-LPJmL/lpjmlkit;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/PIK-LPJmL/LPJmLmdi;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/pik-piam/blackmagicc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/brick;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/citation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/demystas;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/edgeTransport;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/edgeTrpLib;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/GDPuc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/gdx;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/gms;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/goxygen;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/limes;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/lockfile-archive;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/pik-piam/lpjclass;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/lucode2;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/luplot;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/luscale;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/lusweave;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/m4fsdp;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/madrat;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/magclass;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/magpie4;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/MAgPIENCGains;TRUE;FALSE;FALSE;TRUE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/magpiesets;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mip;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrcommons;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrdieter;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/mrdownscale;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrdrivers;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mredgebuildings;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mredgetransport;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrfactors;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrfeed;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrfish;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrland;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrmagpie;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrremind;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrsoil;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrtransport;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrtutorial;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrvalidation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrvalidnitrogen;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrwaste;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrwater;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mrwaterplots;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/mstools;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/piamenv;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/piamInterfaces;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/piktests;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/project_interfaces;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some; -https://github.com/pik-piam/quitte;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/r2databus;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/regressionworlddata;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/remind;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/remind2;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/remindPypsa;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/remulator;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/rmndt;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/rOpenscmRunner;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/pik-piam/shinyresults;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pik-piam/trafficlight;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/pweigmann/harmonic-power-flow;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/PwnerHarry/DQN;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/PwnerHarry/META;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/PwnerHarry/SOOPLAT;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/qgallouedec/panda-gym;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/qgallouedec/semantic_segmentation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/qxcv/engn4528-project-public;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/qxcv/magical;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/rajammanabrolu/C2PO;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rajammanabrolu/KG-A2C;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rajammanabrolu/KG-DQN;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rajammanabrolu/Q-BERT;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rajammanabrolu/StoryRealization;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rajammanabrolu/WorldGeneration;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/rajcscw/nlp-gym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rajcscw/pytorch-optimize;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rgieseke/opencoviddata;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rizar/attention-lvcsr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/rizar/CLOSURE;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/rizar/systematic-generalization-sqoop;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;more; -https://github.com/Rocamonde/catevap;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/Rocamonde/savannah-framework;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;FALSE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/rodrigodelazcano/d4rl-minari-dataset-generation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rtaori/Black-Box-Audio;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;more; -https://github.com/sawcordwell/pymdptoolbox;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/ScheiklP/sofa_env;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/ScheiklP/sofa_zoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/sgillen/gan_art;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/shwang/NNG;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/shwang/pedestrian_prediction;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/sparisi/pvr_habitat;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/stenzelf/biospheremetrics;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/SwamyDev/gym-quickcheck;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/SwamyDev/reinforcement;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;0;research;TRUE;FALSE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/thejat/bandits-with-stochastic-impairments;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/thejat/learning-realistic-buyer-models;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/thejat/learning-to-partition-using-pairwise-compatibilities;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/thejat/scalable-data-driven-assortment-planning;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/Tiiiger/QPyTorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/Tiiiger/SGC;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/Tiiiger/templm;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/tom-doerr/FAKEBOB_fork_2;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/tom-doerr/fakebob_offsets;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/discor.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/fqf-iqn-qrdqn.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/gail-airl-ppo.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/sac-discrete.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/slac-discrete.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/slac.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/soft-actor-critic.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/vae.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/toshikwa/wappo.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/tscheypidi/mrorganic;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/vitusbenson/tropical_rainforest_resilience_nongaussian;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/vwxyzjn/a2c_is_a_special_case_of_ppo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/vwxyzjn/cleanba;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/vwxyzjn/cleanrl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/vwxyzjn/envpool-cleanrl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/vwxyzjn/gym-microrts-paper;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/vwxyzjn/invalid-action-masking;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/vwxyzjn/lm-human-preference-details;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/wbarfuss/CognitiveLevels;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/wbarfuss/cyexploit;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/wbarfuss/EcoPG;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/YannDubs/disentangling-vae;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/YannDubs/FourRussiansRNA;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/YannDubs/Hash-Embeddings;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/YannDubs/Invariant-Self-Supervised-Learning;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/YannDubs/lossyless;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/YannDubs/Mini_Decodable_Information_Bottleneck;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/YannDubs/simulationPopulationGenetics;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/zeionara/marude;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/ZikangXiong/diff-spec;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ZikangXiong/MFNLC;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ZikangXiong/mobrob;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ZikangXiong/rl-detect-and-denoise-defense;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/ZikangXiong/RobotDesign;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;none; -https://github.com/adbar/courlan;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/adbar/geokelone;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/adbar/german-reddit;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/adbar/htmldate;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/adbar/laclos;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/adbar/microblog-explorer;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/adbar/simplemma;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/adbar/vardial-experiments;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/AgnieszkaFalenska/IMSnPars;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/alexmilowski/pygobo;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/axellelecroq/corresphumboldtlite;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;0;research;TRUE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/coltekin/dsl2016-source;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/coltekin/emoji2018;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/coltekin/gk-treebank;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/helmuthb/datascience-thesis;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/jcklie/hanzitools;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jcklie/ireval;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jcklie/seqviz;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;FALSE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/nfcampos/treesampler;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/riccardodg/psc2lemon;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/rknaebel/bbc-discourse;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rknaebel/landslide;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;1;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/telota/existance;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;1;research;FALSE;FALSE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/bwsample;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/flexion;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/ipasymbols;TRUE;FALSE;TRUE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/keras-bcr;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/keras-cor;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/keras-hrp;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/keras-multilabel-embedding;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/keras-quadopt;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/keras-tweaks;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/kshingle;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/lagmat;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/maxjoshua;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/node-distance;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/node-distance-ray;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/numpy-fracadf;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/numpy-fracdiff;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/numpy-linreg;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/pad-sequences;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/quaxa;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/scipy-psdm;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/scipy-quadopt;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/scipy-tweaks;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/sentence-embedding-evaluation-german;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/simiscore-biblio;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/simiscore-kshingle;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/simiscore-semantic;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/simiscore-syntax;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/sklearn-fracdiff;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/sklearn-pipelinetweak;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/sparsity-pattern;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/torch-hrp;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/torch-multilabel-embedding;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/torch-tweaks;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ulf1/treesimi;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/wrznr/timur;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/zentrum-lexikographie/e-lexicography-2020-WiSe;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/aeye-lab/ecml-ADHD;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/aeye-lab/etra-reading-comprehension;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/aeye-lab/Eyettention;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/aeye-lab/pymovements;TRUE;TRUE;TRUE;FALSE;FALSE;3;up;2;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/aeye-lab/python-wmc-battery;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/alyonavyshnevska/bert_for_coreference_resolution;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/aodenweller/green-h2-upscaling;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/arne-cl/discoursegraphs;TRUE;TRUE;TRUE;FALSE;FALSE;3;up;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/arne-cl/ppi_graphkernel;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/AvitBhowmik/ATRIC;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/bgailleton/DAGGER;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;more; -https://github.com/bgailleton/TVD_Condat2013;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;C++;user;;;some; -https://github.com/bmarv/Psychology_Experiment;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/BodoBookhagen/ChanGeom;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/BodoBookhagen/PC_geomorph_roughness;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/briemadu/inc-bidirectional;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;more; -https://github.com/dagtann/hardTimes;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/damariszurell/4D-niche-overlap;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/damariszurell/SSDM-JSDM;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/danielrm84/Social-Learning-Project-Robotics;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/discourse-lab/pocores;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/ekaterinailin/flare-locations-ensembles-science;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/geveh/IceDamFailures;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/geveh/ReportingBias;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/hallerp/dyslexia-seqmod;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/heyhen/funNCion;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more; -https://github.com/hkraemer/PECUZAL_python;TRUE;TRUE;FALSE;TRUE;FALSE;3;up;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/hpi-sam/minimum-wage-rl;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/hydrogo/LHMP;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/hydrogo/rainnet;TRUE;TRUE;FALSE;TRUE;FALSE;3;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/hydrogo/rainymotion;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more; -https://github.com/jgontrum/uuparser-with-attention;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/jhilaire/ssawosacarb;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more; -https://github.com/juliusgarbe/pism-debm-simple;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/katjakon/Coreference-Resolution;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/KatrinSch/msc-thesis-call-detection;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/linusha/twitter-sentiment-2020-election;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/maxifischer/gensim-MCC;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/mittelmark/snha;TRUE;TRUE;TRUE;FALSE;FALSE;3;up;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/mmrabe/hypr;TRUE;TRUE;TRUE;TRUE;FALSE;4;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;some; -https://github.com/paulrozdeba/varanneal;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/peldszus/arg-microtexts;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/peldszus/emnlp2015;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/peldszus/evidencegraph;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/PFischbeck/cn-noise-experiments;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/potassco/benchmark-tool;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;TRUE;FALSE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/potassco/clingo-lpx;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;C++;user;;;more; -https://github.com/potassco/clingo-xor;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;C++;user;;;more; -https://github.com/potassco/clingoLP;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/potassco/ginkgo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;most; -https://github.com/resfahani/SparseTFR;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/resfahani/SWDCI;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rknaebel/bbc-discourse;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/rokcestnik/oscillator_snap;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/Rullec/argus-win10;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;some; -https://github.com/sarahkiener/compound-sensitivity;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/susuhahnml/asp-game-strategies;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/TamaraAtanasoska/AMR_ArgumentSimilarity;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/tasmi/SnowmeltTracking;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/tasnimul-unipotsdam/EuroSAT;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/tasnimul-unipotsdam/ms_thesis;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/TillF/ssc_prediction;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more; -https://github.com/tzwenn/myLambda;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;TRUE;FALSE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/University-of-Potsdam-MM/cff2pages;TRUE;TRUE;TRUE;TRUE;FALSE;4;up;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/UP-macroecology/EBBA_Niche_vs_Range_shifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/UP-macroecology/Malchow_DemogEnv_2022;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/UP-macroecology/Malchow_IBMcalibration_2023;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/UP-macroecology/ODMAP;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/UP-RS-ESP/TopoMetricUncertainty;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/vasishth/MetaAnalysisJaegerEngelmannVasishth2017;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;none; -https://github.com/vasishth/NicenboimVasishthPart2;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/vasishth/StanJAGSexamples;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/vasishth/uncertainty;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/vasishth/VasishthNicenboimPart1;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some; -https://github.com/vasishth/VNEBTiCS2019;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some; -https://github.com/xarxaxdev/gans_blanc;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/XiaoxiangGuanGFZ/GR4J;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/XiaoxiangGuanGFZ/KNN_MOF_CPs;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/XiaoxiangGuanGFZ/RCCC-WBM;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/yadavhimanshu059/crossing_constraints_baselines;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/yadavhimanshu059/Hindi_DS_to_PS_Conversion;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/yadavhimanshu059/Hindi_DS_to_PS_Conversion_v2;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/yadavhimanshu059/LV05;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/YanaPalacheva/lyrics-generation;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/andrewdolman/Maehrlein_et_al_length_mass_data;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/andrewdolman/phytotraitr;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/EarthSystemDiagnostics/hamstr;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/EarthSystemDiagnostics/hamstrbacon;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/EarthSystemDiagnostics/optimalcores;TRUE;TRUE;FALSE;TRUE;FALSE;3;awi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/EarthSystemDiagnostics/proxysnr;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/EarthSystemDiagnostics/psem;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/EarthSystemDiagnostics/sedproxy;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/EarthSystemDiagnostics/simproxyage;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/GPawi/LANDO;TRUE;TRUE;FALSE;TRUE;FALSE;3;awi;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most; -https://github.com/slisovski/Bauer_et_al.-2018-JApplEcol;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;more; -https://github.com/slisovski/invMovement;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most; -https://github.com/slisovski/Lisovski-et-al.-2017-Oikos;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/slisovski/Optimal-migration-along-the-Indo-European-Flyway;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most; -https://github.com/slisovski/SGAT_calibration_movement;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/slisovski/van-Gils-et-al.-2016-Science;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some; -https://github.com/twollnik/YETI;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/Aaronzinhoo/SingleShotDetector-TF;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/aksub99/U-Net-Pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/calclavia/DeepJ;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/calclavia/NOS;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/calclavia/Performer-Pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/calclavia/story-generation;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/calclavia/tal-asrd;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/danijar/crafter;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/danijar/diamond_env;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/danijar/dreamer;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/danijar/dreamerv2;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/danijar/dreamerv3;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;1;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/danijar/elements;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;1;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/danijar/embodied;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/danijar/imptools;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;FALSE;FALSE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/danijar/layered;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;some; -https://github.com/erksch/fnet-pytorch;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/ferbsx/Fungal-DeePaC;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some; -https://github.com/gvanrossum/old-demos;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/HaidYi/cvxbiclustr;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;C++;user;;;most; -https://github.com/HaidYi/DASC;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more; -https://github.com/hdnl/sparse-bert-ner;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/jaSunny/MA-enriched-Health-Data;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none; -https://github.com/Lando-L/ocd-detection;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/levjj/wahlomat-visualization;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/linusha/twitter-sentiment-2020-election;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/m0e33/REST-bot;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some; -https://github.com/maxifischer/gensim-MCC;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/mdickinson/polyhedron;TRUE;TRUE;FALSE;TRUE;FALSE;3;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most; -https://github.com/nicolas-alder/difflogictest;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/PFischbeck/cn-noise-experiments;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none; -https://github.com/prithviraj-maurya/mapreduce-based-machine-learning;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/SanJSp/FCMFromSudbueBasedPatternExtractor;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/timgarrels/LazyFox;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;C++;user;;;more; -https://github.com/Tobias314/blainder;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none; -https://github.com/witsyke/thesis;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more; -https://github.com/Open-Systems-Pharmacology/R-Toolbox;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;more; -https://github.com/Open-Systems-Pharmacology/DCI;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;org;open_systems_pharmacology;;none; -https://github.com/Open-Systems-Pharmacology/OSPSuite.FuncParser;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;C++;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;C++;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModelSolverBase;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Digoxin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/SGLT2i-hyperfiltration-model;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Gene-Expression-Databases;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;more; -https://github.com/Open-Systems-Pharmacology/OSPSuite-R;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/TLF-Library;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Evaluation-plan-template;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/OSPSuite.ReportingEngine;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;more; -https://github.com/Open-Systems-Pharmacology/Database-for-observed-data;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none; -https://github.com/Open-Systems-Pharmacology/tracelib;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Incretins-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Inhalation-model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/IVIVC-with-particle-dissolution-module-in-OSP;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;none; -https://github.com/Open-Systems-Pharmacology/OSPSuite.ParameterIdentification;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Propofol-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_UGT1A1_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_UGT1A9_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/OSPSuite.RUtils;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;1;research;TRUE;FALSE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;more; -https://github.com/Open-Systems-Pharmacology/Thyroid-Hormones-PB-QSP-Model;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;none; -https://github.com/Open-Systems-Pharmacology/dAb2-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Inulin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/MEDI524-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/MEDI524YTE-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/CDA1-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/BAY794620-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most; -https://github.com/Open-Systems-Pharmacology/Qualification-CKD;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none; -https://github.com/Open-Systems-Pharmacology/Tefibazumab-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none; -https://github.com/Open-Systems-Pharmacology/7E3-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none; -https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_P-gp_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none; -https://github.com/aeye-lab/pymovements;TRUE;TRUE;TRUE;FALSE;FALSE;3;up;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;TRUE;FALSE;Python;org;aeya;;none; -https://github.com/aeye-lab/etra-reading-comprehension;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;org;aeya;;none; -https://github.com/aeye-lab/ecml-ADHD;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;org;aeya;;none; -https://github.com/aeye-lab/Eyettention;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;aeya;;none; -https://github.com/potassco/clingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;2;research;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/clasp;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/ginkgo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/plasp;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/clingcon;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/libpotassco;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/clingoLP;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;potassco;;none; -https://github.com/potassco/clingo-dl;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/asprin;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/coala;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/acclingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/planner;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/aspcud;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/qasp2qbf;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/xorro;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;org;potassco;;none; -https://github.com/potassco/clorm;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;Python;org;potassco;;none; -https://github.com/potassco/train-scheduling-with-clingo-dl;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/eclingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;travis;FALSE;TRUE;Python;org;potassco;;none; -https://github.com/potassco/eclingo-prototype;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/teaspoon;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;org;potassco;;none; -https://github.com/potassco/train-scheduling-with-hybrid-asp;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/tefoli;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/asp-date-lib;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;potassco;;none; -https://github.com/potassco/xls2asp;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;potassco;;none; -https://github.com/potassco/aspic-legacy;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/flatzingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;potassco;;none; -https://github.com/potassco/clingomil;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none; -https://github.com/potassco/clingo-lpx;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/clingraph;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;potassco;;none; -https://github.com/potassco/mapf-subgraph-system;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;C++;org;potassco;;none; -https://github.com/potassco/clingo-xor;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none; -https://github.com/potassco/plingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;potassco;;none; -https://github.com/UP-macroecology/ODMAP;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;macroecology;;none; -https://github.com/UP-macroecology/Malchow_DemogEnv_2022;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;macroecology;;none; -https://github.com/UP-macroecology/Malchow_IBMcalibration_2022;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;macroecology;;none; -https://github.com/UP-macroecology/EBBA_Niche_vs_Range_shifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;macroecology;;none; -https://github.com/krr-up/robot-scheduling-encodings;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;krr;;none; -https://github.com/krr-up/asp-dse;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;krr;;none; -https://github.com/krr-up/mapf-instance-generator;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;krr;;none; -https://github.com/krr-up/python-project-template;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;krr;;none; -https://github.com/krr-up/renopro;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;krr;;none; -https://github.com/discourse-lab/pocores;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;discourse-lab;;none; -https://github.com/discourse-lab/DiscourseSegmenter;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;org;discourse-lab;;none; -https://github.com/UP-RS-ESP/addem;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/SnowmeltTracking;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/ChanGeom;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/PC_geomorph_roughness;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/TanDEM-SRTM-dh;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/river-clusters;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/TopoMetricUncertainty;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/GNSS-Correction-RTKLIB;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/PebbleCounts;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/HillslopeAsymmetry;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/laspy-waveform;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/PebbleCounts-Application;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/DEM-Consistency-Metrics;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/UP-RS-ESP/PlanetScope_landslide_tracking;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;;;;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none; -https://github.com/hpi-sam/minimum-wage-rl;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;system_analysis_and_modeling_group;;none; -https://github.com/hpi-sam/HT_WithinBetweenGroups;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;system_analysis_and_modeling_group;;none; -https://github.com/hpi-sam/Safe-RL-4-SAS;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;system_analysis_and_modeling_group;;none; -https://github.com/bptlab/fiber2xes;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;business_process_technology;;none; -https://github.com/bptlab/odea-light;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;business_process_technology;;none; -https://github.com/bptlab/mimic-log-extraction;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;TRUE;FALSE;Python;org;business_process_technology;;none; -https://github.com/hpi-swa-lab/polyglot-adapters;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;software_architecture_group;;none; -https://github.com/hpi-swa-lab/graalpython;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;software_architecture_group;;none; -https://github.com/SemanticMultimedia/locopod;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;semantic_multimedia_research_group;;none; -https://github.com/SemanticMultimedia/tlr;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;Python;org;semantic_multimedia_research_group;;none; -https://github.com/Museum-Barberini/twitterscraper;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;org;museum_barberini;;none; -https://github.com/Museum-Barberini/Barberini-Analytics;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;museum_barberini;;none; -https://github.com/Museum-Barberini/twint;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;TRUE;travis;FALSE;FALSE;Python;org;museum_barberini;;none; -https://github.com/pik-copan/pycopancore;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;copan;;none; -https://github.com/pik-copan/pycopanbehave;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;copan;;none; -https://github.com/pik-copan/pycopanpbcc;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;copan;;none; -https://github.com/pik-copan/pyregimeshifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;copan;;none; -https://github.com/pik-copan/pytippinginteractions;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;copan;;none; -https://github.com/pik-piam/madrat;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/magclass;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mip;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/magpie4;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/gdx;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/lusweave;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/magpiesets;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/luscale;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/goxygen;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/shinyresults;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/citation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/demystas;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/remulator;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/remind;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/luplot;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/trafficlight;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrvalidation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/regressionworlddata;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/lpjclass;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/quitte;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/limes;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/rmndt;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mstools;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/edgeTrpLib;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrcommons;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrremind;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrfeed;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrland;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrsoil;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/lucode2;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/gms;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrmagpie;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/edgeTransport;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrwater;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrtutorial;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/MAgPIENCGains;TRUE;FALSE;FALSE;TRUE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/remind2;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/piamModelTests;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrvalidnitrogen;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/GDPuc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrfish;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrwaste;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/mrdrivers;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/piktests;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mredgebuildings;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mredgetransport;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/m4fsdp;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrdieter;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/blackmagicc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/rOpenscmRunner;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/r2databus;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/rfp;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/piamInterfaces;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/piamenv;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrwaterplots;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/remindPypsa;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none; -https://github.com/pik-piam/mrdownscale;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/brick;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-piam/mrfactors;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none; -https://github.com/pik-gane/tricl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;TRUE;travis;FALSE;FALSE;C++;org;pik-gane;;none; -https://github.com/pik-gane/decision-transformer-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;pik-gane;;none; -https://github.com/pik-gane/ai-safety-gridworlds-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;pik-gane;;none; -https://github.com/pik-gane/stable-baselines3-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;pik-gane;;none; -https://github.com/pik-gane/stable-baselines3-contrib-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;org;pik-gane;;none; -https://github.com/pik-gane/alpaca_farm-collective;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;Python;org;pik-gane;;none; -https://github.com/PIK-LPJmL/LPJmLmdi;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;LPJmL_group;;none; -https://github.com/PIK-LPJmL/lpjmlkit;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;LPJmL_group;;none; -https://github.com/PIK-LPJmL/LandInG;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;org;LPJmL_group;;none; -https://github.com/GFZ/spechomo;TRUE;TRUE;TRUE;TRUE;FALSE;4;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;geosciences_gfz;;none; -https://github.com/GFZ/arosics;TRUE;TRUE;TRUE;TRUE;FALSE;4;helmholz_center-gfz_potsdam;1;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;org;geosciences_gfz;;none; -https://github.com/GFZ/enpt;TRUE;TRUE;TRUE;TRUE;FALSE;4;helmholz_center-gfz_potsdam;2;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;org;geosciences_gfz;;none; -https://github.com/GFZ/LocalPLSR;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;geosciences_gfz;;none; -https://github.com/GFZ-Centre-for-Early-Warning/REM_satex_plugin;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;center_for_early_warning_gfz;;none; -https://github.com/fastscape-lem/fastscapelib;TRUE;TRUE;FALSE;TRUE;FALSE;3;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;C++;org;fastscape_lem;;none; -https://github.com/fastscape-lem/fastscape;TRUE;TRUE;FALSE;TRUE;FALSE;3;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;fastscape_lem;;none; -https://github.com/fastscape-lem/flow-routing-depressions;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;TRUE;C++;org;fastscape_lem;;none; -https://github.com/fastscape-lem/gilbert-board;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;fastscape_lem;;none; -https://github.com/fastscape-lem/ipyfastscape;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;fastscape_lem;;none; -https://github.com/fastscape-lem/fastscape-litho;TRUE;TRUE;FALSE;TRUE;FALSE;3;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;fastscape_lem;;none; -https://github.com/fastscape-lem/VariableSPIM;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;fastscape_lem;;none; -https://github.com/telota/rasmipy;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;telota;;none; -https://github.com/telota/existance;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;telota;;none; -https://github.com/zentrum-lexikographie/IMSnPars;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;;none; -https://github.com/aipescience/uws-client;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;org;aip_e-science;;none; -https://github.com/aipescience/queryparser;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;org;aip_e-science;;none; -https://github.com/EarthSystemDiagnostics/hamstr;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/sedproxy;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/simproxyage;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/proxysnr;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/ecustools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/MonsoonMinimalModel;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/HolSNR;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/cpt-picarr;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/optimalcores;TRUE;TRUE;FALSE;TRUE;FALSE;3;awi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/exNGT;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/paleospec;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/climproxyrecords;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/pfields;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/psem;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/geostools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/grfxtools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/stattools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/prxytools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/ncdftools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/laepple22-commentbova;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/hamstrbacon;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none; -https://github.com/EarthSystemDiagnostics/topoExtract;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none; \ No newline at end of file +html_url;howfairis_repository;howfairis_license;howfairis_registry;howfairis_citation;howfairis_checklist;fairscore;organisation;dlr_soft_class;project;installation_instruction;project_information;usage_guide;test_folder;requirements_explicit;continuous_integration;ci_tool;add_lint_rule;add_test_rule;language;type;research_group;comment_percentage;comment_at_start +https://github.com/Open-Systems-Pharmacology/Suite;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Rich Text Format;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/PK-Sim;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;TRUE;TRUE;TRUE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/MoBi;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Rich Text Format;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.BDDHelper;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.Utility;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.Serializer;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding.DevExpress;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.TeXReporting;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES.282;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/build-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Ruby;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.Core;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/InstallationValidator;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;TRUE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Glucose-Insulin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Reporting-Engine;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox-Core;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;FALSE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Pregnancy-Models;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Exemplary-Protein-Models;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Alfentanil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Midazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Hormonal-Contraceptive-Agents-Datasets;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/QualificationRunner;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Theophylline-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Theophylline-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Theophylline-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Triazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Alprazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/IFN-alpha;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/markdown-joiner;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Qualification-text-modules;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Skin-permeation-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP3A4;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Repaglinide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Pioglitazone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Amikacin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Vancomycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Pregabalin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Sufentanil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Montelukast-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Paclitaxel-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_GFR_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP3A4_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP2C8_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Dapagliflozin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Raltegravir-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Atazanavir-Raltegravir-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Atazanavir-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Mefenamic_acid-Dapagliflozin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Oxycodone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/rClr;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;1;;TRUE;TRUE;TRUE;TRUE;;;;;;C#;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Qualification-DDI-UGT;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Mefenamic-acid-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Idarucizumab-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Dabigatran-Reversal-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clarithromycin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Nicotine-Cotinine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Efavirenz-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Efavirenz-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Efavirenz-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSP-Qualification-Reports;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/OSP-PBPK-Model-Library;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Verapamil-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Verapamil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Metformin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Metformin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Buprenorphine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Amoxicillin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fentanyl-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Lung-absorption-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Trimethoprim-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Trimethoprim-Metformin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Trimethoprim-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Trimethoprim-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Trimethoprim-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Levonorgestrel;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Verapamil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Furosemide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Probenecid-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Probenecid-Furosemide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Probenecid-Rifampicin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Verapamil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Mexiletine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Moclobemide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Omeprazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/S-Mephenytoin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Tizanidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Metoprolol-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Mexiletine-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Mexiletine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Mexiletine-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Omeprazole-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Moclobemide-Omeprazole-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-S-mephenytoin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP1A2;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP2C19;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Quetiapine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Aripiprazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Bupropion-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Voriconazole-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Carbamazepine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Efavirenz-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cabozantinib-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Finerenone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Alfentanil-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Amikacin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Raltegravir-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Montelukast-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Sufentanil-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Vancomycin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluconazole-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Fluconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Propofol-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Probenecid-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rosuvastatin-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Olanzapine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Lactation-PBPK-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Dextromethorphan-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Cimetidine-Carbamazepine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;1;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Carbamazepine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Montelukast-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Clopidogrel-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Omeprazole-Clopidogrel-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Clopidogrel-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Creatinine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Creatinine-drug-biomaker-interactions;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-drug-biomaker-interactions;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Sildenafil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Felodipine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Voriconazole-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Birds-PBK-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Erythromycin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Digoxin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Warfarin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Ketoconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Quinidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Quinidine-DDGI-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Tacrolimus-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Itraconazole-Tacrolimus-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Voriconazole-Tacrolimus-DDGI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/Open-Systems-Pharmacology/Rifampicin-Tacrolimus-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;; +https://github.com/aeye-lab/etra-fairness;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;aeya;; +https://github.com/aeye-lab/sp-eyegan;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;aeya;; +https://github.com/potassco/clingo-rs;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Rust;org;potassco;; +https://github.com/potassco/anthem;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Rust;org;potassco;; +https://github.com/potassco/clingo-vs-telingo-planning;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;org;potassco;; +https://github.com/potassco/clingo-cmake-example;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;potassco;; +https://github.com/potassco/flatzinc;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;; +https://github.com/potassco/foliage;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;; +https://github.com/potassco/fzn2lp;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;; +https://github.com/potassco/clingo-sys;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;; +https://github.com/potassco/clingo-server;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;; +https://github.com/krr-up/notebook;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;krr;; +https://github.com/krr-up/action_juggling_robot;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;krr;; +https://github.com/discourse-lab/dimlex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XSLT;org;discourse-lab;; +https://github.com/discourse-lab/GraPat;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;discourse-lab;; +https://github.com/discourse-lab/DisCoDict;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;; +https://github.com/discourse-lab/Connective-Lex.info;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;discourse-lab;; +https://github.com/discourse-lab/en_dimlex;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;; +https://github.com/discourse-lab/arg-microtexts-part2;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;; +https://github.com/discourse-lab/turkish_connective_lexicon;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;; +https://github.com/discourse-lab/naijalex;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;; +https://github.com/cslm-lab/cognitive_skills;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;org;cslm-lab;; +https://github.com/cslm-lab/reliability_project;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;cslm-lab;; +https://github.com/UP-RS-ESP/DEM-KZP;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;org;rs-esp;; +https://github.com/UP-RS-ESP/DEM_fourier_noise;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;rs-esp;; +https://github.com/UP-RS-ESP/mfdrouting;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;TRUE;FALSE;;;;;;C;org;rs-esp;; +https://github.com/UP-RS-ESP/FacetFlowNetwork;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;rs-esp;; +https://github.com/UP-RS-ESP/LidarPC-KDTree;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;rs-esp;; +https://github.com/UP-RS-ESP/MoraineAge_GaussianMixture;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;rs-esp;; +https://github.com/UP-RS-ESP/msc-rsiv;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Ruby;org;rs-esp;; +https://github.com/UP-RS-ESP/ICESat-2_SVDA;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;rs-esp;; +https://github.com/UP-RS-ESP/Ames-Stereo-Pipeline-SPOT;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;;;;FALSE;;;;;;Shell;org;rs-esp;; +https://github.com/hpi-sam/GNN-SpaceTimeGraphs;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/MachineLearningControl;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/dps.training_shared_files;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Dart;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/RL_4_Feedback_Control;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/robust-marl4sas;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/digital-fuesim-manv;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/Spatio-Temporal-Graphs;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/MARL-TransferLearning;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/sct-validation-framework;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;system_analysis_and_modeling_group;; +https://github.com/hpi-sam/digital-fuesim-manv-public-test-scenarios;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;system_analysis_and_modeling_group;; +https://github.com/bptlab/chimera;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;; +https://github.com/bptlab/processeditor;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Java;org;business_process_technology;; +https://github.com/bptlab/JUserManagement;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;; +https://github.com/bptlab/gryphon;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;2;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;org;business_process_technology;; +https://github.com/bptlab/Unicorn;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Java;org;business_process_technology;; +https://github.com/bptlab/argos-backend;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;; +https://github.com/bptlab/scylla;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;org;business_process_technology;; +https://github.com/bptlab/scylla-ui;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;business_process_technology;; +https://github.com/bptlab/chor-js;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;business_process_technology;; +https://github.com/bptlab/chor-js-demo;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;; +https://github.com/bptlab/caz;TRUE;FALSE;TRUE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;; +https://github.com/bptlab/cepta;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;; +https://github.com/bptlab/correlation-analysis;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;; +https://github.com/bptlab/subscription-point-visualizer;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;JavaScript;org;business_process_technology;; +https://github.com/bptlab/fcm2cpn;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;; +https://github.com/bptlab/blockchain-deferred-choice;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;; +https://github.com/bptlab/ark_automate;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;; +https://github.com/bptlab/bpmn-js-properties-panel;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;;org;business_process_technology;; +https://github.com/bptlab/fCM-query-generator;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Vue;org;business_process_technology;; +https://github.com/bptlab/rpa-dmn-operation;TRUE;TRUE;FALSE;TRUE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C#;org;business_process_technology;; +https://github.com/bptlab/fCM-design-support;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;; +https://github.com/bptlab/holistic-process-platform;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Vue;org;business_process_technology;; +https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;business_process_technology;; +https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;business_process_technology;; +https://github.com/bptlab/model-driven-RPA;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;org;business_process_technology;; +https://github.com/bptlab/MdRPA_Library;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;RobotFramework;org;business_process_technology;; +https://github.com/hpi-swa-lab/Nemo;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/GazeTracker;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;software_architecture_group;; +https://github.com/hpi-swa-lab/home-desktop-system;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;StringTemplate;org;software_architecture_group;; +https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/tools-interactive-simulations;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/Rack;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/BP2019RH1;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;software_architecture_group;; +https://github.com/hpi-swa-lab/squeak-inbox-talk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/squeak-spelling-services;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/squeak-tracedebugger;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/sb-terminal;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/ts-edit-action-detector;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Kotlin;org;software_architecture_group;; +https://github.com/hpi-swa-lab/pivr;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;; +https://github.com/hpi-swa-lab/native-image-visualizations;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;software_architecture_group;; +https://github.com/hpi-swa-lab/godot-pronto;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;GDScript;org;software_architecture_group;; +https://github.com/SemanticMultimedia/JungGraphMeasures;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;semantic_multimedia_research_group;; +https://github.com/SemanticMultimedia/COAL;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;semantic_multimedia_research_group;; +https://github.com/pik-copan/pyunicorn;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;Jupyter Notebook;org;copan;; +https://github.com/pik-copan/MayaSim;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;org;copan;; +https://github.com/pik-copan/pycascades;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;copan;; +https://github.com/pik-copan/pydrf;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;copan;; +https://github.com/pik-piam/mrfable;TRUE;TRUE;TRUE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;org;pik-piam;; +https://github.com/pik-piam/modelstats;TRUE;FALSE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;FALSE;TRUE;;;;;;HTML;org;pik-piam;; +https://github.com/remindmodel/remind;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;GAMS;org;remind;; +https://github.com/pik-gane/vodle;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;pik-gane;; +https://github.com/pik-gane/pymdptoolbox-satisfia;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;pik-gane;; +https://github.com/pik-gane/avoiding-side-effects-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;; +https://github.com/pik-gane/train-procgen-pytorch-satisfia;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;pik-gane;; +https://github.com/pik-gane/RL4LMs_RLCHF;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;; +https://github.com/pik-gane/webppl-agents-satisfia;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;pik-gane;; +https://github.com/pik-gane/alpaca_eval-collective;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;; +https://github.com/pik-gane/Minigrid-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;FALSE;TRUE;;;;;;;org;pik-gane;; +https://github.com/GFZ/eGSIM;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;geosciences_gfz;; +https://github.com/GFZ/grunt-css-url-rewrite;TRUE;FALSE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;geosciences_gfz;; +https://github.com/GFZ-Centre-for-Early-Warning/REM_optimized_routing;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;QML;org;center_for_early_warning_gfz;; +https://github.com/GFZ-Centre-for-Early-Warning/REM_RRVS;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;center_for_early_warning_gfz;; +https://github.com/GFZ-Centre-for-Early-Warning/REM_DEA;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;center_for_early_warning_gfz;; +https://github.com/GFZ-Centre-for-Early-Warning/Bottom-up-Exposure-Modelling;TRUE;FALSE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;; +https://github.com/GFZ-Centre-for-Early-Warning/EMCA-Exposure;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;center_for_early_warning_gfz;; +https://github.com/GFZ-Centre-for-Early-Warning/assetmaster;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;; +https://github.com/GFZ-Centre-for-Early-Warning/modelprop;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;; +https://github.com/fastscape-lem/fastscape-demo;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;; +https://github.com/fastscape-lem/fastscapelib-fortran;TRUE;TRUE;FALSE;TRUE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Fortran;org;fastscape_lem;; +https://github.com/fastscape-lem/orographic-precipitation;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;; +https://github.com/fastscape-lem/s2s-future-dragonstone;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;; +https://github.com/fastscape-lem/workshop-gfz-2021-01;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;; +https://github.com/telota/rasmify;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;PHP;org;telota;; +https://github.com/telota/rasmify.js;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;telota;; +https://github.com/telota/exist;TRUE;TRUE;TRUE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Java;org;telota;; +https://github.com/telota/exist-documentation;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XQuery;org;telota;; +https://github.com/telota/bts;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;telota;; +https://github.com/telota/quoteSalute;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;org;telota;; +https://github.com/telota/kor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;telota;; +https://github.com/telota/researchspace;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;TypeScript;org;telota;; +https://github.com/telota/lebenswelten-lehndorff;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;; +https://github.com/telota/jean_paul_briefe;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;; +https://github.com/telota/CIL-ACE;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;org;telota;; +https://github.com/telota/corpus-nummorum-editor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Vue;org;telota;; +https://github.com/telota/PIR;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;FALSE;TRUE;;;;;;PHP;org;telota;; +https://github.com/telota/edition-humboldt-digital;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;; +https://github.com/telota/LinkEdLeibniz-data;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;; +https://github.com/zentrum-lexikographie/eval-de-lemma;TRUE;TRUE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;; +https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;org;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;; +https://github.com/aipescience/daiquiri;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;PHP;org;aip_e-science;; +https://github.com/ATB-Potsdam/IDM;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;C#;org;agricultural_engineering_and_bioeconomy;; +https://github.com/ATB-Potsdam/monica;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;agricultural_engineering_and_bioeconomy;; +https://github.com/ATB-Potsdam/N_opt_economic;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;;;;FALSE;;;;;;Jupyter Notebook;org;agricultural_engineering_and_bioeconomy;; +https://github.com/EarthSystemDiagnostics/TrenchR;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;TRUE;TRUE;FALSE;TRUE;;;;;;HTML;org;earth_system_diagnostics;; +https://github.com/EarthSystemDiagnostics/Dolman14C_2021;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;earth_system_diagnostics;; +https://github.com/adrpar/densfield;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C;user;;; +https://github.com/aipescience/daiquiri;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;PHP;user;;; +https://github.com/aipescience/mysql_healpix;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;TRUE;;;;;;C;user;;; +https://github.com/aipescience/spider-docker;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;FALSE;FALSE;FALSE;;;;;;PLpgSQL;user;;; +https://github.com/ATB-Potsdam/IDM;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;C#;user;;; +https://github.com/dshoman/MKN110;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Ruby;user;;; +https://github.com/ekaterinailin/AltaiPony;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;2;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/dustycrocodile;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/ekaterinailin/flares-in-clusters-ii-draft;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/ekaterinailin/flares-in-clusters-with-k2-ii;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/flares-q-learning;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/flaring-spi;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/flaring-spi-paper;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/ekaterinailin/GaiaK2PSF;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/k2-panstarrs-sampedro;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/multiperiod-flares-draft;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/ekaterinailin/Orbital_Flare_Declustering;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/SiberianPine;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/bootstrapped_mds;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/fedenhance;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/nldr_visual_recognition;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/polymorphisms_statistic_analysis;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/sudo_rm_rf;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/unsup_speech_enh_adaptation;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/filipinascimento/bigscience;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/filipinascimento/bl-conmat2network;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;; +https://github.com/filipinascimento/bl-network-template-matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;; +https://github.com/filipinascimento/CVAccessibility;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;; +https://github.com/filipinascimento/CVRandomWalks;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;; +https://github.com/filipinascimento/CVSymmetry;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;C;user;;; +https://github.com/filipinascimento/cxnetwork;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C;user;;; +https://github.com/filipinascimento/cxnetworks-docker;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;; +https://github.com/filipinascimento/cxrandomwalk;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;TRUE;;;;;;C;user;;; +https://github.com/filipinascimento/helios-network;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;FALSE;FALSE;TRUE;;;;;;C;user;;; +https://github.com/filipinascimento/helios-web;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;user;;; +https://github.com/filipinascimento/malleability;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;; +https://github.com/filipinascimento/metabonet;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;TRUE;FALSE;;;;;;JavaScript;user;;; +https://github.com/filipinascimento/openalexnet;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/filipinascimento/teleconnectionsgranger;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/filipinascimento/workshop-netviz;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/harmening/HArtMuT;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Julia;user;;; +https://github.com/harmening/MRIsegmentation;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;MATLAB;user;;; +https://github.com/harmening/phrase-frequency-counter;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;; +https://github.com/hosilva/physrev_mplstyle;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/jochenklar/evora;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;FORTRAN;user;;; +https://github.com/jochenklar/rdmo-advanced;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;; +https://github.com/kristinriebe/cosmosim-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Shell;user;;; +https://github.com/kristinriebe/cosmosim-uws-notebook;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/kristinriebe/provenance-cosmosim;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;user;;; +https://github.com/mjziebarth/REHEATFUNQ;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/msdemlei/dig-um-fi-init;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/msdemlei/softid;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/wbarfuss/DetRL;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wbarfuss/intrinsic-fluctuations-cooperation;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Mathematica;user;;; +https://github.com/wbarfuss/MARLDynamics;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wbarfuss/netlogo-exploit;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;; +https://github.com/wbarfuss/Paradigms;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wbarfuss/POLD;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wbarfuss/pyCRLD;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/09tangriro/WHEELS;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Java;user;;; +https://github.com/aadeshnpn/OSDN;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/abdel/pathology-lab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;PHP;user;;; +https://github.com/abhimishr/dynamic_forestry_GitHub;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;; +https://github.com/abhimishr/LUMEN;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;GAMS;user;;; +https://github.com/abhimishr/magpie_forestry;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;; +https://github.com/Akhilez/DisCease;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/aklein1995/Pong_withDRL;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/AlexPasqua/DM-project;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/AlexPasqua/Sum-Product-Networks;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/amnmalik/PhdSummary;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/amnmalik/PhDThesis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/amnmalik/reducingstrandedassets;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/amy12xx/ml_notes_and_reports;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/andersthuesen/bachelor-project;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/andersthuesen/ChromaAI;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/araffin/es-with-search-path;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;; +https://github.com/araffin/graph-annotation-tool;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/araffin/rl-handson-rlvs21;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/aseembits93/VS_CNN;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;; +https://github.com/bs538/PlanetImage;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/Butanium/monte-carlo-tree-search-TSP;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;OCaml;user;;; +https://github.com/camillebelmin/achieving-universal-energy-access;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/cchrisgong/dieter-coupling-remind;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;GAMS;user;;; +https://github.com/cchrisgong/remind-coupling-dieter;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;; +https://github.com/chroetz/PaperQuadRate19;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/chroetz/PaperStrong22;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/cyprienc/binary-Huffman-algorithm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/danielhuppmann/binary_equilibrium;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Assembly;user;;; +https://github.com/danielhuppmann/climate-risks-academy-2021;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/danielhuppmann/iea-netzero2050-datawrangler;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/dbantje/internalization;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/dfilan/clusterability_in_neural_networks;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/enosair/bentkus_conf_seq;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/enosair/gdp-edgeworth;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/enosair/lightcurve-download;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Shell;user;;; +https://github.com/enosair/tensor-subspace-norm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Matlab;user;;; +https://github.com/ernestum/clestus;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/ernestum/GeodesicSphere;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;OpenSCAD;user;;; +https://github.com/etzinis/fedenhance;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/polymorphisms_statistic_analysis;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/sudo_rm_rf;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/etzinis/unsup_speech_enh_adaptation;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/FelicitasBeier/IrrigationPotentials;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/filipinascimento/bigscience;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/filipinascimento/bl-network-template-matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;; +https://github.com/filipinascimento/cxnetworks-docker;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;; +https://github.com/filipinascimento/malleability;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;; +https://github.com/filipinascimento/metabonet;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;TRUE;FALSE;;;;;;JavaScript;user;;; +https://github.com/filipinascimento/openalexnet;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/filipinascimento/teleconnectionsgranger;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/floringogianu/paper-notebooks;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/floringogianu/per-study;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;; +https://github.com/ftl-traveller/youtube-sentiment-analysis-opinion-mining;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/g-leech/masks_v_mandates;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/glmcdona/FoosRL;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;user;;; +https://github.com/glmcdona/Process-Dump;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;; +https://github.com/harmening/HArtMuT;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Julia;user;;; +https://github.com/harmening/MRIsegmentation;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;MATLAB;user;;; +https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;; +https://github.com/hkraemer/InterSpikeSpectra-Matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;TRUE;;;;;;MATLAB;user;;; +https://github.com/hkraemer/MCDTS.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Julia;user;;; +https://github.com/hkraemer/PECUZAL_Julia;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;; +https://github.com/hkraemer/PECUZAL_Matlab;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;; +https://github.com/honglu2875/weirdonetworks;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;; +https://github.com/JacobPfau/introspective-self-consistency;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;TRUE;;;;;;Jupyter Notebook;user;;; +https://github.com/jakobkolb/fMRI_FF;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;AGS Script;user;;; +https://github.com/jakobkolb/Master-Thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/jakobkolb/ml-covid-nowcasting;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/jakobkolb/pysave;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;; +https://github.com/jansteinhauser/masc;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;GAMS;user;;; +https://github.com/jbloomAus/ARENA_2.0-RLHF;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/JulesGM/DeepNeuro;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/JulesGM/eli5_retrieval_large_lm;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/juliusgarbe/modelling_sandbox;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/jvmncs/Contamination;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/jvmncs/DeepIDS;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/jvmncs/reinforcement-learning;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/kachayev/timely0;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Scala;user;;; +https://github.com/lcswillems/ai-mx-docs;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/lcswillems/MVA-RecVis-project;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ManifoldFR/point-process-rust;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;user;;; +https://github.com/matthiasmengel/fast_ant_sid;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Fortran;user;;; +https://github.com/maximilian-gelbrecht/ChaoticNDETools.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;; +https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;; +https://github.com/maximilian-gelbrecht/MCBB.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;; +https://github.com/Miffyli/sym;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/Miffyli/ToriLLE;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Lua;user;;; +https://github.com/mikapfl/gin_ansible_role;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;; +https://github.com/mikapfl/read_di_unfccc;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/mikapfl/unfccc_di_data;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Makefile;user;;; +https://github.com/mikewin-climsci/BGPvBGC;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/mjziebarth/REHEATFUNQ;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/mppalves/NetLogo_Bacterial_Infection_Model;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;NetLogo;user;;; +https://github.com/mppalves/PIK-projects;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Mathematica;user;;; +https://github.com/PhilippVerpoort/green-value-chains;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/pik-copan/MayaSim;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;; +https://github.com/pik-copan/pycascades;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/pik-copan/pydrf;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/pik-gane/vodle;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;user;;; +https://github.com/pik-piam/modelstats;TRUE;FALSE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;; +https://github.com/pik-piam/mrfable;TRUE;TRUE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;; +https://github.com/pseudo-rnd-thoughts/Elastic-Resource-Allocation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;; +https://github.com/pvjeetze/Heterogeneity-RootWaterUptake;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;; +https://github.com/PwnerHarry/CLIA;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/PwnerHarry/Stronger_GCN;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/qxcv/asnets;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;PDDL;user;;; +https://github.com/qxcv/comp2560;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;; +https://github.com/qxcv/structuredinference;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/rajammanabrolu/Automated-Story-Generation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/rajammanabrolu/CRD3-extended;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/remindmodel/remind;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;TRUE;TRUE;TRUE;TRUE;;;;;;GAMS;user;;; +https://github.com/Renato-Rodrigues/EU_2040_transformation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/rizar/actor-critic-public;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/rmiddelanis/sandy_paper;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/rockt/ChemSpot;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;; +https://github.com/rtaori/data_feedback;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/sawcordwell/MDPs.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;Julia;user;;; +https://github.com/ScheiklP/lap_gym;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/ScheiklP/sofa_godot;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;GDScript;user;;; +https://github.com/sgillen/fractal_mesh;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/sgillen/fractal_rl;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/sgillen/fractal_rl_scratch;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/sgillen/matlab_ars;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;; +https://github.com/simoninithomas/Baselines_icm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;; +https://github.com/simoninithomas/Policy_gradients_CartPole;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/simoninithomas/the_mayan_adventure;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;ShaderLab;user;;; +https://github.com/thejat/active-curricula-for-efficient-reinforcement-learning;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/thejat/dynamic-network-growth-models;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/thejat/facial-political-recognition;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/thejat/planout;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/thejat/profit-optimization-ride-sharing;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/thejat/supervised-learning-with-side-knowledge;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;; +https://github.com/thejat/Thompson-Sampling-for-a-Fatigue-aware-Online-Recommendation-System;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/Tiiiger/benchmark_llm_summarization;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/tobirohrer/gan-pretraining-ae;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/tobirohrer/reinforcement-learning-heat-pump;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ToBraun/RECFLOW;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ToBraun/RECLAC;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/tom-doerr/Intrinsic-Image-Popularity;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Shell;user;;; +https://github.com/tomMcGrath/feeding-behaviour;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/tomMcGrath/feeding_analysis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wbarfuss/DetRL;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wbarfuss/intrinsic-fluctuations-cooperation;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Mathematica;user;;; +https://github.com/wbarfuss/netlogo-exploit;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;; +https://github.com/wbarfuss/Paradigms;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wbarfuss/POLD;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wbarfuss/pyCRLD;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/YannDubs/Neural-Process-Family;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/YannDubs/RAW-Embedings;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/YannDubs/SSL-Risk-Decomposition;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/adbar/coronakorpus;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/adbar/flux-toolchain;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;Perl;user;;; +https://github.com/adbar/valency-oriented-chunker;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Perl;user;;; +https://github.com/ariporad/alfred-molar-mass-calculator;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/axellelecroq/digital-edition-bestiaire;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/duncdrum/cbdb-data;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/fgeorges/ml-invoker;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;TRUE;TRUE;;;;;;XQuery;user;;; +https://github.com/FrederikeNeuber/lewald-correspondence-metadata;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/FrederikeNeuber/stgd-prototype-edition;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/FrederikeNeuber/typoo;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/gremid/idrovora;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;TRUE;;;;;;Clojure;user;;; +https://github.com/gremid/ujwa;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Clojure;user;;; +https://github.com/helmuthb/experiment-design-mediaeval;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/jadolan/zoomable_space;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/janpieterk/gemeentekaart-core;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;PHP;user;;; +https://github.com/janpieterk/gemeentekaart-rest;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;PHP;user;;; +https://github.com/jcklie/hack-assembler;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Assembly;user;;; +https://github.com/jcklie/hanzi-website;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/jochenklar/rdmo-advanced;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;; +https://github.com/jochenklar/rdmo-basic;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;; +https://github.com/lcahlander/scxml-xq;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XQuery;user;;; +https://github.com/lguariento/og-h-am;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/lpodl/Izhikevich-Neurons;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/lpodl/Stein-Variational-Gradient-Descend;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/Rein3ke/2d-game-immersive-prototype;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C#;user;;; +https://github.com/Rein3ke/com.rein3ke.virtualtour.core;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;; +https://github.com/Rein3ke/VirtualMuseumTour;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;; +https://github.com/riccardodg/linguistic-tools-for-weblicht;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Java;user;;; +https://github.com/robcast/digilib;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;; +https://github.com/tboenig/ocrd_bbaw_pilotbibliothek;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/telota/archiv-editor;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;FALSE;FALSE;;;;;;Java;user;;; +https://github.com/telota/bbaw-schoell;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;TRUE;FALSE;;;;;;;user;;; +https://github.com/telota/ChronoTool;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;TRUE;FALSE;;;;;;HTML;user;;; +https://github.com/telota/CIL-ACE;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;user;;; +https://github.com/telota/corpus-nummorum-editor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Vue;user;;; +https://github.com/telota/edition-humboldt-digital;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/telota/jean_paul_briefe_ediarum;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;; +https://github.com/telota/LinkEdLeibniz-data;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/telota/PIR;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;user;;; +https://github.com/telota/quoteSalute;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;; +https://github.com/telota/wsp-forschungsaktivitaet;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/uiur/kanji_to_hanzi;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Ruby;user;;; +https://github.com/ulf1/study-370b;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ulf1/ulf1;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;TRUE;FALSE;;;;;;;user;;; +https://github.com/ulf1/vue-fit2box;TRUE;TRUE;TRUE;TRUE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/windauer/ws21-tp7-ws;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;XQuery;user;;; +https://github.com/xlhrld/retro-dict;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;user;;; +https://github.com/a-moi/political-argument-mining;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/Abdelwahab86/Water-polygons-photogrammetry;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/Adrian-Ziupka/ba-thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/aeye-lab/etra-fairness;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/aeye-lab/sp-eyegan;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/alecamcr/Immigration-RSE;TRUE;TRUE;FALSE;TRUE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/alisher-turubayev/dl-normalizing-flows;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/alisher-turubayev/trent-university-code;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C#;user;;; +https://github.com/alisher-turubayev/uni-potsdam-code;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/alsino/vmt-network;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/arne-cl/feng-hirst-rst-parser;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Shell;user;;; +https://github.com/AvitBhowmik/Poster-on-Spatial-Statistics-2015;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/AvitBhowmik/Presentation-at-SEFS9;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/bgroenks96/generative-downscaling;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/bgroenks96/normalizing-flows;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/BodoBookhagen/ICESat-2_SVDA;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/bptlab/scylla;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;; +https://github.com/braunfuss/thermalintertia;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;; +https://github.com/briemadu/codraw-icr-v1;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/briemadu/inc-eval-revisions;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/briemadu/scorekeeping;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ClemensKubach/bicycle-bell-sed-models;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ClemensKubach/vae-art-restoration;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/crpiceda/dynamictopography;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/danielrm84/DeepLearning_AnimalVocalizations;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/danielrm84/Netlogo_Map_Generator;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;; +https://github.com/danielrm84/PanModel33;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;; +https://github.com/danielrm84/Romero-Mujalli-et-al.-BMC-Evolutionary-Biology;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;; +https://github.com/delwarhub/Multimodal_Task_and_Feature_Attribution;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;; +https://github.com/delwarhub/Multimodal_Task_with_Prompting_Large_Language_Models;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/Diego-Dam/paper_co_creation_mobility_planning_germany;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/discourse-lab/dimlex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XSLT;user;;; +https://github.com/discourse-lab/DisCoDict;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/ekaterinailin/AltaiPony;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/flaring-spi;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/Orbital_Flare_Declustering;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/ekaterinailin/TESS_UCD_flares;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/flying-bear/thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/fpottbaecker/st-data-gen;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/geveh/GLOFdetection;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/geveh/GLOFsusceptibility;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;; +https://github.com/hkraemer/PECUZAL_Julia;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;; +https://github.com/hkraemer/PECUZAL_Matlab;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;TRUE;;;;;;HTML;user;;; +https://github.com/hydrogo/KALI;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/hydrogo/KALIv2;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/juliusgarbe/modelling_sandbox;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/krr-up/bibliography;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/linusha/bundesweiter-mietendeckel-visualisierung;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;; +https://github.com/maximilian-gelbrecht/MCBB.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;; +https://github.com/mcvidomi/MFI;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/peldszus/arg-microtexts-multilayer;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ActionScript;user;;; +https://github.com/peldszus/joty-rstparser-docker;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;; +https://github.com/PFischbeck/pygirgs;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/plauth/lib842;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;user;;; +https://github.com/potassco/clingo-vs-telingo-planning;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;user;;; +https://github.com/potassco/pddl-instances;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Common Lisp;user;;; +https://github.com/prassepaul/mlmed_transfer_learning;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/pschonev/deepanomaly4docs;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/resfahani/GMD;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/resfahani/GVM-Player;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/RoshanRane/Deviance_explained;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/RoshanRane/ML_for_IMAGEN;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/RoshanRane/PredNet-and-Predictive-Coding-A-Critical-Review;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/RoshanRane/segmentation-moving-MNIST;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/SemanticMultimedia/JungGraphMeasures;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;; +https://github.com/TillF/directional_CRNS;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/ToBraun/RECLAC;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/TScheffler/Connectives;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/TScheffler/UK_DiMLex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/University-of-Potsdam-MM/GRANT;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;; +https://github.com/UP-RS-ESP/DEM-KZP;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;; +https://github.com/UP-RS-ESP/LidarPC-KDTree;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/UP-RS-ESP/mfdrouting;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;; +https://github.com/vasishth/HubermanBreathing;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/vasishth/HusainEtAlJEMR2015;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Stan;user;;; +https://github.com/vasishth/manuscript_LogacevVasishth_CogSci_SMCM;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/vasishth/powerpose;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Stan;user;;; +https://github.com/warpaint97/plan-merging-project;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/wschwanghart/ncquantreg;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;; +https://github.com/XiaoxiangGuanGFZ/kNN_MOF_cp;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;; +https://github.com/YanaPalacheva/avoidance_study;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/YanaPalacheva/experiments_neuralcoref;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/yanweiser/Beyond-Task-Success-But-Bert;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;user;;; +https://github.com/zentrum-lexikographie/eval-de-lemma;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/EarthSystemDiagnostics/TrenchR;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;HTML;user;;; +https://github.com/GPawi/CarbStock21k;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/GPawi/LANDOnline;TRUE;TRUE;FALSE;TRUE;FALSE;;awi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;; +https://github.com/GPawi/MAYHEM;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/slisovski/23-143-D-INSPIRES-B;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/slisovski/BTGodwit_Alaska_SnowNDVI;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;;user;;; +https://github.com/slisovski/Inspires;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/slisovski/Lisovski-et-al.-2016-AmNat;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;; +https://github.com/abstraktor/multileveldebugging-QoppaS;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;; +https://github.com/aksub99/molecular-vae;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/arne-z/BachelorThesis;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;; +https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/bptlab/scylla;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;; +https://github.com/Buguemar/GRTC_GNNs;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/cenguix/Text2KGBench;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/chrisseaton/dfscala-benchmarks;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Scala;user;;; +https://github.com/chrisseaton/low-overhead-polling-ruby;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;; +https://github.com/christianwarmuth/explainable-predictive-process-monitoring-with-text;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/christianwarmuth/treatment-based-patient-discharge-classification;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/cosminbasca/ellipsedetector;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;; +https://github.com/danijar/daydreamer;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/florian-papsdorf/kip-company-acquisition;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;; +https://github.com/fmannhardt/pddp;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;; +https://github.com/HaidYi/admm-l1-2-logistic-regression;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;; +https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;; +https://github.com/hpi-swa-lab/home-desktop-system;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;; +https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;FALSE;FALSE;;;;;;StringTemplate;user;;; +https://github.com/hpi-swa-lab/squeak-inbox-talk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;; +https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;; +https://github.com/hpi-swa-lab/squeak-tracedebugger;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;user;;; +https://github.com/JakobEdding/Collaborative-Filtering-Kafka;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;; +https://github.com/jirkamarsik/esa-wordseg;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Clojure;user;;; +https://github.com/kanihal/vatic_modified;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;user;;; +https://github.com/LeonBein/masterThesisCode;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/LinqLover/downstream-repository-mining;TRUE;TRUE;FALSE;TRUE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;user;;; +https://github.com/linusha/twitter-saxony-anhalt-election-2021-sentiment;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;; +https://github.com/luisebenkert/Potree-Extension;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/marcfreiheit/generic-functions-squeak;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;; +https://github.com/nicolas-alder/KAFKA-EFDT;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;; +https://github.com/onsetsu/d3-bundleview;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;; +https://github.com/ThorbenLindhauer/cosimin;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;; +https://github.com/timgarrels/TableRecognition21;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;; +https://github.com/aipescience/daiquiri-admin;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/aipescience/django-daiquiri-tap;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/aipescience/lightmeter;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/aipescience/mysql_sphere;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;none +https://github.com/aipescience/provenance-applause;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/aipescience/queryparser;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;most +https://github.com/aipescience/raid-utils;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/aipescience/spider-test-data;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/aipescience/sqlite_sphere;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;C++;user;;;none +https://github.com/aipescience/uws-client;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;2;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;more +https://github.com/aipescience/verlustdernacht;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/aipescience/votable2sql;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/aodenweller/green-h2-upscaling;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/ATB-Potsdam/jupyterhub_dockerized;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/dshoman/MgII;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/ekaterinailin/flare-locations-ensembles-science;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;TRUE;TRUE;Python;user;;;most +https://github.com/etzinis/biased_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/etzinis/heterogeneous_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/etzinis/nldrp;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/etzinis/optimal_condition_training;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/etzinis/speech_nlp_labs;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/etzinis/two_step_mask_learning;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/etzinis/unsupervised_spatial_dc;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/filipinascimento/bl-network-communities;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-measurements;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-nullmodel;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-preprocess;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-report;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-template;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-visualization;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-timeseries2network;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/harmening/pyhemo;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/harmening/pyreite;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none +https://github.com/hosilva/mplstyle;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jochenklar/chemotion-formats;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/jochenklar/isimip-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/jochenklar/meps;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/jochenklar/quantify;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/jochenklar/reader2;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/kristinriebe/blendertools;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/kristinriebe/DensityIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/kristinriebe/FofIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/kristinriebe/GalacticusIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/kristinriebe/PmssIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/kristinriebe/SageIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/kristinriebe/SagIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/kristinriebe/uws-validator;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/lenas95/Projekt_B;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/lenas95/SEWS_Amazon_rainforest;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/mjziebarth/ACOSA;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/mjziebarth/acplotoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/mjziebarth/FlotteKarte;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;C++;user;;;most +https://github.com/mjziebarth/InterpolateStress;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/mjziebarth/pybalonor;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;TRUE;TRUE;C++;user;;;most +https://github.com/olebole/i386-test;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none +https://github.com/olebole/python-cpl;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;none +https://github.com/SimonPfeifer/cows;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;more +https://github.com/SimonPfeifer/Ecosystem;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/SimonPfeifer/PyBrego;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/SimonPfeifer/WLmap;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/wbarfuss/CognitiveLevels;TRUE;TRUE;FALSE;TRUE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/wbarfuss/cyexploit;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/wbarfuss/eca;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/wbarfuss/EcoPG;TRUE;TRUE;FALSE;TRUE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/09tangriro/Pearl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;TRUE;TRUE;Python;user;;;none +https://github.com/09tangriro/ppg;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/0UmfHxcvx5J7JoaOhFSs5mncnisTJJ6q/moinput;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/0xsuu/mutual-information-regulariser;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/aadeshnpn/cooperative-transport;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/aadeshnpn/knn-simple;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/aadeshnpn/LTLf2BT;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/aadeshnpn/nepali-mapper;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/aadeshnpn/PyGoal;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/aadeshnpn/swarm;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;more +https://github.com/abaisero/asym-rlpo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/abaisero/gym-gridverse;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;TRUE;FALSE;Python;user;;;none +https://github.com/abaisero/gym-pomdps;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/abaisero/gym-pyro;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/abaisero/one-to-one;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/abaisero/pre-commit-hooks;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/abaisero/rl-rpsr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/abhimishr/FADNUGent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/AdamGleave/pytest-shard;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;circleci;;;Python;user;;;more +https://github.com/akifumi-wachi-4/safe_near_optimal_mdp;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/akifumi-wachi-4/spolf;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/aklein1995/exploration_sil_im;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/aklein1995/intrinsic_motivation_techniques_study;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/aklein1995/Multi-Agent-Reinforcement-MADDPG;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/aklein1995/Navigation_Bananas_DRL;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/AlexPasqua/Autoencoders;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/AlexPasqua/DeepNetSlice;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/AlexPasqua/keras-caffe-converter;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/amnmalik/gcam-v6-ceew;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/anand-bala/deepsort_ros;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/anand-bala/perception-algorithms;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/anand-bala/symbolic-automata-monitors;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none +https://github.com/andersthuesen/reinforcement-exploration;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/AnjaKatzenberger/CMIP6-Indian-Monsoon;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/aodenweller/green-h2-upscaling;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/araffin/eagerx_quadruped;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;TRUE;TRUE;Python;user;;;some +https://github.com/araffin/rl-baselines-zoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;Python;user;;;none +https://github.com/araffin/robotics-rl-srl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/araffin/sbx;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none +https://github.com/araffin/srl-zoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://git+A726+B726;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;; +https://github.com/atreyasha/language-detection;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/atreyasha/mimic3-benchmarks-occlusion;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/atreyasha/mv-temporal-rgan;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/atreyasha/semantic-isometry-nmt;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/atreyasha/sentiment-argument-mining;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/atreyasha/spam-detection;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/ayeright/swafa;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/bodirsky/lucode;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;R;user;;;most +https://github.com/BolunDai0216/DifferentiableOptimizationCBF;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/BolunDai0216/FR3Env;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/BolunDai0216/ppo_torch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/BurakDmb/DifferentiableSearchIndexAndRetrieval;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/BurakDmb/mpc_example;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/BurakDmb/quadsim;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/caviddhen/bowheads;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/caviddhen/ggcmi2agmip;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/caviddhen/MagpieNCGains;TRUE;FALSE;FALSE;TRUE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/caviddhen/MarkupsChen;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/cchrisgong/aip_rockstar;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/cchrisgong/kuramoto_no_cluster;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/christophbertram/covid-power-sector;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/christopher-hesse/computer-tennis;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/chroetz/poisrrr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/chroetz/spheregr;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;user;;;some +https://github.com/chroetz/TdaCpdSim;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;more +https://github.com/chroetz/WhenMeasureChaos;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/CppMaster/SC2-AI;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/cyl628/prompt-typing;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/d3sm0/dantebot;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/d3sm0/gym-vdp;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/d3sm0/svg;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/david-lindner/ai-safety-debate;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/david-lindner/idrl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/david-lindner/safe-grid-gym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;none +https://github.com/david-lindner/single-peaked-bandits;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/deleip/empirical_analysis_of_cascading_effects;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some +https://github.com/dengemann/meeg-preprocessing;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/dengemann/paper-multimodal-stacking-figures;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/devcurmudgeon/cida;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/elliottower/abstraction;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/elliottower/ProtoQA_Macaw;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/emolinab/PlotsPaper;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more +https://github.com/emolinab/PlottingScripts;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more +https://github.com/enosair/federated-fdp;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/ernestum/data-samples-printer;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;0;research;TRUE;FALSE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none +https://github.com/etzinis/heterogeneous_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/etzinis/nldrp;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/etzinis/optimal_condition_training;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/etzinis/unsupervised_spatial_dc;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/FelicitasBeier/mrwater4SIMPLE-G;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/FelicitasBeier/mrwaterPlots;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/filipinascimento/bl-network-communities;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-measurements;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-nullmodel;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-preprocess;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-network-report;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/bl-timeseries2network;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/filipinascimento/openalex-raw;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/filipinascimento/RModularity;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/filipinascimento/WOSRaw;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/floringogianu/atari-agents;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;2;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/floringogianu/categorical-dqn;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/floringogianu/rlog;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/floringogianu/schrodinger;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/floringogianu/wintermute;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/g-leech/Py2HTK;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/gabriel-abrahao/analyze_cesm;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/glmcdona/LuxPythonEnvGym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/glmcdona/MALM;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/glmcdona/sparse-tabular-ml-benchmark;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/harmening/signature_extraction;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;TRUE;Python;user;;;none +https://github.com/hkraemer/PECUZAL_python;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;more +https://github.com/JacobPfau/PENCIL;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/JacobPfau/procgenAISC;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;C++;user;;;more +https://github.com/JakobBruenker/HDR;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/jbkjr/allennlp_sempar;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jbloomAus/toy_model_interpretability;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jhilaire/ssawosacarb;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more +https://github.com/jjshoots/DL_FasteNet;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/jjshoots/PyFlyt;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;most +https://github.com/jjshoots/pyflyt_dogfight;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/jjshoots/railway_drone;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/jkterry1/ASWS;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;more +https://github.com/jkterry1/MCMES_cleanup_scratch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/jkterry1/parameter-sharing-paper;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none +https://github.com/jmhessel/BasicSpearmint;TRUE;FALSE;TRUE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jmhessel/caption_contest_corpus;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/jmhessel/catrank;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/jmhessel/clipscore;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/jmhessel/FightingWords;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jmhessel/fmpytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/jmhessel/multi-retrieval;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/jnnsbrr/PhotoBioDynamics;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/jondurbin/airoboros;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none +https://github.com/joonleesky/train-procgen-pytorch;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jsalvatier/async_deep_reinforce;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/jsalvatier/numexpr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/jsalvatier/PyGame-Learning-Environment;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/JSchapke/essential-gene-detection;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/JSchapke/routing-environment;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/JulesGM/AccelerateRL4LMs;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/JulesGM/RL4LMS_fork;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/jvmncs/ParamNoise;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jvmncs/PytorchAdversarialGym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/kachayev/car-racing-attention-agent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/kachayev/ssl-in-one-epoch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/kcobbe/gans_mnist;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/kcobbe/ram_mnist;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/kcobbe/slitherin;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/kronion/microrts-ppo-comparison;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/kzl/aop;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/kzl/lifelong_rl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/kzl/universal-computation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/langosco/neural-variational-gradient-descent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/langusta/sutton-reinforcement-learning-intro;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/lcswillems/automatic-curriculum;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/lcswillems/MVA-RL-project;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/lcswillems/MVA-TDA-article;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/lcswillems/named-entity-recognizer;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/leesharkey/deep_attractor_network;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/lxuechen/inference-suboptimality;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/lxuechen/private-transformers;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/maibrittbergh/dischanalyst;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;more +https://github.com/maibrittbergh/lfanalyse;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/ManifoldFR/entropic-mfg;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;more +https://github.com/marcwie/pycoment;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/marcwie/sedac-gpw-parser;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/MathisFederico/coffeematon;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/MathisFederico/LearnRL;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;more +https://github.com/matthiasmengel/pism_pik;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/matthiasmengel/sealevel;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/Melanol/bacteria_evo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/mgoulao/Linear-Probing-for-RL;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/Miffyli/nle-sample-factory-baseline;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/Miffyli/policy-supervectors;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/Miffyli/rl-action-space-shaping;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;more +https://github.com/Miffyli/rl-human-prior-tricks;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/miljanm/deep-learning-for-sentiment-mining;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/miljanm/Political-Twitter-Sentiment-Mining;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/minhlong94/Random-Mixup;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/mjziebarth/pybalonor;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/mppalves/soilcemulator;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/neale/avoiding-side-effects;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/neale/HyperGAN;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/neale/neural-canvas;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/neale/neural-data-format;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/neale/particle-based-vi_ood;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/PhilippVerpoort/blue-green-H2;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/PhilippVerpoort/posted;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/pik-copan/pycopanbehave;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/pik-copan/pycopancore;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/pik-copan/pycopandiscount;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/pik-copan/pycopanpbcc;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/pik-copan/pyregimeshifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/pik-copan/pytippinginteractions;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/pik-copan/pyunicorn;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/PIK-LPJmL/LandInG;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/PIK-LPJmL/lpjmlkit;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/PIK-LPJmL/LPJmLmdi;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/pik-piam/blackmagicc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/brick;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/citation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/demystas;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/edgeTransport;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/edgeTrpLib;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/GDPuc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/gdx;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/gms;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/goxygen;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/limes;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/lockfile-archive;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/pik-piam/lpjclass;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/lucode2;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/luplot;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/luscale;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/lusweave;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/m4fsdp;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/madrat;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/magclass;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/magpie4;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/MAgPIENCGains;TRUE;FALSE;FALSE;TRUE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/magpiesets;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mip;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrcommons;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrdieter;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/mrdownscale;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrdrivers;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mredgebuildings;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mredgetransport;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrfactors;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrfeed;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrfish;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrland;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrmagpie;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrremind;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrsoil;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrtransport;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrtutorial;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrvalidation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrvalidnitrogen;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrwaste;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrwater;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mrwaterplots;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/mstools;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/piamenv;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/piamInterfaces;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/piktests;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/project_interfaces;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some +https://github.com/pik-piam/quitte;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/r2databus;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/regressionworlddata;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/remind;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/remind2;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/remindPypsa;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/remulator;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/rmndt;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/rOpenscmRunner;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/pik-piam/shinyresults;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pik-piam/trafficlight;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/pweigmann/harmonic-power-flow;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/PwnerHarry/DQN;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/PwnerHarry/META;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/PwnerHarry/SOOPLAT;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/qgallouedec/panda-gym;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/qgallouedec/semantic_segmentation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/qxcv/engn4528-project-public;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/qxcv/magical;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/rajammanabrolu/C2PO;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rajammanabrolu/KG-A2C;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rajammanabrolu/KG-DQN;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rajammanabrolu/Q-BERT;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rajammanabrolu/StoryRealization;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rajammanabrolu/WorldGeneration;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/rajcscw/nlp-gym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rajcscw/pytorch-optimize;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rgieseke/opencoviddata;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rizar/attention-lvcsr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/rizar/CLOSURE;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/rizar/systematic-generalization-sqoop;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;more +https://github.com/Rocamonde/catevap;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/Rocamonde/savannah-framework;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;FALSE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/rodrigodelazcano/d4rl-minari-dataset-generation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rtaori/Black-Box-Audio;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;more +https://github.com/sawcordwell/pymdptoolbox;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/ScheiklP/sofa_env;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/ScheiklP/sofa_zoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/sgillen/gan_art;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/shwang/NNG;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/shwang/pedestrian_prediction;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/sparisi/pvr_habitat;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/stenzelf/biospheremetrics;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/SwamyDev/gym-quickcheck;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/SwamyDev/reinforcement;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;0;research;TRUE;FALSE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/thejat/bandits-with-stochastic-impairments;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/thejat/learning-realistic-buyer-models;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/thejat/learning-to-partition-using-pairwise-compatibilities;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/thejat/scalable-data-driven-assortment-planning;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/Tiiiger/QPyTorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/Tiiiger/SGC;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/Tiiiger/templm;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/tom-doerr/FAKEBOB_fork_2;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/tom-doerr/fakebob_offsets;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/discor.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/fqf-iqn-qrdqn.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/gail-airl-ppo.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/sac-discrete.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/slac-discrete.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/slac.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/soft-actor-critic.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/vae.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/toshikwa/wappo.pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/tscheypidi/mrorganic;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/vitusbenson/tropical_rainforest_resilience_nongaussian;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/vwxyzjn/a2c_is_a_special_case_of_ppo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/vwxyzjn/cleanba;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/vwxyzjn/cleanrl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/vwxyzjn/envpool-cleanrl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/vwxyzjn/gym-microrts-paper;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/vwxyzjn/invalid-action-masking;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/vwxyzjn/lm-human-preference-details;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/wbarfuss/CognitiveLevels;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/wbarfuss/cyexploit;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/wbarfuss/EcoPG;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/YannDubs/disentangling-vae;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/YannDubs/FourRussiansRNA;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/YannDubs/Hash-Embeddings;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/YannDubs/Invariant-Self-Supervised-Learning;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/YannDubs/lossyless;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/YannDubs/Mini_Decodable_Information_Bottleneck;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/YannDubs/simulationPopulationGenetics;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/zeionara/marude;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/ZikangXiong/diff-spec;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ZikangXiong/MFNLC;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ZikangXiong/mobrob;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ZikangXiong/rl-detect-and-denoise-defense;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/ZikangXiong/RobotDesign;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;none +https://github.com/adbar/courlan;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/adbar/geokelone;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/adbar/german-reddit;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/adbar/htmldate;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/adbar/laclos;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/adbar/microblog-explorer;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/adbar/simplemma;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/adbar/vardial-experiments;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/AgnieszkaFalenska/IMSnPars;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/alexmilowski/pygobo;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/axellelecroq/corresphumboldtlite;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;0;research;TRUE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/coltekin/dsl2016-source;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/coltekin/emoji2018;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/coltekin/gk-treebank;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/helmuthb/datascience-thesis;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/jcklie/hanzitools;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jcklie/ireval;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jcklie/seqviz;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;FALSE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/nfcampos/treesampler;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/riccardodg/psc2lemon;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/rknaebel/bbc-discourse;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rknaebel/landslide;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;1;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/telota/existance;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;1;research;FALSE;FALSE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/bwsample;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/flexion;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/ipasymbols;TRUE;FALSE;TRUE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/keras-bcr;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/keras-cor;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/keras-hrp;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/keras-multilabel-embedding;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/keras-quadopt;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/keras-tweaks;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/kshingle;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/lagmat;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/maxjoshua;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/node-distance;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/node-distance-ray;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/numpy-fracadf;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/numpy-fracdiff;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/numpy-linreg;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/pad-sequences;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/quaxa;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/scipy-psdm;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/scipy-quadopt;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/scipy-tweaks;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/sentence-embedding-evaluation-german;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/simiscore-biblio;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/simiscore-kshingle;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/simiscore-semantic;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/simiscore-syntax;TRUE;TRUE;FALSE;TRUE;FALSE;3;bbaw;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/sklearn-fracdiff;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/sklearn-pipelinetweak;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/sparsity-pattern;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/torch-hrp;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/torch-multilabel-embedding;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/torch-tweaks;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ulf1/treesimi;TRUE;TRUE;TRUE;TRUE;FALSE;4;bbaw;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/wrznr/timur;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/zentrum-lexikographie/e-lexicography-2020-WiSe;TRUE;FALSE;FALSE;FALSE;FALSE;1;bbaw;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/aeye-lab/ecml-ADHD;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/aeye-lab/etra-reading-comprehension;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/aeye-lab/Eyettention;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/aeye-lab/pymovements;TRUE;TRUE;TRUE;FALSE;FALSE;3;up;2;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/aeye-lab/python-wmc-battery;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/alyonavyshnevska/bert_for_coreference_resolution;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/aodenweller/green-h2-upscaling;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/arne-cl/discoursegraphs;TRUE;TRUE;TRUE;FALSE;FALSE;3;up;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/arne-cl/ppi_graphkernel;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/AvitBhowmik/ATRIC;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/bgailleton/DAGGER;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;more +https://github.com/bgailleton/TVD_Condat2013;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;C++;user;;;some +https://github.com/bmarv/Psychology_Experiment;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/BodoBookhagen/ChanGeom;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/BodoBookhagen/PC_geomorph_roughness;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/briemadu/inc-bidirectional;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;more +https://github.com/dagtann/hardTimes;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/damariszurell/4D-niche-overlap;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/damariszurell/SSDM-JSDM;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/danielrm84/Social-Learning-Project-Robotics;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/discourse-lab/pocores;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/ekaterinailin/flare-locations-ensembles-science;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/geveh/IceDamFailures;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/geveh/ReportingBias;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/hallerp/dyslexia-seqmod;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/heyhen/funNCion;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more +https://github.com/hkraemer/PECUZAL_python;TRUE;TRUE;FALSE;TRUE;FALSE;3;up;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/hpi-sam/minimum-wage-rl;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/hydrogo/LHMP;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/hydrogo/rainnet;TRUE;TRUE;FALSE;TRUE;FALSE;3;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/hydrogo/rainymotion;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more +https://github.com/jgontrum/uuparser-with-attention;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/jhilaire/ssawosacarb;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more +https://github.com/juliusgarbe/pism-debm-simple;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/katjakon/Coreference-Resolution;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/KatrinSch/msc-thesis-call-detection;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/linusha/twitter-sentiment-2020-election;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/maxifischer/gensim-MCC;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/mittelmark/snha;TRUE;TRUE;TRUE;FALSE;FALSE;3;up;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/mmrabe/hypr;TRUE;TRUE;TRUE;TRUE;FALSE;4;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;some +https://github.com/paulrozdeba/varanneal;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/peldszus/arg-microtexts;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/peldszus/emnlp2015;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/peldszus/evidencegraph;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/PFischbeck/cn-noise-experiments;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/potassco/benchmark-tool;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;TRUE;FALSE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/potassco/clingo-lpx;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;C++;user;;;more +https://github.com/potassco/clingo-xor;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;C++;user;;;more +https://github.com/potassco/clingoLP;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/potassco/ginkgo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;most +https://github.com/resfahani/SparseTFR;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/resfahani/SWDCI;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rknaebel/bbc-discourse;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/rokcestnik/oscillator_snap;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/Rullec/argus-win10;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;some +https://github.com/sarahkiener/compound-sensitivity;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/susuhahnml/asp-game-strategies;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/TamaraAtanasoska/AMR_ArgumentSimilarity;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/tasmi/SnowmeltTracking;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/tasnimul-unipotsdam/EuroSAT;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/tasnimul-unipotsdam/ms_thesis;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/TillF/ssc_prediction;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more +https://github.com/tzwenn/myLambda;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;TRUE;FALSE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/University-of-Potsdam-MM/cff2pages;TRUE;TRUE;TRUE;TRUE;FALSE;4;up;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/UP-macroecology/EBBA_Niche_vs_Range_shifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/UP-macroecology/Malchow_DemogEnv_2022;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/UP-macroecology/Malchow_IBMcalibration_2023;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/UP-macroecology/ODMAP;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;1;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/UP-RS-ESP/TopoMetricUncertainty;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/vasishth/MetaAnalysisJaegerEngelmannVasishth2017;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;none +https://github.com/vasishth/NicenboimVasishthPart2;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/vasishth/StanJAGSexamples;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/vasishth/uncertainty;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/vasishth/VasishthNicenboimPart1;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some +https://github.com/vasishth/VNEBTiCS2019;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some +https://github.com/xarxaxdev/gans_blanc;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/XiaoxiangGuanGFZ/GR4J;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/XiaoxiangGuanGFZ/KNN_MOF_CPs;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/XiaoxiangGuanGFZ/RCCC-WBM;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/yadavhimanshu059/crossing_constraints_baselines;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/yadavhimanshu059/Hindi_DS_to_PS_Conversion;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/yadavhimanshu059/Hindi_DS_to_PS_Conversion_v2;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/yadavhimanshu059/LV05;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;more +https://github.com/YanaPalacheva/lyrics-generation;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/andrewdolman/Maehrlein_et_al_length_mass_data;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/andrewdolman/phytotraitr;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/EarthSystemDiagnostics/hamstr;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most +https://github.com/EarthSystemDiagnostics/hamstrbacon;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/EarthSystemDiagnostics/optimalcores;TRUE;TRUE;FALSE;TRUE;FALSE;3;awi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/EarthSystemDiagnostics/proxysnr;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/EarthSystemDiagnostics/psem;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/EarthSystemDiagnostics/sedproxy;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/EarthSystemDiagnostics/simproxyage;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/GPawi/LANDO;TRUE;TRUE;FALSE;TRUE;FALSE;3;awi;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most +https://github.com/slisovski/Bauer_et_al.-2018-JApplEcol;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;more +https://github.com/slisovski/invMovement;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most +https://github.com/slisovski/Lisovski-et-al.-2017-Oikos;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/slisovski/Optimal-migration-along-the-Indo-European-Flyway;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most +https://github.com/slisovski/SGAT_calibration_movement;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/slisovski/van-Gils-et-al.-2016-Science;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some +https://github.com/twollnik/YETI;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/Aaronzinhoo/SingleShotDetector-TF;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/aksub99/U-Net-Pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/calclavia/DeepJ;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/calclavia/NOS;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/calclavia/Performer-Pytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/calclavia/story-generation;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/calclavia/tal-asrd;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/danijar/crafter;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/danijar/diamond_env;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/danijar/dreamer;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/danijar/dreamerv2;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/danijar/dreamerv3;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;1;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/danijar/elements;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;1;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/danijar/embodied;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/danijar/imptools;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;FALSE;FALSE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/danijar/layered;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;some +https://github.com/erksch/fnet-pytorch;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/ferbsx/Fungal-DeePaC;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some +https://github.com/gvanrossum/old-demos;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/HaidYi/cvxbiclustr;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;C++;user;;;most +https://github.com/HaidYi/DASC;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more +https://github.com/hdnl/sparse-bert-ner;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/jaSunny/MA-enriched-Health-Data;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none +https://github.com/Lando-L/ocd-detection;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/levjj/wahlomat-visualization;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/linusha/twitter-sentiment-2020-election;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/m0e33/REST-bot;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some +https://github.com/maxifischer/gensim-MCC;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/mdickinson/polyhedron;TRUE;TRUE;FALSE;TRUE;FALSE;3;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most +https://github.com/nicolas-alder/difflogictest;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/PFischbeck/cn-noise-experiments;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none +https://github.com/prithviraj-maurya/mapreduce-based-machine-learning;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/SanJSp/FCMFromSudbueBasedPatternExtractor;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/timgarrels/LazyFox;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;C++;user;;;more +https://github.com/Tobias314/blainder;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none +https://github.com/witsyke/thesis;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more +https://github.com/Open-Systems-Pharmacology/R-Toolbox;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;more +https://github.com/Open-Systems-Pharmacology/DCI;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;org;open_systems_pharmacology;;none +https://github.com/Open-Systems-Pharmacology/OSPSuite.FuncParser;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;C++;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;C++;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModelSolverBase;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Digoxin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/SGLT2i-hyperfiltration-model;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Gene-Expression-Databases;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;more +https://github.com/Open-Systems-Pharmacology/OSPSuite-R;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/TLF-Library;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Evaluation-plan-template;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/OSPSuite.ReportingEngine;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;more +https://github.com/Open-Systems-Pharmacology/Database-for-observed-data;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none +https://github.com/Open-Systems-Pharmacology/tracelib;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Incretins-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Inhalation-model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/IVIVC-with-particle-dissolution-module-in-OSP;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;none +https://github.com/Open-Systems-Pharmacology/OSPSuite.ParameterIdentification;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Propofol-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_UGT1A1_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_UGT1A9_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/OSPSuite.RUtils;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;1;research;TRUE;FALSE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;more +https://github.com/Open-Systems-Pharmacology/Thyroid-Hormones-PB-QSP-Model;TRUE;TRUE;FALSE;FALSE;FALSE;2;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;open_systems_pharmacology;;none +https://github.com/Open-Systems-Pharmacology/dAb2-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Inulin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/MEDI524-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/MEDI524YTE-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/CDA1-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/BAY794620-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;most +https://github.com/Open-Systems-Pharmacology/Qualification-CKD;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none +https://github.com/Open-Systems-Pharmacology/Tefibazumab-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none +https://github.com/Open-Systems-Pharmacology/7E3-Model;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none +https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_P-gp_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;1;startup;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;R;org;open_systems_pharmacology;;none +https://github.com/aeye-lab/pymovements;TRUE;TRUE;TRUE;FALSE;FALSE;3;up;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;TRUE;FALSE;Python;org;aeya;;none +https://github.com/aeye-lab/etra-reading-comprehension;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;org;aeya;;none +https://github.com/aeye-lab/ecml-ADHD;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;org;aeya;;none +https://github.com/aeye-lab/Eyettention;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;aeya;;none +https://github.com/potassco/clingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;2;research;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/clasp;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/ginkgo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/plasp;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/clingcon;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/libpotassco;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/clingoLP;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;potassco;;none +https://github.com/potassco/clingo-dl;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/asprin;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/coala;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/acclingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/planner;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/aspcud;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/qasp2qbf;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/xorro;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;org;potassco;;none +https://github.com/potassco/clorm;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;Python;org;potassco;;none +https://github.com/potassco/train-scheduling-with-clingo-dl;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/eclingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;travis;FALSE;TRUE;Python;org;potassco;;none +https://github.com/potassco/eclingo-prototype;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/teaspoon;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;org;potassco;;none +https://github.com/potassco/train-scheduling-with-hybrid-asp;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/tefoli;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/asp-date-lib;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;potassco;;none +https://github.com/potassco/xls2asp;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;potassco;;none +https://github.com/potassco/aspic-legacy;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/flatzingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;potassco;;none +https://github.com/potassco/clingomil;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;potassco;;none +https://github.com/potassco/clingo-lpx;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/clingraph;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;potassco;;none +https://github.com/potassco/mapf-subgraph-system;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;C++;org;potassco;;none +https://github.com/potassco/clingo-xor;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;C++;org;potassco;;none +https://github.com/potassco/plingo;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;potassco;;none +https://github.com/UP-macroecology/ODMAP;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;macroecology;;none +https://github.com/UP-macroecology/Malchow_DemogEnv_2022;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;macroecology;;none +https://github.com/UP-macroecology/Malchow_IBMcalibration_2022;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;macroecology;;none +https://github.com/UP-macroecology/EBBA_Niche_vs_Range_shifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;macroecology;;none +https://github.com/krr-up/robot-scheduling-encodings;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;krr;;none +https://github.com/krr-up/asp-dse;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;krr;;none +https://github.com/krr-up/mapf-instance-generator;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;krr;;none +https://github.com/krr-up/python-project-template;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;krr;;none +https://github.com/krr-up/renopro;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;org;krr;;none +https://github.com/discourse-lab/pocores;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;discourse-lab;;none +https://github.com/discourse-lab/DiscourseSegmenter;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;org;discourse-lab;;none +https://github.com/UP-RS-ESP/addem;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/SnowmeltTracking;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/ChanGeom;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/PC_geomorph_roughness;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/TanDEM-SRTM-dh;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/river-clusters;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/TopoMetricUncertainty;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/GNSS-Correction-RTKLIB;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/PebbleCounts;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/HillslopeAsymmetry;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/laspy-waveform;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/PebbleCounts-Application;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/DEM-Consistency-Metrics;TRUE;TRUE;FALSE;FALSE;FALSE;2;up;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/UP-RS-ESP/PlanetScope_landslide_tracking;TRUE;FALSE;FALSE;FALSE;FALSE;1;up;0;research;;;;FALSE;FALSE;FALSE;;;;Python;org;rs-esp;;none +https://github.com/hpi-sam/minimum-wage-rl;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;system_analysis_and_modeling_group;;none +https://github.com/hpi-sam/HT_WithinBetweenGroups;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;system_analysis_and_modeling_group;;none +https://github.com/hpi-sam/Safe-RL-4-SAS;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;system_analysis_and_modeling_group;;none +https://github.com/bptlab/fiber2xes;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;business_process_technology;;none +https://github.com/bptlab/odea-light;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;business_process_technology;;none +https://github.com/bptlab/mimic-log-extraction;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;TRUE;FALSE;Python;org;business_process_technology;;none +https://github.com/hpi-swa-lab/polyglot-adapters;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;software_architecture_group;;none +https://github.com/hpi-swa-lab/graalpython;TRUE;TRUE;FALSE;FALSE;FALSE;2;hpi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;software_architecture_group;;none +https://github.com/SemanticMultimedia/locopod;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;semantic_multimedia_research_group;;none +https://github.com/SemanticMultimedia/tlr;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;Python;org;semantic_multimedia_research_group;;none +https://github.com/Museum-Barberini/twitterscraper;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;org;museum_barberini;;none +https://github.com/Museum-Barberini/Barberini-Analytics;TRUE;FALSE;FALSE;FALSE;FALSE;1;hpi;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;museum_barberini;;none +https://github.com/Museum-Barberini/twint;TRUE;TRUE;TRUE;FALSE;FALSE;3;hpi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;TRUE;travis;FALSE;FALSE;Python;org;museum_barberini;;none +https://github.com/pik-copan/pycopancore;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;copan;;none +https://github.com/pik-copan/pycopanbehave;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;copan;;none +https://github.com/pik-copan/pycopanpbcc;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;copan;;none +https://github.com/pik-copan/pyregimeshifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;copan;;none +https://github.com/pik-copan/pytippinginteractions;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;copan;;none +https://github.com/pik-piam/madrat;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/magclass;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mip;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/magpie4;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/gdx;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/lusweave;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/magpiesets;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/luscale;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/goxygen;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/shinyresults;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/citation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/demystas;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/remulator;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/remind;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/luplot;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/trafficlight;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrvalidation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/regressionworlddata;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/lpjclass;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/quitte;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/limes;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/rmndt;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mstools;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/edgeTrpLib;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrcommons;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrremind;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrfeed;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrland;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;2;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrsoil;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/lucode2;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/gms;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrmagpie;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/edgeTransport;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrwater;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrtutorial;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/MAgPIENCGains;TRUE;FALSE;FALSE;TRUE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/remind2;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/piamModelTests;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrvalidnitrogen;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/GDPuc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrfish;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrwaste;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/mrdrivers;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/piktests;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mredgebuildings;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mredgetransport;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/m4fsdp;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrdieter;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/blackmagicc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/rOpenscmRunner;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/r2databus;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/rfp;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/piamInterfaces;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/piamenv;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrwaterplots;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/remindPypsa;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;pik-piam;;none +https://github.com/pik-piam/mrdownscale;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/brick;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-piam/mrfactors;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;pik-piam;;none +https://github.com/pik-gane/tricl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;TRUE;travis;FALSE;FALSE;C++;org;pik-gane;;none +https://github.com/pik-gane/decision-transformer-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;pik-gane;;none +https://github.com/pik-gane/ai-safety-gridworlds-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;pik-gane;;none +https://github.com/pik-gane/stable-baselines3-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;pik-gane;;none +https://github.com/pik-gane/stable-baselines3-contrib-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;org;pik-gane;;none +https://github.com/pik-gane/alpaca_farm-collective;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;Python;org;pik-gane;;none +https://github.com/PIK-LPJmL/LPJmLmdi;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;LPJmL_group;;none +https://github.com/PIK-LPJmL/lpjmlkit;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;LPJmL_group;;none +https://github.com/PIK-LPJmL/LandInG;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;org;LPJmL_group;;none +https://github.com/GFZ/spechomo;TRUE;TRUE;TRUE;TRUE;FALSE;4;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;geosciences_gfz;;none +https://github.com/GFZ/arosics;TRUE;TRUE;TRUE;TRUE;FALSE;4;helmholz_center-gfz_potsdam;1;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;org;geosciences_gfz;;none +https://github.com/GFZ/enpt;TRUE;TRUE;TRUE;TRUE;FALSE;4;helmholz_center-gfz_potsdam;2;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;org;geosciences_gfz;;none +https://github.com/GFZ/LocalPLSR;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;geosciences_gfz;;none +https://github.com/GFZ-Centre-for-Early-Warning/REM_satex_plugin;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;org;center_for_early_warning_gfz;;none +https://github.com/fastscape-lem/fastscapelib;TRUE;TRUE;FALSE;TRUE;FALSE;3;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;C++;org;fastscape_lem;;none +https://github.com/fastscape-lem/fastscape;TRUE;TRUE;FALSE;TRUE;FALSE;3;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;fastscape_lem;;none +https://github.com/fastscape-lem/flow-routing-depressions;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;TRUE;C++;org;fastscape_lem;;none +https://github.com/fastscape-lem/gilbert-board;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;fastscape_lem;;none +https://github.com/fastscape-lem/ipyfastscape;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;org;fastscape_lem;;none +https://github.com/fastscape-lem/fastscape-litho;TRUE;TRUE;FALSE;TRUE;FALSE;3;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;fastscape_lem;;none +https://github.com/fastscape-lem/VariableSPIM;TRUE;TRUE;FALSE;FALSE;FALSE;2;helmholz_center-gfz_potsdam;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;org;fastscape_lem;;none +https://github.com/telota/rasmipy;TRUE;TRUE;TRUE;FALSE;FALSE;3;bbaw;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;telota;;none +https://github.com/telota/existance;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;org;telota;;none +https://github.com/zentrum-lexikographie/IMSnPars;TRUE;TRUE;FALSE;FALSE;FALSE;2;bbaw;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;org;zentrum_f√ºr_digitale_lexikographie_der_deutschen_sprache;;none +https://github.com/aipescience/uws-client;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;org;aip_e-science;;none +https://github.com/aipescience/queryparser;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;org;aip_e-science;;none +https://github.com/EarthSystemDiagnostics/hamstr;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/sedproxy;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/simproxyage;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/proxysnr;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/ecustools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/MonsoonMinimalModel;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/HolSNR;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/cpt-picarr;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/optimalcores;TRUE;TRUE;FALSE;TRUE;FALSE;3;awi;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/exNGT;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/paleospec;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/climproxyrecords;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/pfields;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/psem;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/geostools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/grfxtools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/stattools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/prxytools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/ncdftools;TRUE;TRUE;FALSE;FALSE;FALSE;2;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/laepple22-commentbova;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/hamstrbacon;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;org;earth_system_diagnostics;;none +https://github.com/EarthSystemDiagnostics/topoExtract;TRUE;FALSE;FALSE;FALSE;FALSE;1;awi;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;org;earth_system_diagnostics;;none \ No newline at end of file diff --git a/data/all_user_repos.csv b/data/all_user_repos.csv index 7513b73..bb6be9b 100644 --- a/data/all_user_repos.csv +++ b/data/all_user_repos.csv @@ -1,991 +1,12965 @@ -html_url description language project organisation -https://github.com/adrpar/densfield Cosmological density field generator supporting CIC, TSC (for GADGET and ART) and proper SPH (for GADGET) particle to grid mapping C research leibniz -https://github.com/aipescience/daiquiri A framework for the publication of scientific databases PHP research leibniz -https://github.com/aipescience/daiquiri-admin A python library for administrative tasks to be used with the Daiquiri Framework Python research leibniz -https://github.com/aipescience/django-daiquiri-tap A tiny wrapper for astroquery.utils.tap, adding support for token authorization. Python research leibniz -https://github.com/aipescience/lightmeter Python research leibniz -https://github.com/aipescience/mysql_healpix HEALPix plugin for MySQL C research leibniz -https://github.com/aipescience/mysql_sphere MySQL port of pgSphere 1.1.1 C++ research leibniz -https://github.com/aipescience/provenance-applause Provenance for APPLAUSE database Python research leibniz -https://github.com/aipescience/queryparser Parsing, processing, and translation of PostgreSQL, MySQL and ADQL queries Python research leibniz -https://github.com/aipescience/raid-utils Python research leibniz -https://github.com/aipescience/spider-docker Docker files for a Spider-Engine MariaDB cluster PLpgSQL research leibniz -https://github.com/aipescience/spider-test-data Test data for a Spider-Engine MariaDB cluster Python research leibniz -https://github.com/aipescience/sqlite_sphere Sqlite3 port of pgSphere 1.1.1 https://escience.aip.de/mysql-sphere/ C++ research leibniz -https://github.com/aipescience/uws-client IVOA UWS service command line client Python research leibniz -https://github.com/aipescience/verlustdernacht Python research leibniz -https://github.com/aipescience/votable2sql Tool to convert VOTables into SQL dumps Python research leibniz -https://github.com/aodenweller/green-h2-upscaling Model code and input data of the technology diffusion model for electrolysis capacity R research leibniz -https://github.com/ATB-Potsdam/IDM Irrigation water Demand Module C# research leibniz -https://github.com/ATB-Potsdam/jupyterhub_dockerized Python research leibniz -https://github.com/dshoman/MgII QSO Fitting Algorithms Python research leibniz -https://github.com/dshoman/MKN110 Ruby research leibniz -https://github.com/ekaterinailin/AltaiPony Find flares in Kepler and TESS light curves. Notebooks for quickstart inside. Jupyter Notebook research leibniz -https://github.com/ekaterinailin/dustycrocodile Hack HPI about://environment EU: Digging into European Union Open Data Portal for Water Use HTML research leibniz -https://github.com/ekaterinailin/flare-locations-ensembles-science Python research leibniz -https://github.com/ekaterinailin/flares-in-clusters-ii-draft Paper draft corresponding to the project TeX research leibniz -https://github.com/ekaterinailin/flares-in-clusters-with-k2-ii Here tables, analysis code, additional information, and ancillary plots for Ilin+2020 (in prep.) are stored. Jupyter Notebook research leibniz -https://github.com/ekaterinailin/flares-q-learning Mapping detected flares in TESS and Kepler light curves to the underlying flare event via injection-recovery with Q-learning Jupyter Notebook research leibniz -https://github.com/ekaterinailin/flaring-spi Jupyter Notebook research leibniz -https://github.com/ekaterinailin/flaring-spi-paper Flaring SPI paper including all TESS and Kepler confirmed transiting planets TeX research leibniz -https://github.com/ekaterinailin/GaiaK2PSF PSF photometry on K2 with Gaia centroids Jupyter Notebook research leibniz -https://github.com/ekaterinailin/k2-panstarrs-sampedro Matching catalogs for cluster samples. Jupyter Notebook research leibniz -https://github.com/ekaterinailin/multiperiod-flares-draft Paper draft for Malachite Mountains TeX research leibniz -https://github.com/ekaterinailin/Orbital_Flare_Declustering Orbital phase flare de-clustering in close-in star-planet systems Jupyter Notebook research leibniz -https://github.com/ekaterinailin/SiberianPine Analyse statistical samples of stellar flares. Jupyter Notebook research leibniz -https://github.com/etzinis/biased_separation Code for the paper: Unified Gradient Reweighting for Model Biasing with Applications to Source Separation Python research leibniz -https://github.com/etzinis/bootstrapped_mds Bootstrapped MDS: A Coordinate Search Algorithm for Multidimensional Scaling which optimizes Stress by evaluating the function multiple times over different coordinates but also bootstraping over previous successful iterations. With this algorithm there is a probability of evaluating the function alongside a coordinate step depending on the previous successful evaluations across this coordinate. Jupyter Notebook research leibniz -https://github.com/etzinis/fedenhance Code for the paper: Separate but togerher: Unsupervised Federated Learning for Speech Enhancement from non-iid data Jupyter Notebook research leibniz -https://github.com/etzinis/heterogeneous_separation Code and data recipes for the paper: Heterogeneous Target Speech Separation Python research leibniz -https://github.com/etzinis/nldrp Non linear dynamics for emotion classification Python research leibniz -https://github.com/etzinis/nldr_visual_recognition Evaluating Nonlinear dimensional reduction algorithms for finding low dimensional manifold representations of input data, trying to infer labels of unlabelled data points of the manifold as well as visualizing 2D manifolds for qualitative analysis of the input data Jupyter Notebook research leibniz -https://github.com/etzinis/optimal_condition_training Code and data recipes for the paper: Optimal Condition Training for Target Source Separation by Efthymios Tzinis, Gordon Wichern, Paris Smaragdis and Jonathan Le Roux Python research leibniz -https://github.com/etzinis/polymorphisms_statistic_analysis Code for my contribution in a medicine related project/paper with faculty form Kapodistrian University of Athens. Jupyter Notebook research leibniz -https://github.com/etzinis/speech_nlp_labs Labs exercises in NTUA (2015-2016) for the course Speech and Natural Language Processing 7th semester Python research leibniz -https://github.com/etzinis/sudo_rm_rf Code for SuDoRm-Rf networks for efficient audio source separation. SuDoRm-Rf stands for SUccessive DOwnsampling and Resampling of Multi-Resolution Features which enables a more efficient way of separating sources from mixtures. Jupyter Notebook research leibniz -https://github.com/etzinis/two_step_mask_learning A two step optimization for sound source separation on the adaptive front-end domain Python research leibniz -https://github.com/etzinis/unsupervised_spatial_dc "Code for the paper: ""Unsupervised Deep Clustering for Source Separation: Direct Learning from Mixtures using Spatial Information""" Python research leibniz -https://github.com/etzinis/unsup_speech_enh_adaptation Unsupervised domain adaptation for conversational speech enhancement using RemixIT Jupyter Notebook research leibniz -https://github.com/filipinascimento/bigscience Big Science Project Jupyter Notebook research leibniz -https://github.com/filipinascimento/bl-conmat2network Simple brainlife app to create a network from a conmat matrix. Dockerfile research leibniz -https://github.com/filipinascimento/bl-network-communities App to obtain the community structure of networks by using the Louvain or Infomap methods. All the Louvain quality functions work for networks with negative weights. Python research leibniz -https://github.com/filipinascimento/bl-network-measurements App to calculate several basic statistics for networks and their respective null model distributions. Python research leibniz -https://github.com/filipinascimento/bl-network-nullmodel Generates an esemble of networks according to null models that try to reproduce the data. Erdos reyni (random), Barabási-Albert and Configuration model are implemented Python research leibniz -https://github.com/filipinascimento/bl-network-preprocess App to preprocess connectivity/similarity matrices (conmat) and generate a filtered version of the network, which can be directed or undirected, weighted or unweighted. Python research leibniz -https://github.com/filipinascimento/bl-network-report App to generate reports from networks. This includes network properties, node attributes and their respective distributions. Python research leibniz -https://github.com/filipinascimento/bl-network-template Template app to build new network neuroscience apps for brainlife Python research leibniz -https://github.com/filipinascimento/bl-network-template-matlab Example template for network analyses using matlab inside brainlife. MATLAB research leibniz -https://github.com/filipinascimento/bl-network-visualization This app generates simple 2D static visualizations for networks by using a force-directed algorithm. The current implementation uses the Large Graph Layout (LGL) algorithm. Python research leibniz -https://github.com/filipinascimento/bl-timeseries2network Calculates a similarity matrix (such as correlation, covariance, etc) from time series and convert it to a network datatype (JGFZ) so it can be used in the network pipeline. Python research leibniz -https://github.com/filipinascimento/CVAccessibility Software to calculate the outwards accessibility measurement of nodes in complex networks. Check http://arxiv.org/abs/1101.5379v3 and http://arxiv.org/abs/0802.3665 . C research leibniz -https://github.com/filipinascimento/CVRandomWalks Fast library to obtain sentences based on random walks from networks for use in word2vec and other embedding techniques. C research leibniz -https://github.com/filipinascimento/CVSymmetry Software to calculate the concentric symmetries of complex networks as described in http://arxiv.org/abs/1407.0224 C research leibniz -https://github.com/filipinascimento/cxnetwork Rewiring Code C research leibniz -https://github.com/filipinascimento/cxnetworks-docker Network science docker image with basic libraries. Currently being used to run brainlife network science apps. Dockerfile research leibniz -https://github.com/filipinascimento/cxrandomwalk C research leibniz -https://github.com/filipinascimento/helios-network A web Assembly network representation for Helios-Web. C research leibniz -https://github.com/filipinascimento/helios-web A web-based framework to visualize dynamic networks in real-time. JavaScript research leibniz -https://github.com/filipinascimento/malleability C research leibniz -https://github.com/filipinascimento/metabonet Interactive visualization for metabolite networks. Under development. JavaScript research leibniz -https://github.com/filipinascimento/openalexnet OpenAlex Networks is a helper library to process and obtain data from the OpenAlex dataset via API. It also provides functionality to generate citation and coauthorship networks from queries. Jupyter Notebook research leibniz -https://github.com/filipinascimento/teleconnectionsgranger Notebook to find teleconnections in Anomalies in Precipitation and Temperature cross the globe using lagged correlation or Granger causality Jupyter Notebook research leibniz -https://github.com/filipinascimento/workshop-netviz This repository contains the files and links to be used in the IUNI Workshop Hands-on : An Introduction to Network Visualization. https://iuni.iu.edu/news/event/79 Jupyter Notebook research leibniz -https://github.com/harmening/HArtMuT 🧠 Head ARTefact Modelling Using Tripoles Julia research leibniz -https://github.com/harmening/MRIsegmentation 🧠 Automatic MRI segmentation pipeline for consistent FEM and BEM mesh creation from MRI scans of human heads MATLAB research leibniz -https://github.com/harmening/phrase-frequency-counter 💬NLP - Evaluating the phrase eloquency of a text data set and returns an adapted version of the hirsch-index as measure of its usefulness for the training of Neural Networks for NLP. C research leibniz -https://github.com/harmening/pyhemo 🧠 PYthonic HEad MOdeling Python research leibniz -https://github.com/harmening/pyreite 🧠 Pythonic, Yet Rudimental, Electrical Impedance Tomography Expert Python research leibniz -https://github.com/hosilva/mplstyle Collection of customized matplotlib styles sheets Python research leibniz -https://github.com/hosilva/physrev_mplstyle A matplotlib style sheet to help me spend less time editing figures for my manuscripts for Phys. Rev. D. Jupyter Notebook research leibniz -https://github.com/jochenklar/chemotion-formats Playground to work on a generic format for chemotion (and more). Python research leibniz -https://github.com/jochenklar/evora evolution of a polytropic fluid within a cosmological framework including the influence of gravity, primordial chemical processes, radiative cooling, heating by a UV background, and thermal conduction FORTRAN research leibniz -https://github.com/jochenklar/isimip-scripts Some scripts, to be used in the context of ISIMIP. Python research leibniz -https://github.com/jochenklar/meps A set of scripts to interact with the (official) lists of members of the european parliament. Python research leibniz -https://github.com/jochenklar/quantify An application to collect personal (health) data of oneself. Python research leibniz -https://github.com/jochenklar/rdmo-advanced CSS research leibniz -https://github.com/jochenklar/reader2 A feed aggregator and reader Python research leibniz -https://github.com/kristinriebe/blendertools A collection of Python scripts to make (my) life easier with Blender. Python research leibniz -https://github.com/kristinriebe/cosmosim-scripts Shell scripts for accessing CosmoSim database Shell research leibniz -https://github.com/kristinriebe/cosmosim-uws-notebook Python notebook tutorials for CosmoSim using uws-client as library Jupyter Notebook research leibniz -https://github.com/kristinriebe/DensityIngest Tool for reading density fields from Fortran binary files and ingesting them into database, using adrpar's DBIngestor library C++ research leibniz -https://github.com/kristinriebe/FofIngest A tool for reading binary FOF files and ingesting them into a database using adrpar's DBIngestor library. C++ research leibniz -https://github.com/kristinriebe/GalacticusIngest Tool for ingesting Galacticus data, semi-analytical galaxy catalogues for simulations in HDF5 format C++ research leibniz -https://github.com/kristinriebe/PmssIngest Tool for reading binary PMss particle files and ingesting them into a database using adrpar's DBIngestor library. C++ research leibniz -https://github.com/kristinriebe/provenance-cosmosim A test project for implementing provenance data models using CosmoSim metadata JavaScript research leibniz -https://github.com/kristinriebe/SageIngest Tool for ingesting SAGE data, semi-analytical galaxy catalogues for cosmological simulations (Croton et al.) C++ research leibniz -https://github.com/kristinriebe/SagIngest Tool for ingesting SAG data, semi-analytical galaxy catalogues for cosmological simulations, in HDF5 format C++ research leibniz -https://github.com/kristinriebe/uws-validator Functional tests for IVOA UWS (1.1) web services Python research leibniz -https://github.com/lenas95/Projekt_B R research leibniz -https://github.com/lenas95/SEWS_Amazon_rainforest Pyhtonframework to study the detection of SEWSs on the Amazon rainforest Python research leibniz -https://github.com/mjziebarth/ACOSA A compilation of spherical algorithms. C++ research leibniz -https://github.com/mjziebarth/acplotoo Collection of tools for plotting with matplotlib Python research leibniz -https://github.com/mjziebarth/FlotteKarte A low-overhead Python cartography package based on PROJ, Matplotlib, and PyProj. C++ research leibniz -https://github.com/mjziebarth/InterpolateStress Interpolate stress azimuth and plunges based on the Stress2Grid algorithm by Ziegler & Heidbach (2017) C++ research leibniz -https://github.com/mjziebarth/pybalonor Bayesian Analysis of the Log-Normal distribution in Python C++ research leibniz -https://github.com/mjziebarth/REHEATFUNQ Regional aggregate heat flow distributions and heat flow anomaly quantification Jupyter Notebook research leibniz -https://github.com/msdemlei/dig-um-fi-init Kick-off report for the DIG-UM federated infrastructures topic group TeX research leibniz -https://github.com/msdemlei/softid An IVOA note on operational identification of software components. TeX research leibniz -https://github.com/olebole/i386-test Python research leibniz -https://github.com/olebole/python-cpl Python bindings for CPL recipes Python research leibniz -https://github.com/SimonPfeifer/cows A cosmic filament finder for Hessian cosmic web identifiers. Python research leibniz -https://github.com/SimonPfeifer/Ecosystem An ecosystem controlled by a neural net. Python research leibniz -https://github.com/SimonPfeifer/PyBrego A toy mesh hydrodynamics solver Python research leibniz -https://github.com/SimonPfeifer/WLmap Making weak lensing maps from cosmological simulations. Python research leibniz -https://github.com/wbarfuss/CognitiveLevels Python implementation to create the figures used in the publication 'Dynamical systems as a level of cognitive analysis of multi-agent learning - Algorithmic foundations of temporal-difference learning dynamics' Python research leibniz -https://github.com/wbarfuss/cyexploit cython / python implementation of the COPAN:Exploit model Python research leibniz -https://github.com/wbarfuss/DetRL Python implementation of the deterministic limit of temporal difference reinforcement learning Jupyter Notebook research leibniz -https://github.com/wbarfuss/eca Event Coincidence Analysis Python research leibniz -https://github.com/wbarfuss/EcoPG Python implementation of the Ecological Public Good model Python research leibniz -https://github.com/wbarfuss/intrinsic-fluctuations-cooperation All code to reproduce the results of https://arxiv.org/abs/2209.01013 Mathematica research leibniz -https://github.com/wbarfuss/MARLDynamics Modeling multi-agent reinforcement learning as dynamical systems Jupyter Notebook research leibniz -https://github.com/wbarfuss/netlogo-exploit A netlogo implementation of PIK COPANS Exploit model NetLogo research leibniz -https://github.com/wbarfuss/Paradigms Code for paradigms project Jupyter Notebook research leibniz -https://github.com/wbarfuss/POLD Partially Observable multi-agent temporal-difference Learning Dynamics in the deterministic infinite memory limit Jupyter Notebook research leibniz -https://github.com/wbarfuss/pyCRLD Collective Reinforcement Learning Dynamics in Python Jupyter Notebook research leibniz -https://github.com/09tangriro/Pearl Adaptable tools to make reinforcement learning and evolutionary computation algorithms. Python research pik -https://github.com/09tangriro/ppg Phasic Policy Gradient Python research pik -https://github.com/09tangriro/WHEELS Wheels App Java research pik -https://github.com/0UmfHxcvx5J7JoaOhFSs5mncnisTJJ6q/moinput Provides useful functions and a common structure to all the input data required to run models like MAgPIE and REMIND of model input data. R research pik -https://github.com/0xsuu/mutual-information-regulariser Python research pik -https://github.com/aadeshnpn/cooperative-transport Cooperative Transport with Cozmos Python research pik -https://github.com/aadeshnpn/knn-simple Python research pik -https://github.com/aadeshnpn/LTLf2BT Python research pik -https://github.com/aadeshnpn/nepali-mapper Simple Rule Based Nepali Mapper Python research pik -https://github.com/aadeshnpn/OSDN "Keras implementation for the research paper ""Towards Open Set Deep Networks"" A Bendale, T Boult, CVPR 2016" Jupyter Notebook research pik -https://github.com/aadeshnpn/PyGoal An LTL based explicit goal specification and evaluation framework Python research pik -https://github.com/aadeshnpn/swarm Simulation framework for Swarms related application Python research pik -https://github.com/abaisero/asym-rlpo Asymmetric methods for partially observable reinforcement learning Python research pik -https://github.com/abaisero/gym-gridverse Gridworld domains in the gym interface Python research pik -https://github.com/abaisero/gym-pomdps Python research pik -https://github.com/abaisero/gym-pyro OpenAI Gym environments for MDPs, POMDPs, and confounded-MDPs implemented as pyro-ppl probabilistic programs. Python research pik -https://github.com/abaisero/one-to-one Bijections between semantic value and index Python research pik -https://github.com/abaisero/pre-commit-hooks Custom git pre-commit hooks Python research pik -https://github.com/abaisero/rl-rpsr Code for reward-predictive state representations Python research pik -https://github.com/abdel/pathology-lab Pathology lab reporting PHP research pik -https://github.com/abhimishr/dynamic_forestry_GitHub GAMS research pik -https://github.com/abhimishr/FADNUGent FADN Data analysis from master thesis of Abhijeet Mishra @UGent, Belgium R research pik -https://github.com/abhimishr/LUMEN GAMS research pik -https://github.com/abhimishr/magpie_forestry GAMS research pik -https://github.com/AdamGleave/pytest-shard Shard tests to support parallelism across multiple machines. Python research pik -https://github.com/Akhilez/DisCease A complex system that studies migration and spread of diseases. JavaScript research pik -https://github.com/akifumi-wachi-4/safe_near_optimal_mdp Safe Reinforcement Learning in Constrained Markov Decision Processes Python research pik -https://github.com/akifumi-wachi-4/spolf Safe Policy Optimization with Local Features Python research pik -https://github.com/aklein1995/exploration_sil_im Python research pik -https://github.com/aklein1995/intrinsic_motivation_techniques_study Python research pik -https://github.com/aklein1995/Multi-Agent-Reinforcement-MADDPG Python research pik -https://github.com/aklein1995/Navigation_Bananas_DRL Python research pik -https://github.com/aklein1995/Pong_withDRL Jupyter Notebook research pik -https://github.com/AlexPasqua/Autoencoders Pytorch implementation of various autoencoders (contractive, denoising, convolutional, randomized) Python research pik -https://github.com/AlexPasqua/DeepNetSlice Reinforcement Learning tool for Network Slice Placement problems Python research pik -https://github.com/AlexPasqua/DM-project Analysis of the spending behaviour of customers in an online shopping website Jupyter Notebook research pik -https://github.com/AlexPasqua/keras-caffe-converter Keras - Caffe converter (both directions) with pruning demos in Keras. Originally developed as BSc thesis project @ University of Verona Python research pik -https://github.com/AlexPasqua/Sum-Product-Networks Survey and presentation about Sum-Product Networks (SPNs) research pik -https://github.com/amnmalik/gcam-v6-ceew R research pik -https://github.com/amnmalik/PhdSummary Contains all output - published papers, presentations, code during the course of my PhD research pik -https://github.com/amnmalik/PhDThesis Contains code and figures to my PhD thesis TeX research pik -https://github.com/amnmalik/reducingstrandedassets Contains data and code to produce figures published in the paper https://iopscience.iop.org/article/10.1088/1748-9326/ab8033#references research pik -https://github.com/amy12xx/ml_notes_and_reports Any and all reports / notes related to AI. research pik -https://github.com/anand-bala/deepsort_ros Python research pik -https://github.com/anand-bala/perception-algorithms Repository of PyTorch-based perception algorithms I use/have used in my research Python research pik -https://github.com/anand-bala/symbolic-automata-monitors Simple implementation of symbolic automata for monitoring real-valued signals Python research pik -https://github.com/andersthuesen/bachelor-project Bachelor project for BSc Artificial Intelligence and Data Science Jupyter Notebook research pik -https://github.com/andersthuesen/ChromaAI A deep neural network for colorizing greyscale images. DTU Project. Jupyter Notebook research pik -https://github.com/andersthuesen/reinforcement-exploration This project investigates different methods of exploration in an reinforcement learning setting Python research pik -https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India Analysis of the projected very wet monsoon seasons on the Indian subcontinent using 32 CMIP6 models. Codes for publication: https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2022GL098856 Python research pik -https://github.com/AnjaKatzenberger/CMIP6-Indian-Monsoon Analysis of the projected changes of the Indian summer monsoon using 32 CMIP6 models Python research pik -https://github.com/aodenweller/green-h2-upscaling Model code and input data of the technology diffusion model for electrolysis capacity R research pik -https://github.com/araffin/eagerx_quadruped Python research pik -https://github.com/araffin/es-with-search-path Implementation of the (μ/μ,λ)-Evolution Strategy (ES) with Search Path algorithm in C++ C research pik -https://github.com/araffin/graph-annotation-tool A graph annotation tool using a flask server and javascript HTML research pik -https://github.com/araffin/rl-baselines-zoo A collection of 100+ pre-trained RL agents using Stable Baselines, training and hyperparameter optimization included. Python research pik -https://github.com/araffin/rl-handson-rlvs21 Stable-Baselines3 (SB3) reinforcement learning tutorial for the Reinforcement Learning Virtual School 2021. Jupyter Notebook research pik -https://github.com/araffin/robotics-rl-srl S-RL Toolbox: Reinforcement Learning (RL) and State Representation Learning (SRL) for Robotics Python research pik -https://github.com/araffin/sbx SBX: Stable Baselines Jax (SB3 + Jax) Python research pik -https://github.com/araffin/srl-zoo State Representation Learning (SRL) zoo with PyTorch - Part of S-RL Toolbox Python research pik -https://git+A726+B726 Python research pik -https://github.com/aseembits93/VS_CNN "Implementation of IEEE ICRA 2017 paper ""Exploring Convolutional Networks for Visual Servoing""" Matlab research pik -https://github.com/atreyasha/language-detection Language detection for WiLI-2018 via character n-gram profiles from Cavnar and Trenkle (1994) Python research pik -https://github.com/atreyasha/mimic3-benchmarks-occlusion Perturbation analysis of MIMIC-III Benchmarks best IHM model using occlusion Python research pik -https://github.com/atreyasha/mv-temporal-rgan Multivariate recurrent GANs aimed at generating biomedical time-series. Methodology involves drawing symmetries to adversarial image generation Python research pik -https://github.com/atreyasha/semantic-isometry-nmt Investigating the isometric behaviour of Neural Machine Translation models on binary semantic equivalence spaces Python research pik -https://github.com/atreyasha/sentiment-argument-mining Sentiment analysis and argumentation mining in UNSC Speeches Python research pik -https://github.com/atreyasha/spam-detection Investigating whether sequential learning is inherently important for the task of spam classification, through a comparison of SVM vs. CNN-LSTM models Python research pik -https://github.com/ayeright/swafa Python research pik -https://github.com/bodirsky/lucode R package | Landuse Coding Tools R research pik -https://github.com/BolunDai0216/DifferentiableOptimizationCBF [IEEE RA-L 2023] Official Implementation of Safe Navigation and Obstacle Avoidance Using Differentiable Optimization Based Control Barrier Functions Python research pik -https://github.com/BolunDai0216/FR3Env Python research pik -https://github.com/BolunDai0216/ppo_torch Python research pik -https://github.com/bs538/PlanetImage Basic utilities for exploratory data analysis with PlanetLabs satellite images Jupyter Notebook research pik -https://github.com/BurakDmb/DifferentiableSearchIndexAndRetrieval Python research pik -https://github.com/BurakDmb/mpc_example Python research pik -https://github.com/BurakDmb/quadsim QuadSim: A Quadcopter Rotational Dynamics Simulation For Reinforcement Learning Algorithms Python research pik -https://github.com/Butanium/monte-carlo-tree-search-TSP Monte Carlo tree search for the travelling salesman problem (MCTS for the TSP) OCaml research pik -https://github.com/camillebelmin/achieving-universal-energy-access "Companion repository for the paper: Belmin et al. ""Achieving universal energy access while reducing energy demand? Evidence from energy-specific population projections""" TeX research pik -https://github.com/caviddhen/bowheads scripts for processing of bowhead habitat analysis R research pik -https://github.com/caviddhen/ggcmi2agmip R research pik -https://github.com/caviddhen/MagpieNCGains R Library that converts MAgPIE generated nc files into GAINS resolution R research pik -https://github.com/caviddhen/MarkupsChen Calculation and analysis of consumer food price markups R research pik -https://github.com/cchrisgong/aip_rockstar Code for the paper on analyzing large-scale N-body dark matter simulation, finding halo pairs and their satellite galaxies, and identifying the origin of the distribution of the latter https://academic.oup.com/mnras/article-abstract/488/3/3100/5531334 Python research pik -https://github.com/cchrisgong/dieter-coupling-remind GAMS research pik -https://github.com/cchrisgong/kuramoto_no_cluster "Code for Chaos paper "" Repulsively coupled Kuramoto-Sakaguchi phase oscillators ensemble subject to common noise""" Python research pik -https://github.com/cchrisgong/remind-coupling-dieter GAMS research pik -https://github.com/christophbertram/covid-power-sector R research pik -https://github.com/christopher-hesse/computer-tennis Pong-like reinforcement learning environment Python research pik -https://github.com/chroetz/PaperQuadRate19 TeX research pik -https://github.com/chroetz/PaperStrong22 TeX research pik -https://github.com/chroetz/poisrrr Poission reduced-rank models in R R research pik -https://github.com/chroetz/spheregr R research pik -https://github.com/chroetz/TdaCpdSim R package for simulations to evaluate change point detection via topological data analysis R research pik -https://github.com/chroetz/WhenMeasureChaos R research pik -https://github.com/CppMaster/SC2-AI Python research pik -https://github.com/cyl628/prompt-typing Python research pik -https://github.com/cyprienc/binary-Huffman-algorithm Generate the binary coding of a given set of 'letters' with their respective probability. research pik -https://github.com/d3sm0/dantebot Python research pik -https://github.com/d3sm0/gym-vdp Van Der Pol Oscillator for RL Python research pik -https://github.com/d3sm0/svg Implementation of stochastic value gradients Python research pik -https://github.com/danielhuppmann/binary_equilibrium Illustrative examples of a multi-objective program subject to a binary quasi-equilibrium Assembly research pik -https://github.com/danielhuppmann/climate-risks-academy-2021 Advanced assignment for the EUI-FBF-OW Climate Risks Academy 2021 Jupyter Notebook research pik -https://github.com/danielhuppmann/iea-netzero2050-datawrangler Transform data supporting the IEA Netzero2050 Roadmap (2021) to the IAMC format Jupyter Notebook research pik -https://github.com/david-lindner/ai-safety-debate Implementing 'AI Safety via Debate' experiments Python research pik -https://github.com/david-lindner/idrl "Code accompanying the paper ""Information Directed Reward Learning for Reinforcement Learning"" (NeurIPS 2021)." Python research pik -https://github.com/david-lindner/safe-grid-gym A gym interface for AI safety gridworlds created in pycolab. Python research pik -https://github.com/david-lindner/single-peaked-bandits "Code accompanying ""Addressing the Long-term Impact of ML-based Decisions via Policy Regret"", IJCAI 2021. " Python research pik -https://github.com/dbantje/internalization Jupyter Notebook research pik -https://github.com/deleip/empirical_analysis_of_cascading_effects "Code to internship report ""Empirical Analysis of Cascading Effects using CCM""" R research pik -https://github.com/dengemann/meeg-preprocessing Preprocessing tools for MEG/EEG Python research pik -https://github.com/dengemann/paper-multimodal-stacking-figures Figure repo for Engemann et al 2019 multimodal stacing paper. R research pik -https://github.com/devcurmudgeon/cida Python research pik -https://github.com/dfilan/clusterability_in_neural_networks Jupyter Notebook research pik -https://github.com/elliottower/abstraction This repo provides a scalable way of investigating the layer-by-layer evolution of abstraction in deep neural networks. Python research pik -https://github.com/elliottower/ProtoQA_Macaw Baseline of Allenai's Macaw model for use with ProtoQA dataset Python research pik -https://github.com/emolinab/PlotsPaper Plotting scripts for Inertia Paper R research pik -https://github.com/emolinab/PlottingScripts Scripts to plot results. Inertia paper R research pik -https://github.com/enosair/bentkus_conf_seq Jupyter Notebook research pik -https://github.com/enosair/federated-fdp Python research pik -https://github.com/enosair/gdp-edgeworth Jupyter Notebook research pik -https://github.com/enosair/lightcurve-download Download and process fits data Shell research pik -https://github.com/enosair/tensor-subspace-norm Matlab research pik -https://github.com/ernestum/clestus JavaScript research pik -https://github.com/ernestum/data-samples-printer Don't be just mean and standard, print histograms as unicode instead! Python research pik -https://github.com/ernestum/GeodesicSphere A bunch of helper functions that help to design and visualize geodesic spheres and domes of arbitrary frequency in OpenSCAD OpenSCAD research pik -https://github.com/etzinis/fedenhance Code for the paper: Separate but togerher: Unsupervised Federated Learning for Speech Enhancement from non-iid data Jupyter Notebook research pik -https://github.com/etzinis/heterogeneous_separation Code and data recipes for the paper: Heterogeneous Target Speech Separation Python research pik -https://github.com/etzinis/nldrp Non linear dynamics for emotion classification Python research pik -https://github.com/etzinis/optimal_condition_training Code and data recipes for the paper: Optimal Condition Training for Target Source Separation by Efthymios Tzinis, Gordon Wichern, Paris Smaragdis and Jonathan Le Roux Python research pik -https://github.com/etzinis/polymorphisms_statistic_analysis Code for my contribution in a medicine related project/paper with faculty form Kapodistrian University of Athens. Jupyter Notebook research pik -https://github.com/etzinis/sudo_rm_rf Code for SuDoRm-Rf networks for efficient audio source separation. SuDoRm-Rf stands for SUccessive DOwnsampling and Resampling of Multi-Resolution Features which enables a more efficient way of separating sources from mixtures. Jupyter Notebook research pik -https://github.com/etzinis/unsupervised_spatial_dc "Code for the paper: ""Unsupervised Deep Clustering for Source Separation: Direct Learning from Mixtures using Spatial Information""" Python research pik -https://github.com/etzinis/unsup_speech_enh_adaptation Unsupervised domain adaptation for conversational speech enhancement using RemixIT Jupyter Notebook research pik -https://github.com/FelicitasBeier/IrrigationPotentials "This repository contains the outputs to the article Beier et al. (2022) ""Economically Efficient and Environmentally Sustainable Irrigation Potentials: a spatially explicit global assessment""" HTML research pik -https://github.com/FelicitasBeier/mrwater4SIMPLE-G This repository provides the pipeline of preparing data provided by the mrwater hydro-economic irrigation water allocation algorithm to SIMPLE-G R research pik -https://github.com/FelicitasBeier/mrwaterPlots R research pik -https://github.com/filipinascimento/bigscience Big Science Project Jupyter Notebook research pik -https://github.com/filipinascimento/bl-network-communities App to obtain the community structure of networks by using the Louvain or Infomap methods. All the Louvain quality functions work for networks with negative weights. Python research pik -https://github.com/filipinascimento/bl-network-measurements App to calculate several basic statistics for networks and their respective null model distributions. Python research pik -https://github.com/filipinascimento/bl-network-nullmodel Generates an esemble of networks according to null models that try to reproduce the data. Erdos reyni (random), Barabási-Albert and Configuration model are implemented Python research pik -https://github.com/filipinascimento/bl-network-preprocess App to preprocess connectivity/similarity matrices (conmat) and generate a filtered version of the network, which can be directed or undirected, weighted or unweighted. Python research pik -https://github.com/filipinascimento/bl-network-report App to generate reports from networks. This includes network properties, node attributes and their respective distributions. Python research pik -https://github.com/filipinascimento/bl-network-template-matlab Example template for network analyses using matlab inside brainlife. MATLAB research pik -https://github.com/filipinascimento/bl-timeseries2network Calculates a similarity matrix (such as correlation, covariance, etc) from time series and convert it to a network datatype (JGFZ) so it can be used in the network pipeline. Python research pik -https://github.com/filipinascimento/cxnetworks-docker Network science docker image with basic libraries. Currently being used to run brainlife network science apps. Dockerfile research pik -https://github.com/filipinascimento/malleability C research pik -https://github.com/filipinascimento/metabonet Interactive visualization for metabolite networks. Under development. JavaScript research pik -https://github.com/filipinascimento/openalex-raw Tools to process OpenAlex raw snapshot files Python research pik -https://github.com/filipinascimento/openalexnet OpenAlex Networks is a helper library to process and obtain data from the OpenAlex dataset via API. It also provides functionality to generate citation and coauthorship networks from queries. Jupyter Notebook research pik -https://github.com/filipinascimento/RModularity Small utility to calculate the robustness modularity, information modularity and modularity difference. Python research pik -https://github.com/filipinascimento/teleconnectionsgranger Notebook to find teleconnections in Anomalies in Precipitation and Temperature cross the globe using lagged correlation or Granger causality Jupyter Notebook research pik -https://github.com/filipinascimento/WOSRaw Collection of utilities to process raw XML data from the Web of Science. Python research pik -https://github.com/floringogianu/atari-agents Code and links for over 25,000 trained Atari agents Python research pik -https://github.com/floringogianu/categorical-dqn A working implementation of the Categorical DQN (Distributional RL). Python research pik -https://github.com/floringogianu/paper-notebooks A collection of notebooks aiding the understanding of machine-learning papers. Jupyter Notebook research pik -https://github.com/floringogianu/per-study Prioritized Experience Replay study, including reproduction of the BlindCliffWalk experiments in the original paper www.arxiv.org/pdf/1511.05952.pdf Jupyter Notebook research pik -https://github.com/floringogianu/rlog Preconfigured python logging with some extra bells and whistles for RL Python research pik -https://github.com/floringogianu/schrodinger An investigation into uncertainty estimates for deep neural networks. Python research pik -https://github.com/floringogianu/wintermute A small and pragmatic library for Reinforcement Learning primitives Python research pik -https://github.com/ftl-traveller/youtube-sentiment-analysis-opinion-mining Opinion mining through Sentiment Analysis on YouTube video comments Jupyter Notebook research pik -https://github.com/g-leech/masks_v_mandates Data and code on the population effects of mask-wearing on COVID Jupyter Notebook research pik -https://github.com/g-leech/Py2HTK Python wrapper for the Cambridge Hidden Markov Model Toolkit Python research pik -https://github.com/gabriel-abrahao/analyze_cesm Python research pik -https://github.com/glmcdona/FoosRL Reinforcement learning for Foosball using a Unity physics model ml-agents and Keras tensorflow ASP research pik -https://github.com/glmcdona/LuxPythonEnvGym Matching python environment code for Lux AI 2021 Kaggle competition, and a gym interface for RL models. Python research pik -https://github.com/glmcdona/MALM MALM: Malware Monitor C++ research pik -https://github.com/glmcdona/Process-Dump Windows tool for dumping malware PE files from memory back to disk for analysis. C research pik -https://github.com/glmcdona/sparse-tabular-ml-benchmark Benchmark for comparing tabular sparse categorical machine learning methods. Python research pik -https://github.com/harmening/HArtMuT 🧠 Head ARTefact Modelling Using Tripoles Julia research pik -https://github.com/harmening/MRIsegmentation 🧠 Automatic MRI segmentation pipeline for consistent FEM and BEM mesh creation from MRI scans of human heads MATLAB research pik -https://github.com/harmening/signature_extraction 💬NLP - Library for splitting email content into a human-written body and an automatically appended signature. Python research pik -https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures "This repository contains all correction schemes proposed and used in the article ""Border effect corrections for diagonal line based recurrence quantification analysis measures"" (submitted to Physics Letters A)" MATLAB research pik -https://github.com/hkraemer/InterSpikeSpectra-Matlab InterSpikeSpectra for Matlab MATLAB research pik -https://github.com/hkraemer/MCDTS.jl Julia research pik -https://github.com/hkraemer/PECUZAL_Julia For Hauke and George's code on delay coordinate embedding Julia research pik -https://github.com/hkraemer/PECUZAL_Matlab PECUZAL implementation in Matlab HTML research pik -https://github.com/hkraemer/PECUZAL_python Python research pik -https://github.com/honglu2875/weirdonetworks This is a collection of non-conventional neural networks plus a collection of helper function to assist a study Jupyter Notebook research pik -https://github.com/JacobPfau/introspective-self-consistency Jupyter Notebook research pik -https://github.com/JacobPfau/PENCIL A Modular Pytorch Re-Implementation of Probabilistic End-to-end Noise Correction for Learning with Noisy Labels (CVPR 2019) Python research pik -https://github.com/JacobPfau/procgenAISC C++ research pik -https://github.com/JakobBruenker/HDR University project to combine several images at different exposures into one HDR image C++ research pik -https://github.com/jakobkolb/fMRI_FF fMRI experiment for Flavia Filimon @ MPIB AGS Script research pik -https://github.com/jakobkolb/Master-Thesis "Code for Master thesis 'Competitive sorption to functional nanoparticles""" TeX research pik -https://github.com/jakobkolb/ml-covid-nowcasting ML based nowcasting of covid cases from vital data from wearable devices and reported symptoms HTML research pik -https://github.com/jakobkolb/pysave numerical model for testing the performance of different opinion formation models on finding the optimal savings rate in a Ramsey–Cass–Koopmans model. Jupyter Notebook research pik -https://github.com/jansteinhauser/masc Thesis project modeling and analyzing synergies and conflicts between sustainability goals in agriculture and land use GAMS research pik -https://github.com/jbkjr/allennlp_sempar Experiments with AllenNLP on semantic parsing datasets Python research pik -https://github.com/jbloomAus/ARENA_2.0-RLHF Preparing content for the ARENA RLHF day. Jupyter Notebook research pik -https://github.com/jbloomAus/toy_model_interpretability I'd like to start playing around with toy models to better understand results in recent papers. Python research pik -https://github.com/jhilaire/ssawosacarb Data analysis of carbonization patterns in Sub-Saharan Africa (without South Africa) R research pik -https://github.com/jjshoots/DL_FasteNet Very fast fastener detection algorithm based on saliency map and contour finding algorithm. Python research pik -https://github.com/jjshoots/PyFlyt UAV Flight Simulator Gymnasium Environments Python research pik -https://github.com/jjshoots/pyflyt_dogfight Aerial Combat environment build around PyFlyt Python research pik -https://github.com/jjshoots/railway_drone Python research pik -https://github.com/jkterry1/ASWS "Code to use Augmented Shapiro Wilks Stopping, as well as code for the paper ""Statistically Signifigant Stopping of Neural Network Training""" Python research pik -https://github.com/jkterry1/MCMES_cleanup_scratch Python research pik -https://github.com/jkterry1/parameter-sharing-paper A training framework for Stable Baselines3 reinforcement learning agents, with hyperparameter optimization and pre-trained agents included. Python research pik -https://github.com/jmhessel/BasicSpearmint A simple tool for small scale experiments using bayesian optimization Python research pik -https://github.com/jmhessel/caption_contest_corpus "Corpus to accompany: ""Do Androids Laugh at Electric Sheep? Humor ""Understanding"" Benchmarks from The New Yorker Caption Contest""" Python research pik -https://github.com/jmhessel/catrank Pretrained models for the ranking task described in Cats and Captions vs. Creators and the Clock (WWW 2017) Python research pik -https://github.com/jmhessel/clipscore CLIPScore EMNLP code Python research pik -https://github.com/jmhessel/FightingWords Quick implementation of Monroe et al.'s algorithm for comparing languages Python research pik -https://github.com/jmhessel/fmpytorch A PyTorch implementation of a Factorization Machine module in cython. Python research pik -https://github.com/jmhessel/multi-retrieval Code for Unsupervised Discovery of Multimodal Links in Multi-Image/Multi-Sentence Documents Python research pik -https://github.com/jnnsbrr/PhotoBioDynamics Small model to simulate biomass production on a global scale. Products are Gross Primary Production (GPP), Net Primary Production (NPP). It is based on a modified version of the Farquhar approach (Haxeltine and Prentice 1996, Farquhar et al. 1980). Where possible, it uses vectorization and parallelization and dynamically downloads latest av R research pik -https://github.com/jondurbin/airoboros Customizable implementation of the self-instruct paper. Python research pik -https://github.com/joonleesky/train-procgen-pytorch Pytorch implementation on OpenAI's Procgen ppo-baseline, built from scratch. Python research pik -https://github.com/jsalvatier/async_deep_reinforce Python research pik -https://github.com/jsalvatier/numexpr adding user-func support to numexpr Python research pik -https://github.com/jsalvatier/PyGame-Learning-Environment Python research pik -https://github.com/JSchapke/essential-gene-detection Detection of essential genes with Graph Neural Networks on protein-protein interaction networks Python research pik -https://github.com/JSchapke/routing-environment Python research pik -https://github.com/JulesGM/AccelerateRL4LMs Python research pik -https://github.com/JulesGM/DeepNeuro Detection of autism through the machine learning and deep learning analysis of Magnetoencephalography scans. Jupyter Notebook research pik -https://github.com/JulesGM/eli5_retrieval_large_lm Jupyter Notebook research pik -https://github.com/JulesGM/RL4LMS_fork Python research pik -https://github.com/juliusgarbe/modelling_sandbox Examples of basic numerical modelling approaches used in ice-sheet modelling and some (very) simple ice-sheet models. Jupyter Notebook research pik -https://github.com/jvmncs/Contamination A blood test contamination research project with the Cleveland Clinic Jupyter Notebook research pik -https://github.com/jvmncs/DeepIDS Playing around with IDS data in Keras Jupyter Notebook research pik -https://github.com/jvmncs/ParamNoise A comparison of parameter space noise methods for exploration in deep reinforcement learning Python research pik -https://github.com/jvmncs/PytorchAdversarialGym A Gym environment for evaluating and enabling new research into attacking and defending neural networks with adversarial perturbations Python research pik -https://github.com/jvmncs/reinforcement-learning Solutions to Denny Britz's reinforcement learning exercises Jupyter Notebook research pik -https://github.com/kachayev/car-racing-attention-agent "Reproduce the results of ""Neuroevolution of Self-Interpretable Agents"" paper" Python research pik -https://github.com/kachayev/ssl-in-one-epoch "Reproduce results of ""EMP-SSL: Towards Self-Supervised Learning in One Training Epoch"" paper." Python research pik -https://github.com/kachayev/timely0 "Minimalistic implementation of Naiad paper ""A Timely Dataflow System"" in Scala" Scala research pik -https://github.com/kcobbe/gans_mnist Using GANs for Unsupervised and Semi-supervised Learning on MNIST Python research pik -https://github.com/kcobbe/ram_mnist Recurrent Attention Model (RAM) on MNIST Python research pik -https://github.com/kcobbe/slitherin Single agent and multi agent learning on Slitherin' game Python research pik -https://github.com/kronion/microrts-ppo-comparison Compare PPO implementation performance on microrts gym env Python research pik -https://github.com/kzl/aop Official codebase for Adaptive Online Planning for Continual Lifelong Learning. Python research pik -https://github.com/kzl/lifelong_rl Pytorch implementations of RL algorithms, focusing on model-based, lifelong, reset-free, and offline algorithms. Official codebase for Reset-Free Lifelong Learning with Skill-Space Planning. Python research pik -https://github.com/kzl/universal-computation Official codebase for Pretrained Transformers as Universal Computation Engines. Python research pik -https://github.com/langosco/neural-variational-gradient-descent Code for the paper 'Neural Variational Gradient Descent'. We perform nonparametric variational inference by transporting samples along a dynamically learned trajectory. Python research pik -https://github.com/langusta/sutton-reinforcement-learning-intro "Excersises and figures from ""Reinforcement Learning, An Introduction"" by Sutton and Barto" Python research pik -https://github.com/lcswillems/ai-mx-docs JavaScript research pik -https://github.com/lcswillems/automatic-curriculum "Algorithms for curriculum learning. The code of the ""Mastering Rate based Curriculum Learning"" paper." Python research pik -https://github.com/lcswillems/MVA-RecVis-project Implementation and comparison of 2 behavior cloning algorithms: DART and DAGGER Jupyter Notebook research pik -https://github.com/lcswillems/MVA-RL-project Implementation and comparison of 5 algorithms: EWF, Exp3, Exp3.P, CFR and CFR+ Python research pik -https://github.com/lcswillems/MVA-TDA-article "Reproduction of the experiments in the article ""Persistence-based Structural Recognition""" Python research pik -https://github.com/lcswillems/named-entity-recognizer A simple and easy-to-use Named Entity Recognizer (written in Keras) with HTML output and links to Wikipedia pages Python research pik -https://github.com/leesharkey/deep_attractor_network Python research pik -https://github.com/lxuechen/inference-suboptimality "Code for ""Inference Suboptimality in Variational Autoencoders""" Python research pik -https://github.com/lxuechen/private-transformers A codebase that makes differentially private training of transformers easy. Python research pik -https://github.com/maibrittbergh/dischanalyst R research pik -https://github.com/maibrittbergh/lfanalyse "R-Package to analyse discharge data. To get startet ""lfanalyse"" offers fucntions to load and structure the GRDC-Dataset. For the analysis package contains functions for a descriptive overview, a threshold base analysis as well as trend analysis. " R research pik -https://github.com/ManifoldFR/entropic-mfg Library for solving variational mean-field games using optimal transport and the Sinkhorn algorithm C++ research pik -https://github.com/ManifoldFR/point-process-rust Simulation of point processes in the Rust programming language Rust research pik -https://github.com/marcwie/pycoment Compute the entropy and the complexity of a given (set of) network(s) Python research pik -https://github.com/marcwie/sedac-gpw-parser Download, crop, plot and analyze high-resolution population estimates from the Socioeconomic Data and Applications Center Python research pik -https://github.com/MathisFederico/coffeematon A replication of the paper: Quantifying the Rise and Fall of Complexity in Closed Systems: The Coffee Automaton Python research pik -https://github.com/MathisFederico/LearnRL A library to use and learn reinforcement learning algorithms Python research pik -https://github.com/matthiasmengel/fast_ant_sid Antarctic ice discharge parametrization and calibration code Fortran research pik -https://github.com/matthiasmengel/pism_pik merge pik modifications to stable versions of PISM. C++ research pik -https://github.com/matthiasmengel/sealevel "Source code for ""Sea level constrained by observations and commitment""" Python research pik -https://github.com/maximilian-gelbrecht/ChaoticNDETools.jl A collection of tools, helper functions and layers to assist working with chaotic Neural Differential Equation in Julia Julia research pik -https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl Julia implementation of the Ghil-Sellers 1D Energy Balance Model Julia research pik -https://github.com/maximilian-gelbrecht/MCBB.jl Monte Carlo Basin Bifurcation Analysis Jupyter Notebook research pik -https://github.com/Melanol/bacteria_evo Python research pik -https://github.com/mgoulao/Linear-Probing-for-RL Python research pik -https://github.com/Miffyli/nle-sample-factory-baseline Python research pik -https://github.com/Miffyli/policy-supervectors Creating fixed-length vectors to describe RL/GA policies Python research pik -https://github.com/Miffyli/rl-action-space-shaping Experiment code for testing effect of various action space transformations in reinforcement learning Python research pik -https://github.com/Miffyli/rl-human-prior-tricks Evaluating different engineering tricks that make RL work Python research pik -https://github.com/Miffyli/sym Website for detailed game mechanics JavaScript research pik -https://github.com/Miffyli/ToriLLE Toribash Learning Environment Lua research pik -https://github.com/mikapfl/gin_ansible_role Install the gin scientific data sharing service using docker via ansible CSS research pik -https://github.com/mikapfl/read_di_unfccc Dataset containing all data available from the UNFCCC API available at https://di.unfccc.int, and scripts to generate it Jupyter Notebook research pik -https://github.com/mikapfl/unfccc_di_data Dataset containing all data available from the UNFCCC API at https://di.unfccc.int Makefile research pik -https://github.com/mikewin-climsci/BGPvBGC Prioritizing forestation based on biogeochemical and local biogeophysical impacts, Windisch et al. Jupyter Notebook research pik -https://github.com/miljanm/deep-learning-for-sentiment-mining "Code created as part of my masters thesis project ""Deep learning for fine-grained document level sentiment mining""" Python research pik -https://github.com/miljanm/Political-Twitter-Sentiment-Mining A model for determining sentiment of politically related tweets during a presidential debate Python research pik -https://github.com/minhlong94/Random-Mixup [Practical-DL @ AAAI'23] Official code of R-Mix and RL-Mix, accepted at 2nd Practical-DL Workshop @ AAAI'23 Python research pik -https://github.com/mjziebarth/pybalonor Bayesian Analysis of the Log-Normal distribution in Python C++ research pik -https://github.com/mjziebarth/REHEATFUNQ Regional aggregate heat flow distributions and heat flow anomaly quantification Jupyter Notebook research pik -https://github.com/mppalves/NetLogo_Bacterial_Infection_Model Agent based model of inflammatory process NetLogo research pik -https://github.com/mppalves/PIK-projects Files related to my Master thesis research Mathematica research pik -https://github.com/mppalves/soilcemulator R research pik -https://github.com/neale/avoiding-side-effects Code for reproducing the results from the paper Avoiding Side Effects in Complex Environments Python research pik -https://github.com/neale/HyperGAN Generative Model for Neural Networks Python research pik -https://github.com/neale/neural-canvas creative deep learning with implicit neural representations Python research pik -https://github.com/neale/neural-data-format Data compression and retrieval with implicit neural representations Python research pik -https://github.com/neale/particle-based-vi_ood Implementation of particle based VI methods for OOD detection Python research pik -https://github.com/PhilippVerpoort/blue-green-H2 Data and codes for blue-green hydrogen competition Python research pik -https://github.com/PhilippVerpoort/green-value-chains Jupyter Notebook research pik -https://github.com/PhilippVerpoort/posted Potsdam Open-Source Techno-Economic Database Python research pik -https://github.com/pik-copan/MayaSim Simulation of the raise and fall of the ancient Maya civilization on the Yucatan penisula Jupyter Notebook research pik -https://github.com/pik-copan/pycascades Python framework for simulating tipping cascades on complex networks Jupyter Notebook research pik -https://github.com/pik-copan/pycopanbehave Python implementation of COPAN:BEHAVE model Python research pik -https://github.com/pik-copan/pycopancore reference implementation of the copan:CORE World-Earth modelling framework Python research pik -https://github.com/pik-copan/pycopandiscount Python script to run the copan:DISCOUNT model Python research pik -https://github.com/pik-copan/pycopanpbcc Python scripts for analyzing planetary boundaries in a conceptual model of the Earth's carbon cycle including geoengineering by terrestrial carbon dioxide removal Python research pik -https://github.com/pik-copan/pydrf Python scripts for estimating dose response functions and performing surrogate analysis based on temporal network data Jupyter Notebook research pik -https://github.com/pik-copan/pyregimeshifts Python scripts for detecting nonlinear regime shifts in multiple paleoclimate time series as in Donges et al., Clim. Past. 11, 709-741 (2015) Python research pik -https://github.com/pik-copan/pytippinginteractions Python scripts for studying dynamics of interacting tipping elements Python research pik -https://github.com/pik-copan/pyunicorn Unified Complex Network and Recurrence Analysis Toolbox Python research pik -https://github.com/pik-gane/vodle We develop an interactive, consensus-oriented group decision app JavaScript research pik -https://github.com/PIK-LPJmL/LandInG The Land Input Generator (LandInG) contains a collection of scripts to derive basic input datasets for terrestrial ecosystem models from diverse and partially conflicting data sources. R research pik -https://github.com/PIK-LPJmL/lpjmlkit A collection of basic functions to facilitate the work with the DGVM LPJmL hosted at the Potsdam Institute for Climate Impact Research. It provides functions for running LPJmL, as well as reading, processing and writing model-related data such as inputs and outputs or configuration files. R research pik -https://github.com/PIK-LPJmL/LPJmLmdi LPJmLmdi - model-data integration for the LPJmL dynamic global vegetation model (R package) R research pik -https://github.com/pik-piam/blackmagicc Generate warming pathways using MAGICC for your MAgPIE runs using reference REMIND emissions R research pik -https://github.com/pik-piam/brick R research pik -https://github.com/pik-piam/citation R package | create cff citation file from R package metadata R research pik -https://github.com/pik-piam/demystas R package | Demystifying Automation on Simple Tasks R research pik -https://github.com/pik-piam/edgeTransport A detailed transport sector model. R research pik -https://github.com/pik-piam/edgeTrpLib Support Library for EDGE-Transport. R research pik -https://github.com/pik-piam/GDPuc R package for GDP unit conversion R research pik -https://github.com/pik-piam/gdx R package | readGDX package for R R research pik -https://github.com/pik-piam/gms R research pik -https://github.com/pik-piam/goxygen Documentation package for modular GAMS code R research pik -https://github.com/pik-piam/limes Contains the LIMES-specific routines for data and model output manipulation. R research pik -https://github.com/pik-piam/lockfile-archive Includes renv.lock files to document the pik-piam R package environment at different points in time R research pik -https://github.com/pik-piam/lpjclass Package containing the LPJ-Object-Class together with relevant functions and methods. R research pik -https://github.com/pik-piam/lucode2 A collection of tools which allow to manipulate and analyze code. R research pik -https://github.com/pik-piam/luplot Some useful functions to plot data such as a map plot function for MAgPIE objects. R research pik -https://github.com/pik-piam/luscale R package | Landuse Scaling Tools R research pik -https://github.com/pik-piam/lusweave R package | Landuse Sweave Utilities R research pik -https://github.com/pik-piam/m4fsdp Output routines for extracting results from the MAgPIE framework (versions 4.x) for the FSDP project R research pik -https://github.com/pik-piam/madrat R package | May All Data be Reproducible and Transparent (MADRaT) R research pik -https://github.com/pik-piam/magclass R package | Data Class and Tools for Handling Spatial-Temporal Data R research pik -https://github.com/pik-piam/magpie4 R package | MAgPIE outputs R package for MAgPIE version 4.x R research pik -https://github.com/pik-piam/MAgPIENCGains R research pik -https://github.com/pik-piam/magpiesets R package | MAgPIE sets for R R research pik -https://github.com/pik-piam/mip Model intercomparison visualization package R research pik -https://github.com/pik-piam/modelstats A collection of tools for monitoring and diagnosing models HTML research pik -https://github.com/pik-piam/mrcommons R research pik -https://github.com/pik-piam/mrdieter The mrdieter packages contains data preprocessing for the DIETER model. R research pik -https://github.com/pik-piam/mrdownscale R research pik -https://github.com/pik-piam/mrdrivers Create GDP and population scenarios R research pik -https://github.com/pik-piam/mredgebuildings R research pik -https://github.com/pik-piam/mredgetransport R research pik -https://github.com/pik-piam/mrfable Tool for easy handling of FABLE project data (India Foodcrop) HTML research pik -https://github.com/pik-piam/mrfactors R research pik -https://github.com/pik-piam/mrfeed R research pik -https://github.com/pik-piam/mrfish calculations connected to fish and aquaculture R research pik -https://github.com/pik-piam/mrland R research pik -https://github.com/pik-piam/mrmagpie The package provides cellular magpie related data via the madrat framework. R research pik -https://github.com/pik-piam/mrremind The mrremind packages contains data preprocessing for the REMIND model. R research pik -https://github.com/pik-piam/mrsoil Package contains soil organic carbon cycling model based on IPCC Guidelines 2019 for data prepared in the madrat universe. R research pik -https://github.com/pik-piam/mrtransport R research pik -https://github.com/pik-piam/mrtutorial Tutorial for mr- world packages, made as part of MAgPIE workshop R research pik -https://github.com/pik-piam/mrvalidation Package contains routines to prepare data for validation exercises. R research pik -https://github.com/pik-piam/mrvalidnitrogen Madrat Sublibrary with validation-style reporting of nitrogen budgets R research pik -https://github.com/pik-piam/mrwaste MADRAT-linked package calculates municipal solid waste projections and environmental impacts, doi.org/10.1088/1748-9326/ab8659 R research pik -https://github.com/pik-piam/mrwater MAgPIE water preprocessing R research pik -https://github.com/pik-piam/mrwaterplots Plotting functions for water-specific output analysis of mrwater library R research pik -https://github.com/pik-piam/mstools tool functions that can be used by several madrat-dependent or magpie4 output functions. R research pik -https://github.com/pik-piam/piamenv R research pik -https://github.com/pik-piam/piamInterfaces R research pik -https://github.com/pik-piam/piktests R research pik -https://github.com/pik-piam/project_interfaces Project specific interfaces to REMIND / MAgPIE. R research pik -https://github.com/pik-piam/quitte Bits and pieces of code to use with quitte-style data frames R research pik -https://github.com/pik-piam/r2databus R research pik -https://github.com/pik-piam/regressionworlddata Model estimates parameters of model functions. R research pik -https://github.com/pik-piam/remind Contains the REMIND-specific routines for data and model output manipulation. R research pik -https://github.com/pik-piam/remind2 The remind2 package contains the REMIND-specific routines for data and model output manipulation. R research pik -https://github.com/pik-piam/remindPypsa R research pik -https://github.com/pik-piam/remulator A collection of R tools for fitting model results. R research pik -https://github.com/pik-piam/rmndt Tools for data.table objects in the REMIND context. (Dis-)Aggregation, magpie conversion, interpolation etc. R research pik -https://github.com/pik-piam/rOpenscmRunner Run different simple climate models from R using a unified interface R research pik -https://github.com/pik-piam/shinyresults R package with shiny modules and apps to analyze model results R research pik -https://github.com/pik-piam/trafficlight The package contains tools for data validation and aggregation of validation results. R research pik -https://github.com/pseudo-rnd-thoughts/Elastic-Resource-Allocation Research project on Resource-elastic tasks for edge cloud computing Jupyter Notebook research pik -https://github.com/pvjeetze/Heterogeneity-RootWaterUptake MATLAB code for modelling root water uptake in heterogeneous soil MATLAB research pik -https://github.com/pweigmann/harmonic-power-flow """Julia-Based Open Source Software Module for Harmonic Power Flow"", Master thesis by Pascal Weigmann, TU Berlin." Python research pik -https://github.com/PwnerHarry/CLIA "LaTeX source code and MATLAB implementation for paper ""A Many-Objective Evolutionary Algorithm With Two Interacting Processes: Cascade Clustering and Reference Point Incremental Learning""." TeX research pik -https://github.com/PwnerHarry/DQN A PyTorch Implementation of DQN Python research pik -https://github.com/PwnerHarry/META "Python implementation of ""META-Learning State-based Eligibility Traces for More Sample-Efficient Policy Evaluation""" Python research pik -https://github.com/PwnerHarry/SOOPLAT A convenient PLATform for Single Objective Optimization C++ research pik -https://github.com/PwnerHarry/Stronger_GCN "Implementations of ""Break the Ceiling: Stronger Multi-scale Deep Graph Convolutional Networks""" TeX research pik -https://github.com/qgallouedec/panda-gym Set of robotic environments based on PyBullet physics engine and gymnasium. Python research pik -https://github.com/qgallouedec/semantic_segmentation BE3 Computer vision Python research pik -https://github.com/qxcv/asnets Source for Action Schema Networks paper (AAAI'18) PDDL research pik -https://github.com/qxcv/comp2560 My project for the Semester 2, 2015 offering of COMP2560 (Studies in Advanced Computing R&D) at ANU Matlab research pik -https://github.com/qxcv/engn4528-project-public Public release of ENGN4528 project (vision at ANU) with @KuangyiXing Python research pik -https://github.com/qxcv/magical The MAGICAL benchmark suite for robust imitation learning (NeurIPS 2020) Python research pik -https://github.com/qxcv/structuredinference DMMs for human pose forecasting. Fork of clinicalml/structuredinference (disassociated by Github because it was private for a while) Jupyter Notebook research pik -https://github.com/rajammanabrolu/Automated-Story-Generation research pik -https://github.com/rajammanabrolu/C2PO Automated Storytelling via Causal, Commonsense Plot Ordering Python research pik -https://github.com/rajammanabrolu/CRD3-extended Data accompanying the SIGDIAL-2021 paper https://arxiv.org/abs/2105.15054 Telling Stories through Multi-User Dialogue by Modeling Character Relations by Wai Man Si, Prithviraj Ammanabrolu, Mark O. Riedl research pik -https://github.com/rajammanabrolu/KG-A2C Goal driven language generation using knowledge graph A2C agents Python research pik -https://github.com/rajammanabrolu/KG-DQN Python research pik -https://github.com/rajammanabrolu/Q-BERT Agents that build knowledge graphs and explore textual worlds by asking questions Python research pik -https://github.com/rajammanabrolu/StoryRealization Python research pik -https://github.com/rajammanabrolu/WorldGeneration Generating Interactive Fiction worlds from story plots Python research pik -https://github.com/rajcscw/nlp-gym NLPGym - A toolkit to develop RL agents to solve NLP tasks. Python research pik -https://github.com/rajcscw/pytorch-optimize A simple black-box optimization framework to train your pytorch models for optimizing non-differentiable objectives Python research pik -https://github.com/remindmodel/remind REMIND - REgional Model of INvestments and Development GAMS research pik -https://github.com/Renato-Rodrigues/EU_2040_transformation 2040 greenhouse gas reduction targets and energy transitions in line with the EU Green Deal HTML research pik -https://github.com/rgieseke/opencoviddata Code to download Covid-19 data from RKI SurvStat Python research pik -https://github.com/rizar/actor-critic-public "The source code for ""An Actor Critic Algorithm for Structured Prediction""" Jupyter Notebook research pik -https://github.com/rizar/attention-lvcsr End-to-End Attention-Based Large Vocabulary Speech Recognition Python research pik -https://github.com/rizar/CLOSURE Systematic generalization test for CLEVR Python research pik -https://github.com/rizar/systematic-generalization-sqoop "Code for ""Systematic Generalization: What Is Required and Can It Be Learned""" Python research pik -https://github.com/rmiddelanis/sandy_paper Jupyter Notebook research pik -https://github.com/Rocamonde/catevap Cellular automata simulator for evaluating autonomous traffic policies Python research pik -https://github.com/Rocamonde/savannah-framework Telemetry framework for advanced real-time data harvesting and monitoring. Python research pik -https://github.com/rockt/ChemSpot ChemSpot is a named entity recognition tool for identifying mentions of chemicals in natural language texts, including trivial names, drugs, abbreviations, molecular formulas and IUPAC entities. Since the different classes of relevant entities have rather different naming characteristics, ChemSpot uses a hybrid approach combining a Conditional Random Field with a dictionary. ChemSpot is released under the Common Public License 1.0. Java research pik -https://github.com/rodrigodelazcano/d4rl-minari-dataset-generation Scripts to recreate the D4RL datasets with Minari Python research pik -https://github.com/rtaori/Black-Box-Audio Targeted Adversarial Examples for Black Box Audio Systems Python research pik -https://github.com/rtaori/data_feedback "Code for the paper ""Data Feedback Loops: Model-driven Amplification of Dataset Biases""" Jupyter Notebook research pik -https://github.com/sawcordwell/MDPs.jl Julia package for working with Markov decision processes (MDPs) Julia research pik -https://github.com/sawcordwell/pymdptoolbox Markov Decision Process (MDP) Toolbox for Python Python research pik -https://github.com/ScheiklP/lap_gym Meta-repository of the LapGym project research pik -https://github.com/ScheiklP/sofa_env Reinforcement learning environments for robot-assisted laparoscopic surgery Python research pik -https://github.com/ScheiklP/sofa_godot The SOFA-Godot Plugin - Create SOFA scenes in Godot! GDScript research pik -https://github.com/ScheiklP/sofa_zoo Reinforcement learning scripts for sofa_env environments. Python research pik -https://github.com/sgillen/fractal_mesh Code to analyze policies trained with a reinforcement learning method that encourages low fractional dimension trajectories. Jupyter Notebook research pik -https://github.com/sgillen/fractal_rl Code for CORL 2020 paper: Explicitly Encouraging Low Fractional Dimensional Trajectories Via Reinforcement Learning. Jupyter Notebook research pik -https://github.com/sgillen/fractal_rl_scratch Jupyter Notebook research pik -https://github.com/sgillen/gan_art Exploring art from Generative Adversarial Networks. Python research pik -https://github.com/sgillen/matlab_ars Augmented Random Search for Reinforcement Learning in Matlab MATLAB research pik -https://github.com/shwang/NNG building off of pomonam/NoisyNaturalGradient. Python research pik -https://github.com/shwang/pedestrian_prediction "realtime, confidence-varying trajectory prediction for ""Probabilistically Safe Robot Planning with Confidence-Based Human Predictions"". RSS '18" Python research pik -https://github.com/simoninithomas/Baselines_icm [Work in Progress] ICM plugin for OpenAI Baselines HTML research pik -https://github.com/simoninithomas/Policy_gradients_CartPole A Policy Gradient Learning with CartPole-v0 for Siraj Raval's challenge Jupyter Notebook research pik -https://github.com/simoninithomas/the_mayan_adventure The Mayan Adventure is an open-source reinforcement learning environment for Unity ML-Agents. In this environment, you train your agent (Indie) to find the golden statue in this dangerous environment full of traps. ShaderLab research pik -https://github.com/sparisi/pvr_habitat Pre-Trained Visual Representations for Control Python research pik -https://github.com/stenzelf/biospheremetrics This repository contains code for an R package to analyze outputs R research pik -https://github.com/SwamyDev/gym-quickcheck Gym environments that allow for coarse but fast testing of AI agents. Python research pik -https://github.com/SwamyDev/reinforcement Python module implementing reinforcement learning algorithms, Python research pik -https://github.com/thejat/active-curricula-for-efficient-reinforcement-learning "Code for paper "" Faster Reinforcement Learning Using Active Simulators"" (2017)" Jupyter Notebook research pik -https://github.com/thejat/bandits-with-stochastic-impairments Code accompanying the paper 'Bandits with Stochastic Impairments' (2018) Python research pik -https://github.com/thejat/dynamic-network-growth-models Jupyter Notebook research pik -https://github.com/thejat/facial-political-recognition Jupyter Notebook research pik -https://github.com/thejat/learning-realistic-buyer-models Code for the paper 'An Online Algorithm for Learning Buyer Behavior under Realistic Pricing Restrictions' Python research pik -https://github.com/thejat/learning-to-partition-using-pairwise-compatibilities "Code for the paper "" Learning to Partition Using Pairwise Compatibilities""" Python research pik -https://github.com/thejat/planout JavaScript research pik -https://github.com/thejat/profit-optimization-ride-sharing "Code for the paper "" Impact of Detour-Aware Policies on Maximizing Profit in Ridesharing""" Jupyter Notebook research pik -https://github.com/thejat/scalable-data-driven-assortment-planning "Code accompanying paper titled ""Optimizing Revenue over Data-driven Assortments"" (2021)" Python research pik -https://github.com/thejat/supervised-learning-with-side-knowledge Code associated with http://arxiv.org/pdf/1405.7764 Matlab research pik -https://github.com/thejat/Thompson-Sampling-for-a-Fatigue-aware-Online-Recommendation-System Jupyter Notebook research pik -https://github.com/Tiiiger/benchmark_llm_summarization research pik -https://github.com/Tiiiger/QPyTorch Low Precision Arithmetic Simulation in PyTorch Python research pik -https://github.com/Tiiiger/SGC "official implementation for the paper ""Simplifying Graph Convolutional Networks""" Python research pik -https://github.com/Tiiiger/templm "Code release for ""TempLM: Distilling Language Models into Template-Based Generators""" Python research pik -https://github.com/tobirohrer/gan-pretraining-ae Jupyter Notebook research pik -https://github.com/tobirohrer/reinforcement-learning-heat-pump Jupyter Notebook research pik -https://github.com/ToBraun/RECFLOW Jupyter Notebook research pik -https://github.com/ToBraun/RECLAC RECLAC Python package Jupyter Notebook research pik -https://github.com/tom-doerr/FAKEBOB_fork_2 Python research pik -https://github.com/tom-doerr/fakebob_offsets Python research pik -https://github.com/tom-doerr/Intrinsic-Image-Popularity Shell research pik -https://github.com/tomMcGrath/feeding-behaviour Jupyter Notebook research pik -https://github.com/tomMcGrath/feeding_analysis "Open-sourced code for the paper ""A mathematical model of feeding in rodents predicts food intake and offers novel insight into feeding behavior""." Jupyter Notebook research pik -https://github.com/toshikwa/discor.pytorch PyTorch implementation of Distribution Correction(DisCor) based on Soft Actor-Critic. Python research pik -https://github.com/toshikwa/fqf-iqn-qrdqn.pytorch PyTorch implementation of FQF, IQN and QR-DQN. Python research pik -https://github.com/toshikwa/gail-airl-ppo.pytorch PyTorch implementation of GAIL and AIRL based on PPO. Python research pik -https://github.com/toshikwa/sac-discrete.pytorch PyTorch implementation of SAC-Discrete. Python research pik -https://github.com/toshikwa/slac-discrete.pytorch PyTorch implementation of Stochastic Latent Actor-Critic(SLAC) extended for discrete action settings. Python research pik -https://github.com/toshikwa/slac.pytorch PyTorch implementation of Stochastic Latent Actor-Critic(SLAC). Python research pik -https://github.com/toshikwa/soft-actor-critic.pytorch PyTorch implementation of Soft Actor-Critic(SAC). Python research pik -https://github.com/toshikwa/vae.pytorch PyTorch Implementation of Deep Feature Consistent Variational Autoencoder. Python research pik -https://github.com/toshikwa/wappo.pytorch PyTorch implementation of Wasserstein Adversarial Proximal Policy Optimization(WAPPO). Python research pik -https://github.com/tscheypidi/mrorganic R research pik -https://github.com/vitusbenson/tropical_rainforest_resilience_nongaussian Python research pik -https://github.com/vwxyzjn/a2c_is_a_special_case_of_ppo A2C is a special case of PPO! Python research pik -https://github.com/vwxyzjn/cleanba CleanRL's implementation of DeepMind's Podracer Sebulba Architecture for Distributed DRL Python research pik -https://github.com/vwxyzjn/cleanrl High-quality single file implementation of Deep Reinforcement Learning algorithms with research-friendly features (PPO, DQN, C51, DDPG, TD3, SAC, PPG) Python research pik -https://github.com/vwxyzjn/envpool-cleanrl Python research pik -https://github.com/vwxyzjn/gym-microrts-paper The source code for the gym-microrts paper. Python research pik -https://github.com/vwxyzjn/invalid-action-masking Source Code for A Closer Look at Invalid Action Masking in Policy Gradient Algorithms Python research pik -https://github.com/vwxyzjn/lm-human-preference-details Python research pik -https://github.com/wbarfuss/CognitiveLevels Python implementation to create the figures used in the publication 'Dynamical systems as a level of cognitive analysis of multi-agent learning - Algorithmic foundations of temporal-difference learning dynamics' Python research pik -https://github.com/wbarfuss/cyexploit cython / python implementation of the COPAN:Exploit model Python research pik -https://github.com/wbarfuss/DetRL Python implementation of the deterministic limit of temporal difference reinforcement learning Jupyter Notebook research pik -https://github.com/wbarfuss/EcoPG Python implementation of the Ecological Public Good model Python research pik -https://github.com/wbarfuss/intrinsic-fluctuations-cooperation All code to reproduce the results of https://arxiv.org/abs/2209.01013 Mathematica research pik -https://github.com/wbarfuss/netlogo-exploit A netlogo implementation of PIK COPANS Exploit model NetLogo research pik -https://github.com/wbarfuss/Paradigms Code for paradigms project Jupyter Notebook research pik -https://github.com/wbarfuss/POLD Partially Observable multi-agent temporal-difference Learning Dynamics in the deterministic infinite memory limit Jupyter Notebook research pik -https://github.com/wbarfuss/pyCRLD Collective Reinforcement Learning Dynamics in Python Jupyter Notebook research pik -https://github.com/YannDubs/disentangling-vae Experiments for understanding disentanglement in VAE latent representations Python research pik -https://github.com/YannDubs/FourRussiansRNA Faster algorithms for RNA-folding using the Four-Russians method C++ research pik -https://github.com/YannDubs/Hash-Embeddings PyTorch implementation of Hash Embeddings (NIPS 2017). Submission to the NIPS Implementation Challenge. Python research pik -https://github.com/YannDubs/Invariant-Self-Supervised-Learning "Pytorch code for ""Improving Self-Supervised Learning by Characterizing Idealized Representations""" Python research pik -https://github.com/YannDubs/lossyless "Generic image compressor for machine learning. Pytorch code for our paper ""Lossy compression for lossless prediction""." Python research pik -https://github.com/YannDubs/Mini_Decodable_Information_Bottleneck Minimum viable code for the Decodable Information Bottleneck paper. Pytorch Implementation. Python research pik -https://github.com/YannDubs/Neural-Process-Family Code for the Neural Processes website and replication of 4 papers on NPs. Pytorch implementation. Jupyter Notebook research pik -https://github.com/YannDubs/RAW-Embedings Novel word embeddings based on a simple and intuitive rolling average. Still in dev mode. Jupyter Notebook research pik -https://github.com/YannDubs/simulationPopulationGenetics A general modelisation of Wright Fisher in a context of total biological abstraction. And a specific modelisation of the evolution of the sickle cell anemia in Congo, Cameroon & Gaboon C++ research pik -https://github.com/YannDubs/SSL-Risk-Decomposition "Benchmark and analysis of 165 pretrained SSL models. Code for ""Evaluating Self-Supervised Learning via Risk Decomposition""." Jupyter Notebook research pik -https://github.com/zeionara/marude An http api client which allows to automatically convert russian short texts into speech using vk cloud Python research pik -https://github.com/ZikangXiong/diff-spec Differentiable Symbolic Specification Python research pik -https://github.com/ZikangXiong/MFNLC [IROS 22'] Model-free Neural Lyapunov Control Python research pik -https://github.com/ZikangXiong/mobrob Mobile Robot Control via Goal-Conditioned Reinforcement Learning Python research pik -https://github.com/ZikangXiong/rl-detect-and-denoise-defense [ECML 22'] Defending Observation Attacks in Deep Reinforcement Learning via Detection and Denoising Python research pik -https://github.com/ZikangXiong/RobotDesign C++ research pik -https://github.com/adbar/coronakorpus Material zum Aufbau eines deutschsprachigen COVID-19-Webkorpus / Building a corpus in German dedicated to coronavirus research bbaw -https://github.com/adbar/courlan Clean, filter and sample URLs to optimize data collection – includes spam, content type and language filters Python research bbaw -https://github.com/adbar/flux-toolchain Filtering and Language-identification for URL Crawling Seeds (FLUCS) a.k.a. FLUX-Toolchain Perl research bbaw -https://github.com/adbar/geokelone integrates spatial and textual data processing tools into a modular software package which features preprocessing, geocoding, disambiguation and visualization Python research bbaw -https://github.com/adbar/german-reddit Extraction of a German Reddit Corpus Python research bbaw -https://github.com/adbar/htmldate Fast and robust date extraction from web pages, with Python or on the command-line Python research bbaw -https://github.com/adbar/laclos LAnguage-CLassified OpenSubtitles Python research bbaw -https://github.com/adbar/microblog-explorer Perform crawls of social networks (identi.ca, reddit, friendfeed) to gather internal and external links and identify their language Python research bbaw -https://github.com/adbar/simplemma Simple multilingual lemmatizer for Python, especially useful for speed and efficiency Python research bbaw -https://github.com/adbar/valency-oriented-chunker A one-pass FSA valency-oriented chunker for German (proof of concept) Perl research bbaw -https://github.com/adbar/vardial-experiments Experiments conducted on the occasion of the VarDial shared tasks Python research bbaw -https://github.com/AgnieszkaFalenska/IMSnPars IMS Neural Dependency Parser Python research bbaw -https://github.com/alexmilowski/pygobo Property Graphs for Open Biological and Biomedical Ontologies in Python Python research bbaw -https://github.com/ariporad/alfred-molar-mass-calculator Calculate the Molar Mass of Molecules JavaScript research bbaw -https://github.com/axellelecroq/corresphumboldtlite Discover the correspondence of Alexander von Humboldt with data visualisations in your browser. Python research bbaw -https://github.com/axellelecroq/digital-edition-bestiaire "Digital edition of the medieval manuscript ""Vie de Saints"" by Richard de Fournival" HTML research bbaw -https://github.com/coltekin/dsl2016-source DSL shared task participation - sources Python research bbaw -https://github.com/coltekin/emoji2018 The source code for the Tübingen-Oslo team in SemEval-2018 Multilingual Emoji Prediction shared task. Python research bbaw -https://github.com/coltekin/gk-treebank A grammar-book treebank of Turkish Python research bbaw -https://github.com/duncdrum/cbdb-data China Biographical Database (CBDB) data for use with exist-db. research bbaw -https://github.com/fgeorges/ml-invoker Invoker lib for MarkLogic XQuery research bbaw -https://github.com/FrederikeNeuber/lewald-correspondence-metadata Metadata of Fanny Lewald's correspondences in CMIF-format research bbaw -https://github.com/FrederikeNeuber/stgd-prototype-edition Prototype edition research bbaw -https://github.com/FrederikeNeuber/typoo RDF/OWL based ontology to describe microtypography (in digital scholarly editions) research bbaw -https://github.com/gremid/idrovora A pump station for your XProc pipelines Clojure research bbaw -https://github.com/gremid/ujwa UJWA – XML processing experiments for the Uwe Johnson-Werkausgabe Clojure research bbaw -https://github.com/helmuthb/datascience-thesis Code for my master thesis - working on Object Detection & Segmentation Python research bbaw -https://github.com/helmuthb/experiment-design-mediaeval Experiment Design: Media-Evaluation, lecture winter term 2019 TeX research bbaw -https://github.com/jadolan/zoomable_space A zoomable map of a tiny fraction of the universe. JavaScript research bbaw -https://github.com/janpieterk/gemeentekaart-core PHP library to create choropleth maps of the municipalities of the Netherlands PHP research bbaw -https://github.com/janpieterk/gemeentekaart-rest REST interface to janpieterk/gemeentekaart-core PHP research bbaw -https://github.com/jcklie/hack-assembler "An implementation of the hack assembler, as found in ""The Elements of Computing Systems""." Assembly research bbaw -https://github.com/jcklie/hanzi-website Website to look up information about Hanzi, especially Heisig JavaScript research bbaw -https://github.com/jcklie/hanzitools Library to work with Chinese Characters (Hanzi) in Python Python research bbaw -https://github.com/jcklie/ireval Commonly used information retrieval (IR) metrics implemented in Python and trec_eval conform Python research bbaw -https://github.com/jcklie/seqviz Visualize sequence tagging results. Python research bbaw -https://github.com/jochenklar/rdmo-advanced CSS research bbaw -https://github.com/jochenklar/rdmo-basic CSS research bbaw -https://github.com/lcahlander/scxml-xq An SCXML interpreter in XQuery XQuery research bbaw -https://github.com/lguariento/og-h-am Harnessing digital technologies to transform understanding of ogham writing, from the 4th century to the 21st research bbaw -https://github.com/lpodl/Izhikevich-Neurons We're discussing firing patterns of the different electrophysiological classes of neurons with the help of the simple model suggested by Eugene M.Izhikevich in 2003. Jupyter Notebook research bbaw -https://github.com/lpodl/Stein-Variational-Gradient-Descend An application of Stein Variational Gradient descend including some visualizations. Jupyter Notebook research bbaw -https://github.com/nfcampos/treesampler Python research bbaw -https://github.com/Rein3ke/2d-game-immersive-prototype C# research bbaw -https://github.com/Rein3ke/com.rein3ke.virtualtour.core Virtual museum tour - core project C# research bbaw -https://github.com/Rein3ke/VirtualMuseumTour Master Thesis C# research bbaw -https://github.com/riccardodg/linguistic-tools-for-weblicht A folder containing a list of linguistic tools eventually for the integration into weblicht Java research bbaw -https://github.com/riccardodg/psc2lemon Scripts and stuff for converting Parole Simple Clips (names only) to LOD Python research bbaw -https://github.com/rknaebel/bbc-discourse Discourse Relations extracted from BBC News Corpus for training a shallow discourse parser Python research bbaw -https://github.com/rknaebel/landslide Research project on building and evaluating deep learning models for landslides detection on satellite images Python research bbaw -https://github.com/robcast/digilib A versatile image viewing environment for the internet. Java research bbaw -https://github.com/tboenig/ocrd_bbaw_pilotbibliothek Bericht über die OCR-D-Teststellung an Berlin-Brandenburgische Akademie der Wissenschaften (BBAW) HTML research bbaw -https://github.com/telota/archiv-editor Java research bbaw -https://github.com/telota/bbaw-schoell BBAW Schoell font research bbaw -https://github.com/telota/ChronoTool HTML research bbaw -https://github.com/telota/CIL-ACE CIL | ACE at BBAW, Berlin, DE PHP research bbaw -https://github.com/telota/corpus-nummorum-editor A Laravel-Vue-Application for Numismatics Vue research bbaw -https://github.com/telota/edition-humboldt-digital TEI-XML dataset of the edition humboldt digital research bbaw -https://github.com/telota/existance Python research bbaw -https://github.com/telota/jean_paul_briefe_ediarum Publikation des projektspezifischen ediarum Frameworks der Jean Paul Edition CSS research bbaw -https://github.com/telota/LinkEdLeibniz-data research bbaw -https://github.com/telota/PIR PROSOPOGRAPHIA IMPERII ROMANI, Laravel, PHP, Vue PHP research bbaw -https://github.com/telota/quoteSalute Inspiring greetings for your correspondence CSS research bbaw -https://github.com/telota/wsp-forschungsaktivitaet HTML research bbaw -https://github.com/uiur/kanji_to_hanzi Translate Japanese Kanji to Chinese Hanzi (simplified and traditional) Ruby research bbaw -https://github.com/ulf1/bwsample Sampling algorithm for best-worst scaling sets. Python research bbaw -https://github.com/ulf1/flexion Python research bbaw -https://github.com/ulf1/ipasymbols Properties of IPA symbols Python research bbaw -https://github.com/ulf1/keras-bcr Batch Correlation Regularizer for TF2/Keras Python research bbaw -https://github.com/ulf1/keras-cor Correlated Outputs Regularization Python research bbaw -https://github.com/ulf1/keras-hrp Hashed Random Projection layer for TF2/Keras Python research bbaw -https://github.com/ulf1/keras-multilabel-embedding Python research bbaw -https://github.com/ulf1/keras-quadopt Solving quadratic optimization problems with Keras. Python research bbaw -https://github.com/ulf1/keras-tweaks Python research bbaw -https://github.com/ulf1/kshingle Split strings into (character-based) k-shingles Python research bbaw -https://github.com/ulf1/lagmat Lagmatrix. Create array with time-lagged copies of the features Python research bbaw -https://github.com/ulf1/maxjoshua Feature selection for hard voting classifier and NN sparse weight initialization. Python research bbaw -https://github.com/ulf1/node-distance Compute distance between all nodes of a tree, and estimate an histogram that can be used as features for other models Python research bbaw -https://github.com/ulf1/node-distance-ray ray.io wrapper for node-distance package Python research bbaw -https://github.com/ulf1/numpy-fracadf Determine fractal order by the ADF test Python research bbaw -https://github.com/ulf1/numpy-fracdiff Fractional differentiation as numpy function Python research bbaw -https://github.com/ulf1/numpy-linreg Linear Regression with numpy only. Python research bbaw -https://github.com/ulf1/pad-sequences pad variable length sequences with multiples features Python research bbaw -https://github.com/ulf1/quaxa quaxa - QUAlity of sentence eXAmples Python research bbaw -https://github.com/ulf1/scipy-psdm transform an ill-conditioned quadratic matrix to a positive semidefinite matrix Python research bbaw -https://github.com/ulf1/scipy-quadopt Wrapper and utility functions to apply scipy's SLSQP algorithm to quadratic optimization problems with resource constraints and upper boundaries Python research bbaw -https://github.com/ulf1/scipy-tweaks Python research bbaw -https://github.com/ulf1/sentence-embedding-evaluation-german Basically SentEval with German language downstream tasks Python research bbaw -https://github.com/ulf1/simiscore-biblio An ML API to compute similarity scores between meta information about sentence examples. Python research bbaw -https://github.com/ulf1/simiscore-kshingle An ML API to compute similarity scores between shingled sentence examples. Python research bbaw -https://github.com/ulf1/simiscore-semantic An ML API to compute semantic similarity scores between sentence examples. Python research bbaw -https://github.com/ulf1/simiscore-syntax An ML API to compute the Jaccard similarity based on shingled subtrees of the dependency grammar. Python research bbaw -https://github.com/ulf1/sklearn-fracdiff Python research bbaw -https://github.com/ulf1/sklearn-pipelinetweak additional wrapper and classes for sklearn's pipeline API Python research bbaw -https://github.com/ulf1/sparsity-pattern Generate different types of sparsity pattern for sparse matrices. Python research bbaw -https://github.com/ulf1/study-370b Jupyter Notebook research bbaw -https://github.com/ulf1/torch-hrp Hashed Random Projection layer for PyTorch Python research bbaw -https://github.com/ulf1/torch-multilabel-embedding Training of multi-label embeddings with k-shingled input sequences Python research bbaw -https://github.com/ulf1/torch-tweaks Python research bbaw -https://github.com/ulf1/treesimi Compute similarity between trees, e.g. dependency trees Python research bbaw -https://github.com/ulf1/ulf1 research bbaw -https://github.com/ulf1/vue-fit2box Resize the font-size in rem units so that the text fits into the html element. JavaScript research bbaw -https://github.com/windauer/ws21-tp7-ws "Uni Wuppertal ""Winter School"" event 2021 - TEI Publisher 7 hands on workshop" XQuery research bbaw -https://github.com/wrznr/timur Finite-state morphology for German Python research bbaw -https://github.com/xlhrld/retro-dict Historical etymological dictionaries HTML research bbaw -https://github.com/zentrum-lexikographie/dwdsmor SFST/SMOR/DWDS-based German Morphology XSLT research bbaw -https://github.com/zentrum-lexikographie/e-lexicography-2020-WiSe Wintersemester 2020 Python research bbaw -https://github.com/a-moi/political-argument-mining Mining arguments in political discourse with BERT and RoBERTa. We also present a new corpus of UNSC speeches annotated wrt their argumentative structure Jupyter Notebook research up -https://github.com/Abdelwahab86/Water-polygons-photogrammetry My master thesis at Potsdam University Jupyter Notebook research up -https://github.com/Adrian-Ziupka/ba-thesis My bachelor thesis about evaluating pavement distress of point clouds. TeX research up -https://github.com/aeye-lab/ecml-ADHD Python research up -https://github.com/aeye-lab/etra-fairness Jupyter Notebook research up -https://github.com/aeye-lab/etra-reading-comprehension Python research up -https://github.com/aeye-lab/Eyettention Python research up -https://github.com/aeye-lab/pymovements A python package for processing eye movement data Python research up -https://github.com/aeye-lab/python-wmc-battery Python reimplementation of the WMC battery described in Lewandowsky, Oberauer, Yang, & Ecker (2010), Behavior Research Methods. Python research up -https://github.com/aeye-lab/sp-eyegan Jupyter Notebook research up -https://github.com/alecamcr/Immigration-RSE This project aims at summarizing important factors of immigration in Germany, such as: number of immigrants, origin countries, sex, age, and concentration and movement between Bundesländer. This project was done for the course of research software engineering at the University of Potsdam Jupyter Notebook research up -https://github.com/alisher-turubayev/dl-normalizing-flows Utilizing Normalizing Flows for Anime Face Generation - Journey Log Jupyter Notebook research up -https://github.com/alisher-turubayev/trent-university-code University Code from all classes | Trent University | 2017-2021 C# research up -https://github.com/alisher-turubayev/uni-potsdam-code University Code from all classes | Universität Potsdam - Hasso-Plattner Institut | 2021-2023 research up -https://github.com/alsino/vmt-network A quick sketch for a network visualization for vmt using d3 force-directed network and d3 symbols. JavaScript research up -https://github.com/alyonavyshnevska/bert_for_coreference_resolution Exploring Span Representations in Neural Coreference Resolution Python research up -https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India Analysis of the projected very wet monsoon seasons on the Indian subcontinent using 32 CMIP6 models. Codes for publication: https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2022GL098856 Python research up -https://github.com/aodenweller/green-h2-upscaling Model code and input data of the technology diffusion model for electrolysis capacity R research up -https://github.com/arne-cl/discoursegraphs linguistic converter / merging tool for multi-level annotated corpora. graph-based (using Python and NetworkX). Python research up -https://github.com/arne-cl/feng-hirst-rst-parser fork of Vanessa Wei Feng's RST-style discourse parser Shell research up -https://github.com/arne-cl/ppi_graphkernel all-paths graph kernel for protein-protein interaction extraction Python research up -https://github.com/AvitBhowmik/ATRIC ATRIC: automated Accumulation Threshold selection and RIparian Corridor delineation R research up -https://github.com/AvitBhowmik/Poster-on-Spatial-Statistics-2015 "This repository contains my poster presented at Spatial Statistics: Emerging Patterns 2015 conference, in Avignon, France on June 12, 2015. The title of the poster is ""Estimating pooled within-time series variograms with spatially shifted temporal points"", reference number: P3.03, abstract sequel: SPAT2015_0024. The poster was created using Latex a0poster and multicol packages." TeX research up -https://github.com/AvitBhowmik/Presentation-at-SEFS9 "This repository contains my slides presented at 9th Symposium of European Freshwater Sciences - SEFS 9 2015 conference, in Geneva, Switzerland on July 6, 2015. The title of the oral presentation is ""Are aerial dispersers good adapters? Association of large scale spatial autocorrelation of semi-aquatic insect trait distribution with climate"", reference number: 00570, session: RS02-Impacts of climate change on freshwater ecosystems. The slides were created using Latex Beamer package and mtheme." TeX research up -https://github.com/bgailleton/DAGGER Directed Acyclic Graph for digital topoGrahic manipulations Eventually cRoss-platform C++ research up -https://github.com/bgailleton/TVD_Condat2013 Python implementation of the 1D Total Variation Denoising algorithm A Direct Algorithm for 1D Total Variation Denoising (Sign. Proc. Letters, DOI:10.1109/LSP.2013.2278339) using xtensor and pybind11 to bind c++ and numpy. C++ research up -https://github.com/bgroenks96/generative-downscaling Research and experiments for downscaling climate/weather data via generative learning Jupyter Notebook research up -https://github.com/bgroenks96/normalizing-flows Implementations of normalizing flows using python and tensorflow Jupyter Notebook research up -https://github.com/bmarv/Psychology_Experiment encoding during the stimulation of the vagus nerve, recognition in an unattended online session Python research up -https://github.com/BodoBookhagen/ChanGeom ChanGeom - Channel Geometry, River Width, and along-stream distance extraction from KML Python research up -https://github.com/BodoBookhagen/ICESat-2_SVDA The Sparse Vegetation Detection Algorithm (SVDA) for ICESat-2 data Jupyter Notebook research up -https://github.com/BodoBookhagen/PC_geomorph_roughness PointCloud (PC) statistics and roughness calculation for geomorphologic analysis Python research up -https://github.com/bptlab/Context-Aware-Change-Pattern-Detection Jupyter Notebook research up -https://github.com/bptlab/relationships-between-change-patterns Jupyter Notebook research up -https://github.com/bptlab/scylla Extensible BPMN process simulator Java research up -https://github.com/braunfuss/thermalintertia Optimize for real thermal inertia from two differential thermal images Matlab research up -https://github.com/briemadu/codraw-icr-v1 Jupyter Notebook research up -https://github.com/briemadu/inc-bidirectional Python research up -https://github.com/briemadu/inc-eval-revisions Framework for evaluation of edits and revisions in incremental sequence labelling. Jupyter Notebook research up -https://github.com/briemadu/scorekeeping Jupyter Notebook research up -https://github.com/ClemensKubach/bicycle-bell-sed-models Jupyter Notebook research up -https://github.com/ClemensKubach/vae-art-restoration Jupyter Notebook research up -https://github.com/crpiceda/dynamictopography Lab exercise on dynamic topography for Neotectonics and Geodynamics course at University of Potsdam research up -https://github.com/dagtann/hardTimes "Replication materials for ""Hard Times and Regime Failure. Autocratic Responses to Economic Downturns""" R research up -https://github.com/damariszurell/4D-niche-overlap Codes for: Zurell D, Gallien L, Graham CH, Zimmermann NE (2018) Do long-distance migratory birds track their niche through seasons? Journal of Biogeography 45: 1459-1468.doi: 10.1111/jbi.13351 R research up -https://github.com/damariszurell/SSDM-JSDM Codes for Zurell et al. (2020) Testing species assemblage predictions from stacked and joint species distribution models. Journal of Biogeography 47: 101-113. DOI: 10.1111/jbi.13608. R research up -https://github.com/danielrm84/DeepLearning_AnimalVocalizations This repository includes deep learning models I have developed during my postdoc in Hannover to process mouse lemur vocalizations data. They are in the form of jupyter notebooks. The first model is a binary classification problem intented to remove unwanted noise from the database. The second one is a multiclass supervised classification problem that classifies the data according to predefined categories Jupyter Notebook research up -https://github.com/danielrm84/Netlogo_Map_Generator This is a map generator of artificial landscapes for Netlogo. It can be used to create scenarios of fragmented landscapes (habitat suitability maps) NetLogo research up -https://github.com/danielrm84/PanModel33 Hello! this is an eco-evolutionary model that I developed together with my colleagues Sandra Kahl, Sophia Paraskevopoulou, and Remco Folkertsma, as part of my PhD at the University of Potsdam, Germany. It was designed for theory development, communication and learning. NetLogo research up -https://github.com/danielrm84/Romero-Mujalli-et-al.-BMC-Evolutionary-Biology This repository contains the data used for the paper in BMC Evolutionary Journal. For this project we used an extended version of the PanModel33 to simulate the evolution of the mutation rate. The PanModel33 can be found in its own repository (see my github repositories) NetLogo research up -https://github.com/danielrm84/Social-Learning-Project-Robotics This repository contains the simulator I created and used for my research on social learning during my Master studies at the Simon Bolivar University in Venezuela. It consists of individual agents or robots navigating the arena and finding the target feeding patch. The movement behavior of each robot is governed by artificial neural networks (AI). The full simulator is programmed in C++ and can be visualized on Netlogo (optional). C++ research up -https://github.com/delwarhub/Multimodal_Task_and_Feature_Attribution HTML research up -https://github.com/delwarhub/Multimodal_Task_with_Prompting_Large_Language_Models Jupyter Notebook research up -https://github.com/Diego-Dam/paper_co_creation_mobility_planning_germany "This repository provides the scripts and data for recreating the results documented by Michelini G., Dametto D., & Michel in the paper ""Participation to co-creation: methods for the involvement of stakeholders in mobility planning in Germany""" Jupyter Notebook research up -https://github.com/discourse-lab/dimlex A Lexicon of German discourse markers XSLT research up -https://github.com/discourse-lab/DisCoDict A Dictionary of Dutch Discourse Connectives research up -https://github.com/discourse-lab/pocores coreference resolution for German Python research up -https://github.com/ekaterinailin/AltaiPony Find flares in Kepler and TESS light curves. Notebooks for quickstart inside. Jupyter Notebook research up -https://github.com/ekaterinailin/flare-locations-ensembles-science Python research up -https://github.com/ekaterinailin/flaring-spi Jupyter Notebook research up -https://github.com/ekaterinailin/Orbital_Flare_Declustering Orbital phase flare de-clustering in close-in star-planet systems Jupyter Notebook research up -https://github.com/ekaterinailin/TESS_UCD_flares Find and analyse flares in TESS UCD light curves Jupyter Notebook research up -https://github.com/flying-bear/thesis Automated Assessment of Discourse Coherence in Schizophrenia and Schizoaffective Disorder Jupyter Notebook research up -https://github.com/fpottbaecker/st-data-gen Data generation utilities for spatial trascriptomics (especially scanpy). Jupyter Notebook research up -https://github.com/geveh/GLOFdetection Scripts and input data to detect GLOFs from Landsat images and DEMs research up -https://github.com/geveh/GLOFsusceptibility Repository to model the susceptibility of Himalayan glaciers to sudden outburst floods. research up -https://github.com/geveh/IceDamFailures R research up -https://github.com/geveh/ReportingBias Scripts for estimating historic trends in GLOF occurrences and potential biases in reporting R research up -https://github.com/hallerp/dyslexia-seqmod Python research up -https://github.com/heyhen/funNCion predicting LOF vs GOF variant effects in SCN and CACNA1 genes R research up -https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures "This repository contains all correction schemes proposed and used in the article ""Border effect corrections for diagonal line based recurrence quantification analysis measures"" (submitted to Physics Letters A)" MATLAB research up -https://github.com/hkraemer/PECUZAL_Julia For Hauke and George's code on delay coordinate embedding Julia research up -https://github.com/hkraemer/PECUZAL_Matlab PECUZAL implementation in Matlab HTML research up -https://github.com/hkraemer/PECUZAL_python Python research up -https://github.com/hpi-sam/minimum-wage-rl Project to share documentation, source code and analyzes on the topic of simulating effects of minimum wage interventions on employment and other economic metrics. Python research up -https://github.com/hydrogo/KALI KALI Jupyter Notebook research up -https://github.com/hydrogo/KALIv2 KALIv2 Jupyter Notebook research up -https://github.com/hydrogo/LHMP Lumped Hydrological Models Playgroud Python research up -https://github.com/hydrogo/rainnet RainNet: a convolutional neural network for radar-based precipitation nowcasting Python research up -https://github.com/hydrogo/rainymotion Python library for radar-based precipitation nowcasting based on optical flow techniques Python research up -https://github.com/jgontrum/uuparser-with-attention A transistion-based dependency parser utilizing attention for predicting the correct transition/label. Python research up -https://github.com/jhilaire/ssawosacarb Data analysis of carbonization patterns in Sub-Saharan Africa (without South Africa) R research up -https://github.com/juliusgarbe/modelling_sandbox Examples of basic numerical modelling approaches used in ice-sheet modelling and some (very) simple ice-sheet models. Jupyter Notebook research up -https://github.com/juliusgarbe/pism-debm-simple Code repository for PISM-dEBM-simple C++ research up -https://github.com/katjakon/Coreference-Resolution Ein Projekt für den Kurs Programmierung II im Sommersemester 2021 Python research up -https://github.com/KatrinSch/msc-thesis-call-detection Detection of bird calls during nocturnal migration using machine learning R research up -https://github.com/krr-up/bibliography 📚 BibTeX bibliography files of all papers referenced by the group TeX research up -https://github.com/linusha/bundesweiter-mietendeckel-visualisierung This repository contains code for an interactive explanation/visualization of the effects a federal rent cap would have in Germany. JavaScript research up -https://github.com/linusha/twitter-sentiment-2020-election "Code for data collection, processing and analysis as well as the data-set used for the research paper ""Crafting Audience Engagement in Social Media Conversations: Evidence from the U.S. 2020 Presidential Elections"" presented at HICSS 2022." Python research up -https://github.com/maxifischer/gensim-MCC Masterthesis on Multi-Prototype Diachronic Word Embeddings Python research up -https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl Julia implementation of the Ghil-Sellers 1D Energy Balance Model Julia research up -https://github.com/maximilian-gelbrecht/MCBB.jl Monte Carlo Basin Bifurcation Analysis Jupyter Notebook research up -https://github.com/mcvidomi/MFI Measure of Feature Importance HTML research up -https://github.com/mittelmark/snha St. Nicolas House Algorithm implementation in R - predicting correlation networks using association chains R research up -https://github.com/mmrabe/hypr hypr is an R package for easy translation between experimental (null) hypotheses and contrast matrices as used for linear regression. R research up -https://github.com/paulrozdeba/varanneal A Python package for state and parameter estimation in partially observed ODE and neural network systems, using variational annealing. Python research up -https://github.com/peldszus/arg-microtexts An annotated corpus of argumentative microtexts Python research up -https://github.com/peldszus/arg-microtexts-multilayer Argumentative microtexts annotated with RST, SDRT and argumentation structure ActionScript research up -https://github.com/peldszus/emnlp2015 Python research up -https://github.com/peldszus/evidencegraph Evidence graphs for parsing argumentation structure Python research up -https://github.com/peldszus/joty-rstparser-docker Dockerfile for the Joty 2013 RST Parser Dockerfile research up -https://github.com/PFischbeck/cn-noise-experiments "The code and data for the PAKDD 2023 paper ""The Common-Neighbors Metric is Noise-Robust & Reveals Substructures of Real-World Networks""" Python research up -https://github.com/PFischbeck/pygirgs Python package for girgs and hypergirgs generators Jupyter Notebook research up -https://github.com/plauth/lib842 C research up -https://github.com/potassco/benchmark-tool 🏎️ Git-mirror of the benchmark-tool Python research up -https://github.com/potassco/clingo-lpx 🧮 A simplistic simplex solver for checking satisfiability of a set of equations. C++ research up -https://github.com/potassco/clingo-vs-telingo-planning ASP research up -https://github.com/potassco/clingo-xor 📟 Clingo + XOR-constraints + Simplex C++ research up -https://github.com/potassco/clingoLP Theory propagator for linear programming using clingo theory language and interface. Python research up -https://github.com/potassco/ginkgo 🌱 Generalize learned constraints with ASP C++ research up -https://github.com/potassco/pddl-instances 🌍 PDDL instances covering the International Planning Competitions Common Lisp research up -https://github.com/prassepaul/mlmed_transfer_learning "This repository contains the code for the paper ""Pretraining on In-Vitro and Fine-Tuning on Patient-Derived Data Improves Neural Drug Sensitivity Models for Precision Oncology""" Jupyter Notebook research up -https://github.com/pschonev/deepanomaly4docs "Code for Master thesis ""Deep Anomaly Detection for Text Documents"" (University of Potsdam, 2021)" Jupyter Notebook research up -https://github.com/resfahani/GMD Construction of a Neural Network Autoencoder to map the Fourier spectral amplitudes of ground motion triggered by earthquakes to a low dimensional manifold Jupyter Notebook research up -https://github.com/resfahani/GVM-Player Audiovisual representation of video streams together with multiple audio tracks. JavaScript research up -https://github.com/resfahani/SparseTFR Sparse Time-Frequency representation (Sparse STFT, and Sparse Stockwell transfrom) Python research up -https://github.com/resfahani/SWDCI Surface Wave Dispersion Curve Inversion Python research up -https://github.com/rknaebel/bbc-discourse Discourse Relations extracted from BBC News Corpus for training a shallow discourse parser Python research up -https://github.com/rokcestnik/oscillator_snap Python package for modeling oscillatory systems using artificial neural networks Python research up -https://github.com/RoshanRane/Deviance_explained Deviance explained metric implemented in python Jupyter Notebook research up -https://github.com/RoshanRane/ML_for_IMAGEN Jupyter Notebook research up -https://github.com/RoshanRane/PredNet-and-Predictive-Coding-A-Critical-Review Performing video classificaiton by using the predictive processing architecture. The model is trained in a self-supervised manner to predict the next frames in videos along with the supervised video action classification task. Jupyter Notebook research up -https://github.com/RoshanRane/segmentation-moving-MNIST The Moving-MNIST video dataset reformulated for the task of semantic segmentation. Jupyter Notebook research up -https://github.com/Rullec/argus-win10 configure argus on win10 C++ research up -https://github.com/sarahkiener/compound-sensitivity This repository contains the code and matrials that I used in my Master's Thesis to investigate and enhance the sensitivity of trained neural metrics to German compounds. Python research up -https://github.com/SemanticMultimedia/JungGraphMeasures JungGraphMeasures - PageRank and HITS implementations for large RDF graphs Java research up -https://github.com/susuhahnml/asp-game-strategies Learning game strategies in ASP (clingo) using minimax and inductive logic programming (ILASP) :clubs: :game_die: Python research up -https://github.com/TamaraAtanasoska/AMR_ArgumentSimilarity Argument and opinion mining Project Module - Reproduction project Python research up -https://github.com/tasmi/SnowmeltTracking Algorithm for tracking the onset and end of the snowmelt season from passive microwave data Python research up -https://github.com/tasnimul-unipotsdam/EuroSAT Python research up -https://github.com/tasnimul-unipotsdam/ms_thesis This repository contains code that are used in my thesis. Python research up -https://github.com/TillF/directional_CRNS Illustrate theoretical discernability and accuracy of CRNS signal of a directional CRNS probe HTML research up -https://github.com/TillF/ssc_prediction prediction of sedigraphs and hydrographs from other predictors using RF / QRF R research up -https://github.com/ToBraun/RECLAC RECLAC Python package Jupyter Notebook research up -https://github.com/TScheffler/Connectives research up -https://github.com/TScheffler/UK_DiMLex Lexicon of Ukrainian connectives research up -https://github.com/tzwenn/myLambda A minimalistic functional language. Play ground for wannabes. Python research up -https://github.com/University-of-Potsdam-MM/cff2pages This package should create a generic page based on your cff. Python research up -https://github.com/University-of-Potsdam-MM/GRANT GRANT - GRafische ANwendungen auf Taktilen Displays C# research up -https://github.com/UP-macroecology/EBBA_Niche_vs_Range_shifts Niche and range shifts analyses of European breeding bird atlas data. R research up -https://github.com/UP-macroecology/Malchow_DemogEnv_2022 "Supplementary informaion to the publication: ""Demography-environment relationships improve mechanistic understanding of range dynamics under climate change"" by Anne-Kathleen Malchow, Florian Hartig, Jette Reeg, Marc Kéry, and Damaris Zurell." R research up -https://github.com/UP-macroecology/Malchow_IBMcalibration_2023 "This is supplementary material to the publication ""Fitting individual-based models of species range dynamics to long-term monitoring data"" by Anne-Kathleen Malchow, Guillermo Fandos, Urs G. Kormann, Martin Grüebler, Marc Kéry, Florian Hartig, Damaris Zurell." R research up -https://github.com/UP-macroecology/ODMAP R research up -https://github.com/UP-RS-ESP/DEM-KZP Digital Elevation Model (DEM) and KnickZone-Picker (KZP) Analyzer (http://onlinelibrary.wiley.com/doi/10.1002/2017JF004250/full) Matlab research up -https://github.com/UP-RS-ESP/LidarPC-KDTree Comparison of KDTree implementations for Lidar PointClouds (PC) Jupyter Notebook research up -https://github.com/UP-RS-ESP/mfdrouting Multiple Flow Direction (MFD) flow routing after Freeman (1991) C research up -https://github.com/UP-RS-ESP/TopoMetricUncertainty Uncertainties in topographic metrics due to truncation errors and elevation uncertainty Python research up -https://github.com/vasishth/HubermanBreathing Reanalysis of a paper in Cell Reports in Medicine from the Huberman lab in Stanford on breathing. HTML research up -https://github.com/vasishth/HusainEtAlJEMR2015 Data and code relating to Husain, Narayanan, Vasishth, 2015. Integration and prediction difficulty in Hindi sentence comprehension: Evidence from an eye-tracking corpus. Journal of Eye Movement Research, 8(2):1-12, 2015. Stan research up -https://github.com/vasishth/manuscript_LogacevVasishth_CogSci_SMCM Code + Data for the Logacev & Vasishth paper on underspecification and parallel processing. Proposes the SMCM as a task-dependent model of ambiguity resolution. TeX research up -https://github.com/vasishth/MetaAnalysisJaegerEngelmannVasishth2017 Code and data to accompany paper by L.A. Jäger, Engelmann, & Vasishth, 2017. Similarity-based interference in sentence comprehension: Literature review and Bayesian meta-analysis. Journal of Memory and Language. doi:10.1016/j.jml.2017.01.004 R research up -https://github.com/vasishth/NicenboimVasishthPart2 Code and data to accompany the article Statistical methods for linguistic research: Foundational Ideas - Part II, by Bruno Nicenboim and Shravan Vasishth. Language and Linguistics Compass, 2016. doi: 10.1111/lnc3.12207 R research up -https://github.com/vasishth/powerpose Reanalysis of Carney, Cuddy, and Yap 2010 data on power posing. Stan research up -https://github.com/vasishth/StanJAGSexamples Example code using Stan and JAGS for psycholinguistic data R research up -https://github.com/vasishth/uncertainty R research up -https://github.com/vasishth/VasishthNicenboimPart1 This repository contains the code and data that accompany the paper: Statistical methods for linguistic research: Foundational Ideas - Part I, by Shravan Vasishth and Bruno Nicenboim. Language and Linguistics Compass 10/8 (2016): 349–369, doi: 10.1111/lnc3.12201. R research up -https://github.com/vasishth/VNEBTiCS2019 code for the draft of the paper by Vasishth et al: Computational models of retrieval processes in sentence processing R research up -https://github.com/warpaint97/plan-merging-project Project in Intelligent Logistics - University of Potsdam Jupyter Notebook research up -https://github.com/wschwanghart/ncquantreg Non-crossing polynomial quantile regression Matlab research up -https://github.com/xarxaxdev/gans_blanc Python research up -https://github.com/XiaoxiangGuanGFZ/GR4J GR4J hydrological model R research up -https://github.com/XiaoxiangGuanGFZ/kNN_MOF_cp k-nearest resampling (kNN) and method-of-fragments (MOF) based rainfall temporal disaggregation model conditioned on circulation patterns (cp) (written in c) C research up -https://github.com/XiaoxiangGuanGFZ/KNN_MOF_CPs weather variable temporal disaggregation model Python research up -https://github.com/XiaoxiangGuanGFZ/RCCC-WBM Water Balance hydrological model from RCCC R research up -https://github.com/yadavhimanshu059/crossing_constraints_baselines Python research up -https://github.com/yadavhimanshu059/Hindi_DS_to_PS_Conversion The algorithm can be run with input SSF format of Hindi-urdu Dependency Treebank. It will generate Phrase structure trees for the corresponding dependency trees. A have given a sample of dependency tree file that can be used as an input. Python research up -https://github.com/yadavhimanshu059/Hindi_DS_to_PS_Conversion_v2.0 This version of conversion algorithm handles non-projective trees. In addition to generating phrase structure trees for projective dependencies, the current version also converts the non-projective dependencies. This version of the our algorithm successfully converts 98.2% of the dependency trees. Python research up -https://github.com/yadavhimanshu059/LV05 R package for using Lewis and Vasishth (2005) model. Under testing. R research up -https://github.com/YanaPalacheva/avoidance_study "Question Avoidance Study: the final project for the ""Question Processing"" module at Uni Potsdam." Jupyter Notebook research up -https://github.com/YanaPalacheva/experiments_neuralcoref Neuralcoref adapted for Russian Jupyter Notebook research up -https://github.com/YanaPalacheva/lyrics-generation Song lyrics generation based on RNN&Markov poetry generator. Python research up -https://github.com/yanweiser/Beyond-Task-Success-But-Bert Jupyter Notebook research up -https://github.com/zentrum-lexikographie/dwdsmor SFST/SMOR/DWDS-based German Morphology XSLT research up -https://github.com/zentrum-lexikographie/eval-de-lemma Jupyter Notebook research up - research -https://github.com/andrewdolman/Maehrlein_et_al_length_mass_data R research awi -https://github.com/andrewdolman/phytotraitr An R data package for phytoplankton traits R research awi -https://github.com/EarthSystemDiagnostics/hamstr An rstan implementation of Bacon-like age-depth modelling but with hierarchically structured multi-resolution depth scales. R research awi -https://github.com/EarthSystemDiagnostics/hamstrbacon Interface between rbacon and hamstr R research awi -https://github.com/EarthSystemDiagnostics/optimalcores An R software project to analyse optimal ice core locations. R research awi -https://github.com/EarthSystemDiagnostics/proxysnr An R package to separate the common signal from local noise in climate proxy records using spectral analyses. R research awi -https://github.com/EarthSystemDiagnostics/psem Proxy Spectral Error Model R research awi -https://github.com/EarthSystemDiagnostics/sedproxy An R package for modelling sediment archived climate proxy records. R research awi -https://github.com/EarthSystemDiagnostics/simproxyage An R package to simulate age uncertainty in layer-counted climate proxy records. R research awi -https://github.com/EarthSystemDiagnostics/TrenchR An R package to analyse and plot trench-like proxy records HTML research awi -https://github.com/GPawi/CarbStock21k Jupyter Notebook research awi -https://github.com/GPawi/LANDO LANDO: Linked age-depth modeling Python research awi -https://github.com/GPawi/LANDOnline Repository for LANDO on binder / docker MATLAB research awi -https://github.com/GPawi/MAYHEM "This repository contains scripts, figures and listings of data sources for the publication by Pfalz et al. - ""Harmonizing heterogeneous multi-proxy data from lake systems"". (submitted to Computers & Geosciences in 2020)" Jupyter Notebook research awi -https://github.com/slisovski/23-143-D-INSPIRES-B research awi -https://github.com/slisovski/Bauer_et_al.-2018-JApplEcol Supplemental code: Bauer et al. 2018 Journal of Applied Ecology C++ research awi -https://github.com/slisovski/BTGodwit_Alaska_SnowNDVI Seasonal characteristics and trends of snow melt data and vegetation greenup within the bar-tailed godwit (Limosa lapponica) breeding range in Alaska, US. research awi -https://github.com/slisovski/Inspires research awi -https://github.com/slisovski/invMovement R package to identify and extract movement information from solar geolocation data. R research awi -https://github.com/slisovski/Lisovski-et-al.-2016-AmNat Supplememtary Materials research awi -https://github.com/slisovski/Lisovski-et-al.-2017-Oikos R research awi -https://github.com/slisovski/Optimal-migration-along-the-Indo-European-Flyway Simulation code for: The Indo-European Flyway: Opportunities and constraints reflected by Common Rosefinches breeding across Europe. Lisovski et al. 2021 Journal of Biogeography R research awi -https://github.com/slisovski/SGAT_calibration_movement Code and description of methods that can be applied to calibrate light-level geolocation data and perform movement analysis R research awi -https://github.com/slisovski/van-Gils-et-al.-2016-Science Appendix: van Gils et al. 2016 Science R research awi -https://github.com/twollnik/YETI A bottom-up traffic emission calculation tool developed at the Institute for Advanced Sustainability Studies in Potsdam and built in Python. Python research awi -https://github.com/Aaronzinhoo/SingleShotDetector-TF Single Shot Detector created in Tensorflow Python research hpi -https://github.com/abstraktor/multileveldebugging-QoppaS qoppa in squeak HTML research hpi -https://github.com/aksub99/molecular-vae "Pytorch implementation of the paper ""Automatic Chemical Design Using a Data-Driven Continuous Representation of Molecules""" Jupyter Notebook research hpi -https://github.com/aksub99/U-Net-Pytorch Pytorch implementation of U-Net Python research hpi -https://github.com/arne-z/BachelorThesis TeX research hpi -https://github.com/bptlab/Context-Aware-Change-Pattern-Detection Jupyter Notebook research hpi -https://github.com/bptlab/relationships-between-change-patterns Jupyter Notebook research hpi -https://github.com/bptlab/scylla Extensible BPMN process simulator Java research hpi -https://github.com/Buguemar/GRTC_GNNs Public repository of our paper accepted to the Findings of EMNLP 2023: Graph Representations for Text Classification Using GNNs: Exploring Advantages and Limitations. Jupyter Notebook research hpi -https://github.com/calclavia/DeepJ A deep learning model for style-specific music generation. Python research hpi -https://github.com/calclavia/NOS Neural optimizer search based on https://arxiv.org/pdf/1709.07417.pdf Python research hpi -https://github.com/calclavia/Performer-Pytorch "Pytorch implementation of Performer from the paper ""Rethinking Attention with Performers""." Python research hpi -https://github.com/calclavia/story-generation Code for Improving Neural Story Generation by Targeted Common Sense Grounding Python research hpi -https://github.com/calclavia/tal-asrd Code for the Paper Speech Recognition and Multi-Speaker Diarization of Long Conversations Python research hpi -https://github.com/cenguix/Text2KGBench Repo ISWC-2023 Tekgen Corpus Submission Jupyter Notebook research hpi -https://github.com/chrisseaton/dfscala-benchmarks Benchmarks for DFScala Scala research hpi -https://github.com/chrisseaton/low-overhead-polling-ruby Low Overhead Polling For Ruby C research hpi -https://github.com/christianwarmuth/explainable-predictive-process-monitoring-with-text On the Potential of Textual Data for Explainable Predictive Process Monitoring (ICPM 2022) Jupyter Notebook research hpi -https://github.com/christianwarmuth/treatment-based-patient-discharge-classification Patient Discharge Classification based on the Hospital Treatment Process (ICPM 2021) Jupyter Notebook research hpi -https://github.com/cosminbasca/ellipsedetector "The project offers an implementation of the Randomized Hough Transform for Ellipse Detection, as described in the Basca et al. article (1). (1) Cosmin A. Basca, Mihai Talos and Remus Brad, Randomized Hough Transform for Ellipse Detection with Result Clustering, Proceedings of IEEE EUROCON 2005, The International Conference on ""Computer as a Tool"", vol. II, pp.1397-1400, Belgrade Serbia November 2005, ISBN 1-4244-0049-X, http://remus.ulbsibiu.ro/publications/papers/eurocon2005.pdf" Java research hpi -https://github.com/danijar/crafter Benchmarking the Spectrum of Agent Capabilities Python research hpi -https://github.com/danijar/daydreamer DayDreamer: World Models for Physical Robot Learning Jupyter Notebook research hpi -https://github.com/danijar/diamond_env Standardized Minecraft Diamond Environment for Reinforcement Learning Python research hpi -https://github.com/danijar/dreamer Dream to Control: Learning Behaviors by Latent Imagination Python research hpi -https://github.com/danijar/dreamerv2 Mastering Atari with Discrete World Models Python research hpi -https://github.com/danijar/dreamerv3 Mastering Diverse Domains through World Models Python research hpi -https://github.com/danijar/elements Building blocks for productive research Python research hpi -https://github.com/danijar/embodied Fast reinforcement learning research Python research hpi -https://github.com/danijar/imptools Tools for improving Python imports Python research hpi -https://github.com/danijar/layered Clean implementation of feed forward neural networks Python research hpi -https://github.com/erksch/fnet-pytorch Unofficial PyTorch implementation of Google's FNet: Mixing Tokens with Fourier Transforms. With checkpoints. Python research hpi -https://github.com/ferbsx/Fungal-DeePaC code and supplemantary materials for my Master's thesis R research hpi -https://github.com/florian-papsdorf/kip-company-acquisition Modelling the company acquisition process with its knowledge-intensive nature research hpi -https://github.com/fmannhardt/pddp Process Discovery with Differential Privacy C# research hpi -https://github.com/gvanrossum/old-demos Very old demos and examples removed from the cpython repo Python research hpi -https://github.com/HaidYi/admm-l1-2-logistic-regression Admm l1/2 logistic regression using MPI and GSL C research hpi -https://github.com/HaidYi/cvxbiclustr Accelerated Full Path Solution for Convex Biclustering C++ research hpi -https://github.com/HaidYi/DASC Detecting hidden batch factors through data adaptive adjustment for biological effects R research hpi -https://github.com/hdnl/sparse-bert-ner Python research hpi -https://github.com/hpi-swa-lab/babylonian-programming-smalltalk An implementation of the Babylonian Programming Editor for Squeak/Smalltalk Smalltalk research hpi -https://github.com/hpi-swa-lab/home-desktop-system The Home Desktop System Smalltalk research hpi -https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue Blocks to the Rescue: Live Exploration of an Interactive Environment to Support Education, Construction, and Reflection in Program Design StringTemplate research hpi -https://github.com/hpi-swa-lab/squeak-inbox-talk Bringing squeak-dev into your image Smalltalk research hpi -https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers A Squeak/Smalltalk implementation of polymorphic identifiers Smalltalk research hpi -https://github.com/hpi-swa-lab/squeak-tracedebugger A lightweight and efficient back-in-time debugger for Squeak to trace and retrace past method invocations and state changes. Powered by SimulationStudio. Smalltalk research hpi -https://github.com/JakobEdding/Collaborative-Filtering-Kafka Java research hpi -https://github.com/jaSunny/MA-enriched-Health-Data R research hpi -https://github.com/jirkamarsik/esa-wordseg An implementation of the ESA unsupervised word segmentation algorithm in Clojure. Clojure research hpi -https://github.com/kanihal/vatic_modified HTML research hpi -https://github.com/Lando-L/ocd-detection The aim of this project is to make the assessment and treatment of OCD more accessible and effective. Python research hpi -https://github.com/LeonBein/masterThesisCode Jupyter Notebook research hpi -https://github.com/levjj/wahlomat-visualization Visualization of the Wahl-o-mat Python research hpi -https://github.com/LinqLover/downstream-repository-mining Mine usage information about your JavaScript/TypeScript package from dependent repositories. TypeScript research hpi -https://github.com/linusha/twitter-saxony-anhalt-election-2021-sentiment "Code and data used in the research paper ""Emotions and Information Diffusion on Social Media: A Replication in the Context of Political Communication on Twitter"" (Hagemann, L., Abramova, O.), to be published in AIS Transactions on Replication Research." HTML research hpi -https://github.com/linusha/twitter-sentiment-2020-election "Code for data collection, processing and analysis as well as the data-set used for the research paper ""Crafting Audience Engagement in Social Media Conversations: Evidence from the U.S. 2020 Presidential Elections"" presented at HICSS 2022." Python research hpi -https://github.com/luisebenkert/Potree-Extension JavaScript research hpi -https://github.com/m0e33/REST-bot Python research hpi -https://github.com/marcfreiheit/generic-functions-squeak An implementation of generic functions in Squeak/Smalltalk Smalltalk research hpi -https://github.com/maxifischer/gensim-MCC Masterthesis on Multi-Prototype Diachronic Word Embeddings Python research hpi -https://github.com/mdickinson/polyhedron Robust point-in-polyhedron testing. Python research hpi -https://github.com/nicolas-alder/difflogictest Python research hpi -https://github.com/nicolas-alder/KAFKA-EFDT "Implementing the paper ""Extremely Fast Decision Tree"" on Apache Kafka by Nicolas B. Alder and Henrik Wenck" Java research hpi -https://github.com/onsetsu/d3-bundleview A d3 implementation of bundleviews (circular edge bundles) JavaScript research hpi -https://github.com/PFischbeck/cn-noise-experiments "The code and data for the PAKDD 2023 paper ""The Common-Neighbors Metric is Noise-Robust & Reveals Substructures of Real-World Networks""" Python research hpi -https://github.com/prithviraj-maurya/mapreduce-based-machine-learning Large-scale Artificial Neural Network: MapReduce-based for Machine Learning Python research hpi -https://github.com/SanJSp/FCMFromSudbueBasedPatternExtractor This is an implementation of a toolchain to extract FCM patterns from event logs Python research hpi -https://github.com/ThorbenLindhauer/cosimin Efficient search by similarity in large amounts of vectors. Java research hpi -https://github.com/timgarrels/LazyFox Parallelization enabled Implementation of FOX, an Overlapping Clustering Algorithm C++ research hpi -https://github.com/timgarrels/TableRecognition21 Table Recognition Seminar SS21 HPI Jupyter Notebook research hpi -https://github.com/Tobias314/blainder Copy of the original BlAInder repository with minor modifications Python research hpi -https://github.com/witsyke/thesis Masterthesis: On mobility for COVID-19 forecasts in Germany using Ordinary Differential Equations and Graph Neural Networks R research hpi \ No newline at end of file +html_url;description;project;language +https://github.com/adrpar/densfield;Cosmological density field generator supporting CIC, TSC (for GADGET and ART) and proper SPH (for GADGET) particle to grid mapping;research;C +https://github.com/adrpar/EBNFparser;Pragmatic ENBF parser for PHP;no_research;PHP +https://github.com/adrpar/lawandorder;;no_research;Python +https://github.com/adrpar/mysqldump-vo;VOTables dump and output support for MySQL through customized mysqldump;no_research;C +https://github.com/adrpar/mysql_query_queue;This MySQL daemon plugin provides a job queue to which SQL queries can be submitted. These will then be executed according to priority and number of already running queries. ;no_research;C++ +https://github.com/adrpar/mysql_sprng;This is a implementation of the SPRNG library to MySQL.;no_research;Objective-C +https://github.com/adrpar/mysql_udf;MySQL UDF collection;no_research;C +https://github.com/adrpar/mysql_udf_randomBlob;MySQL UDF for random BLOBs;no_research;C++ +https://github.com/adrpar/mysql_validateSQL;MySQL UDF for validating SQL queries using MySQL server code without executing the sub queries;no_research;C++ +https://github.com/adrpar/paqu;A parallel query engine for MySQL + Spider Engine built on a fork of shard-query;no_research;PHP +https://github.com/adrpar/php-adql-parser;An extended/altered version of the PHP-SQL-Parser available at https://github.com/greenlion/PHP-SQL-Parser supporting ADQL.;no_research;PHP +https://github.com/agy-why/gaia-tap-pyvo-tutorials;A few scripts to access data via the TAP interface of gaia.aip.de with pyvo;no_research;Jupyter Notebook +https://github.com/agy-why/rave-tap-pyvo-tutorials;tap tutorials using pyvo for rave-survey.org;no_research;Jupyter Notebook +https://github.com/aipescience/AsciiIngest;A general ASCII file row based ingestion tool using the DBIngestor library. This tool allows you to define custom ASCII data formats similar to the MS SQL Server format files. However it is possible to define custom checks, transformation functions, derived data rows, and constant data rows. It is easy to extend the assertion and convertion functions, by implementing ones own functions in the DBIngestor library. Further the DBIngestor library provided data buffering for higher ingest performance and many interfaces to various DB systems.;no_research;C++ +https://github.com/aipescience/copy-files-in-parallel;A python wrapper to rsync and parallel to copy a large number files using parallel threads.;no_research;Python +https://github.com/aipescience/cosmosim-tap-tutorials;Tutorials for using TAP service on www.cosmosim.org;no_research;Jupyter Notebook +https://github.com/aipescience/daiquiri;A framework for the publication of scientific databases;research;PHP +https://github.com/aipescience/daiquiri-admin;A python library for administrative tasks to be used with the Daiquiri Framework;research;Python +https://github.com/aipescience/daiquiri-app;Empty web application for the daiquiri framework;no_research;PHP +https://github.com/aipescience/DBIngestor;This library provides wrappers to data ingestion into various DB systems, such as MySQL, SQLite3, and ODBC compatible systems. You can use this C++ library to ingest data in any format (you need to implement the reading routines though). The library provides an ingestion buffer that allows for multiple rows to be ingested at one time. This greatly improves ingestion performance. Further assertion and conversion functions are provided for elementary data transformation and processing. These can easily be extended by custom functions and many examples for implementing such functions are provided in the source.;no_research;C++ +https://github.com/aipescience/django-daiquiri-tap;A tiny wrapper for astroquery.utils.tap, adding support for token authorization.;research;Python +https://github.com/aipescience/libhilbert;Library for N-Dimensional Hilbert Mapping;no_research;C++ +https://github.com/aipescience/lightmeter;;research;Python +https://github.com/aipescience/make-a-movie;;no_research;Python +https://github.com/aipescience/mysql_healpix;HEALPix plugin for MySQL;research;C +https://github.com/aipescience/mysql_sphere;MySQL port of pgSphere 1.1.1;research;C++ +https://github.com/aipescience/provenance-applause;Provenance for APPLAUSE database;research;Python +https://github.com/aipescience/queryparser;Parsing, processing, and translation of PostgreSQL, MySQL and ADQL queries;research;Python +https://github.com/aipescience/raid-utils;;research;Python +https://github.com/aipescience/spider-docker;Docker files for a Spider-Engine MariaDB cluster;research;PLpgSQL +https://github.com/aipescience/spider-test-data;Test data for a Spider-Engine MariaDB cluster;research;Python +https://github.com/aipescience/sqlite_sphere;Sqlite3 port of pgSphere 1.1.1 https://escience.aip.de/mysql-sphere/;research;C++ +https://github.com/aipescience/uws-client;IVOA UWS service command line client;research;Python +https://github.com/aipescience/verlustdernacht;;research;Python +https://github.com/aipescience/votable2sql;Tool to convert VOTables into SQL dumps;research;Python +https://github.com/aodenweller/green-h2-upscaling;Model code and input data of the technology diffusion model for electrolysis capacity;research;R +https://github.com/aodenweller/remind-pypsa;Scripts for the REMIND-PyPSA model coupling;no_research; +https://github.com/ATB-Potsdam/daisy-model_dockerized;;no_research;Dockerfile +https://github.com/ATB-Potsdam/Food-Packaging-Simulation;Matlab code for simulation of package headspace and shelf life;no_research;MATLAB +https://github.com/ATB-Potsdam/IDM;Irrigation water Demand Module;research;C# +https://github.com/ATB-Potsdam/jupyterhub_dockerized;;research;Python +https://github.com/ATB-Potsdam/Matlab_TVDI_cal;Calculate TVDI using Landsat 8 images;no_research;MATLAB +https://github.com/ATB-Potsdam/monica-env-extractor;"Extract all subobjects from a MONICA ""env"" JSON to separate files";no_research;JavaScript +https://github.com/ATB-Potsdam/N_opt_economic;simple approach to estimate economic optimum of N fertilisation;no_research;Jupyter Notebook +https://github.com/bergm/berest;the BEREST core ;no_research;Clojure +https://github.com/bergm/berest-90-dev;C++ dev version of BEREST 90;no_research;C++ +https://github.com/bergm/berest-client;clients for berest webservice;no_research;Clojure +https://github.com/bergm/berest-hoplon-website;;no_research;CSS +https://github.com/bergm/berest-service;;no_research;Clojure +https://github.com/bergm/carbiocial;carbiocial related scripts and stuff;no_research;Clojure +https://github.com/bergm/haxe-tests;;no_research;Haxe +https://github.com/bergm/macsur-heat-stress;;no_research; +https://github.com/bergm/misc;;no_research; +https://github.com/bergm/pedestal-app-tutorial;;no_research;JavaScript +https://github.com/bergm/pyperator-test;;no_research; +https://github.com/bergm/rlb_guessing_game;;no_research;Rust +https://github.com/bergm/rlb_hello_cargo;;no_research;Rust +https://github.com/bergm/weberest;;no_research;JavaScript +https://github.com/dshoman/MgII;QSO Fitting Algorithms;research;Python +https://github.com/dshoman/MKN110;;research;Ruby +https://github.com/ekaterinailin/2023_10_Oblique_Ring;;no_research;Jupyter Notebook +https://github.com/ekaterinailin/AltaiPony;Find flares in Kepler and TESS light curves. Notebooks for quickstart inside.;research;Jupyter Notebook +https://github.com/ekaterinailin/aumic-flaring-spi;;no_research; +https://github.com/ekaterinailin/code-review-up;The University of Potsdam Code Review Group shares their code here.;no_research;Python +https://github.com/ekaterinailin/dustycrocodile;Hack HPI about://environment EU: Digging into European Union Open Data Portal for Water Use ;research;HTML +https://github.com/ekaterinailin/ekaterinailinCV;;no_research;TeX +https://github.com/ekaterinailin/exoplanets-seminar;"Useful calculations for the ""Exoplanet detection, formation and evolution"" seminar run @ Uni Potsdam.";no_research;Jupyter Notebook +https://github.com/ekaterinailin/flare-locations-ensembles;;no_research;TeX +https://github.com/ekaterinailin/flare-locations-ensembles-science;;research;Python +https://github.com/ekaterinailin/flares-in-clusters-ii-draft;Paper draft corresponding to the project;research;TeX +https://github.com/ekaterinailin/flares-in-clusters-with-k2-ii;Here tables, analysis code, additional information, and ancillary plots for Ilin+2020 (in prep.) are stored. ;research;Jupyter Notebook +https://github.com/ekaterinailin/flares-q-learning;Mapping detected flares in TESS and Kepler light curves to the underlying flare event via injection-recovery with Q-learning;research;Jupyter Notebook +https://github.com/ekaterinailin/flaring-spi;;research;Jupyter Notebook +https://github.com/ekaterinailin/flaring-spi-paper;Flaring SPI paper including all TESS and Kepler confirmed transiting planets;research;TeX +https://github.com/ekaterinailin/GaiaK2PSF;PSF photometry on K2 with Gaia centroids;research;Jupyter Notebook +https://github.com/ekaterinailin/k2-panstarrs-sampedro;Matching catalogs for cluster samples.;research;Jupyter Notebook +https://github.com/ekaterinailin/lean-site-template;Static site template for EA local group website;no_research; +https://github.com/ekaterinailin/MalachiteMountains;;no_research;Python +https://github.com/ekaterinailin/multiperiod-flares-draft;Paper draft for Malachite Mountains;research;TeX +https://github.com/ekaterinailin/my-first-blog;Personal blog: Astrophysics, Effective Altruism.;no_research;Python +https://github.com/ekaterinailin/Orbital_Flare_Declustering;Orbital phase flare de-clustering in close-in star-planet systems;research;Jupyter Notebook +https://github.com/ekaterinailin/plots-of-the-week;Weekly science plots.;no_research;Jupyter Notebook +https://github.com/ekaterinailin/SiberianPine;Analyse statistical samples of stellar flares.;research;Jupyter Notebook +https://github.com/ekaterinailin/TESS-UCD-Paper-1;;no_research;TeX +https://github.com/ekaterinailin/TESS_UCD_flares;Find and analyse flares in TESS UCD light curves;no_research;Jupyter Notebook +https://github.com/ekaterinailin/tic277;;no_research;Python +https://github.com/ekaterinailin/xmm-flareloci-proceedings-2021;;no_research;TeX +https://github.com/ekaterinailin/xmm_for_tic277;XMM-Newton follow-up of TIC 277, an M7 dwarf with a near-polar giant flare;no_research;TeX +https://github.com/etzinis/activelearning;Active Learning for Emotionally Salient Utterances and Segments using Text & Audio;no_research;Python +https://github.com/etzinis/biased_separation;Code for the paper: Unified Gradient Reweighting for Model Biasing with Applications to Source Separation;research;Python +https://github.com/etzinis/bootstrapped_mds;Bootstrapped MDS: A Coordinate Search Algorithm for Multidimensional Scaling which optimizes Stress by evaluating the function multiple times over different coordinates but also bootstraping over previous successful iterations. With this algorithm there is a probability of evaluating the function alongside a coordinate step depending on the previous successful evaluations across this coordinate.;research;Jupyter Notebook +https://github.com/etzinis/comp_vision_ntua;Labs exercises in NTUA (2016-2017) for the Computer Vision course 8th semester Contributors: Efthymios Tzinis Konstantinos Kallas;no_research;Matlab +https://github.com/etzinis/fedenhance;Code for the paper: Separate but togerher: Unsupervised Federated Learning for Speech Enhancement from non-iid data;research;Jupyter Notebook +https://github.com/etzinis/gpus_utilization;Check the GPUs status on multiple servers;no_research;Python +https://github.com/etzinis/heterogeneous_separation;Code and data recipes for the paper: Heterogeneous Target Speech Separation;research;Python +https://github.com/etzinis/lathesis;Latex Code of thesis tools for manipulation ;no_research;Python +https://github.com/etzinis/micro_lab_ntua;Labs exercises in NTUA (2015-2016) for the course Microprocessors 7th semester. Contributors: Efthymios Tzinis, Anastasis Stathopoulos, Rafail Skoulos;no_research;Assembly +https://github.com/etzinis/neural_dEMOmpose;Convolutional Neural Decomposition for End2End Speech Emotion Recognition ;no_research;Python +https://github.com/etzinis/nldrp;Non linear dynamics for emotion classification;research;Python +https://github.com/etzinis/nldr_visual_recognition;Evaluating Nonlinear dimensional reduction algorithms for finding low dimensional manifold representations of input data, trying to infer labels of unlabelled data points of the manifold as well as visualizing 2D manifolds for qualitative analysis of the input data ;research;Jupyter Notebook +https://github.com/etzinis/nns_ntua;Labs exercises in NTUA (2016-2017) for Neural Networks course 9th semester Contributors: Efthymios Tzinis Konstantinos Kallas;no_research;M +https://github.com/etzinis/optimal_condition_training;Code and data recipes for the paper: Optimal Condition Training for Target Source Separation by Efthymios Tzinis, Gordon Wichern, Paris Smaragdis and Jonathan Le Roux ;research;Python +https://github.com/etzinis/os_lab_ntua;Labs exercises in NTUA (2016-2017) for Operating Systems Laboratory course 8th semester. Contributors: Efthymios Tzinis & Kostantinos Kallas ;no_research;Assembly +https://github.com/etzinis/pat_rec_ntua;Labs exercises in NTUA (2016-2017) for the Pattern Recognition course 9th semester Contributors: Efthymios Tzinis Konstantinos Kallas;no_research;Matlab +https://github.com/etzinis/pl_1;My exercises in NTUA (2015-2016) for the course Programming Languages 6th semester (C,Java,ML,Prolog);no_research;Standard ML +https://github.com/etzinis/polymorphisms_statistic_analysis;Code for my contribution in a medicine related project/paper with faculty form Kapodistrian University of Athens. ;research;Jupyter Notebook +https://github.com/etzinis/speech_nlp_labs;Labs exercises in NTUA (2015-2016) for the course Speech and Natural Language Processing 7th semester;research;Python +https://github.com/etzinis/sudo_rm_rf;Code for SuDoRm-Rf networks for efficient audio source separation. SuDoRm-Rf stands for SUccessive DOwnsampling and Resampling of Multi-Resolution Features which enables a more efficient way of separating sources from mixtures.;research;Jupyter Notebook +https://github.com/etzinis/TA_tools;Various teaching assistant's (TA) tools for automating processes with grading, assigning students, etc.;no_research; +https://github.com/etzinis/toefl_speaking;A simple prompt/recorder preparation tool for questions 1&2 in TOEFL examination (speaking section);no_research;Python +https://github.com/etzinis/two_step_mask_learning;A two step optimization for sound source separation on the adaptive front-end domain;research;Python +https://github.com/etzinis/unsupervised_spatial_dc;"Code for the paper: ""Unsupervised Deep Clustering for Source Separation: Direct Learning from Mixtures using Spatial Information""";research;Python +https://github.com/etzinis/unsup_speech_enh_adaptation;Unsupervised domain adaptation for conversational speech enhancement using RemixIT;research;Jupyter Notebook +https://github.com/filipinascimento/bigscience;Big Science Project;research;Jupyter Notebook +https://github.com/filipinascimento/bl-conmat2network;Simple brainlife app to create a network from a conmat matrix.;research;Dockerfile +https://github.com/filipinascimento/bl-network-communities;App to obtain the community structure of networks by using the Louvain or Infomap methods. All the Louvain quality functions work for networks with negative weights.;research;Python +https://github.com/filipinascimento/bl-network-measurements;App to calculate several basic statistics for networks and their respective null model distributions.;research;Python +https://github.com/filipinascimento/bl-network-nullmodel;Generates an esemble of networks according to null models that try to reproduce the data. Erdos reyni (random), Barabási-Albert and Configuration model are implemented;research;Python +https://github.com/filipinascimento/bl-network-preprocess;App to preprocess connectivity/similarity matrices (conmat) and generate a filtered version of the network, which can be directed or undirected, weighted or unweighted.;research;Python +https://github.com/filipinascimento/bl-network-report;App to generate reports from networks. This includes network properties, node attributes and their respective distributions.;research;Python +https://github.com/filipinascimento/bl-network-template;Template app to build new network neuroscience apps for brainlife;research;Python +https://github.com/filipinascimento/bl-network-template-matlab;Example template for network analyses using matlab inside brainlife.;research;MATLAB +https://github.com/filipinascimento/bl-network-visualization;This app generates simple 2D static visualizations for networks by using a force-directed algorithm. The current implementation uses the Large Graph Layout (LGL) algorithm.;research;Python +https://github.com/filipinascimento/bl-timeseries2network;Calculates a similarity matrix (such as correlation, covariance, etc) from time series and convert it to a network datatype (JGFZ) so it can be used in the network pipeline.;research;Python +https://github.com/filipinascimento/CADREDemoPackages;;no_research;Python +https://github.com/filipinascimento/cgicmcprojects;Trabalhos CG ICMC;no_research; +https://github.com/filipinascimento/Complexity;Complexity Library;no_research;C +https://github.com/filipinascimento/CVAccessibility;Software to calculate the outwards accessibility measurement of nodes in complex networks. Check http://arxiv.org/abs/1101.5379v3 and http://arxiv.org/abs/0802.3665 .;research;C +https://github.com/filipinascimento/CVRandomWalks;Fast library to obtain sentences based on random walks from networks for use in word2vec and other embedding techniques. ;research;C +https://github.com/filipinascimento/CVSymmetry;Software to calculate the concentric symmetries of complex networks as described in http://arxiv.org/abs/1407.0224 ;research;C +https://github.com/filipinascimento/cxnetwork;Rewiring Code;research;C +https://github.com/filipinascimento/cxnetworks-docker;Network science docker image with basic libraries. Currently being used to run brainlife network science apps.;research;Dockerfile +https://github.com/filipinascimento/cxrandomwalk;;research;C +https://github.com/filipinascimento/dbgz;Small utility to read and write data from/to dbgz;no_research;Python +https://github.com/filipinascimento/fury-docker;Docker Image to run fury offscreen;no_research;Dockerfile +https://github.com/filipinascimento/helios-network;A web Assembly network representation for Helios-Web.;research;C +https://github.com/filipinascimento/helios-web;A web-based framework to visualize dynamic networks in real-time.;research;JavaScript +https://github.com/filipinascimento/jgf;This package implements export and import functions for the JSON Graph Format (gZipped) `JGF(Z)` (https://jsongraphformat.info). Supported input formats/libraries are `networkx`, `igraph`, `numpy` matrices and `JXNF` files. All network, node and edges attributes are saved as well.;no_research;Python +https://github.com/filipinascimento/MAGProcessing;;no_research;Python +https://github.com/filipinascimento/malleability;;research;C +https://github.com/filipinascimento/metabonet;Interactive visualization for metabolite networks. Under development.;research;JavaScript +https://github.com/filipinascimento/MINERVAVIZ;Visualizations of MINERVA projects;no_research;JavaScript +https://github.com/filipinascimento/openalex-raw;Tools to process OpenAlex raw snapshot files;no_research;Python +https://github.com/filipinascimento/openalexnet;OpenAlex Networks is a helper library to process and obtain data from the OpenAlex dataset via API. It also provides functionality to generate citation and coauthorship networks from queries.;research;Jupyter Notebook +https://github.com/filipinascimento/PACSExplorer;;no_research;JavaScript +https://github.com/filipinascimento/RModularity;Small utility to calculate the robustness modularity, information modularity and modularity difference.;no_research;Python +https://github.com/filipinascimento/teleconnectionsgranger;Notebook to find teleconnections in Anomalies in Precipitation and Temperature cross the globe using lagged correlation or Granger causality;research;Jupyter Notebook +https://github.com/filipinascimento/workshop-netviz;This repository contains the files and links to be used in the IUNI Workshop Hands-on : An Introduction to Network Visualization. https://iuni.iu.edu/news/event/79;research;Jupyter Notebook +https://github.com/filipinascimento/WOS;Simple WOS aggregator to process WOS JSON files;no_research;Python +https://github.com/filipinascimento/WOSRaw;Collection of utilities to process raw XML data from the Web of Science.;no_research;Python +https://github.com/filipinascimento/xnet;Small python package to read .xnet (compleX NETwork format) files used in my other scripts.;no_research;Python +https://github.com/galkinAIP/darkcaves;A little text adventure in C, an excercise. ;no_research;C +https://github.com/harmening/dockerfiles;🐳 ;no_research;Dockerfile +https://github.com/harmening/dotfiles;🤖;no_research;Shell +https://github.com/harmening/HArtMuT;🧠 Head ARTefact Modelling Using Tripoles;research;Julia +https://github.com/harmening/MRIsegmentation;🧠 Automatic MRI segmentation pipeline for consistent FEM and BEM mesh creation from MRI scans of human heads;research;MATLAB +https://github.com/harmening/phrase-frequency-counter;💬NLP - Evaluating the phrase eloquency of a text data set and returns an adapted version of the hirsch-index as measure of its usefulness for the training of Neural Networks for NLP.;research;C +https://github.com/harmening/pyhemo;🧠 PYthonic HEad MOdeling;research;Python +https://github.com/harmening/pyreite;🧠 Pythonic, Yet Rudimental, Electrical Impedance Tomography Expert;research;Python +https://github.com/harmening/signature_extraction;💬NLP - Library for splitting email content into a human-written body and an automatically appended signature.;no_research;Python +https://github.com/hosilva/hello-world;Simple test;no_research; +https://github.com/hosilva/hosilvacv;My cv;no_research;TeX +https://github.com/hosilva/journal_templates;Minimal templates for Phys. Rev., JHEP and CQG.;no_research;TeX +https://github.com/hosilva/mplstyle;Collection of customized matplotlib styles sheets;research;Python +https://github.com/hosilva/physrev_mplstyle;A matplotlib style sheet to help me spend less time editing figures for my manuscripts for Phys. Rev. D.;research;Jupyter Notebook +https://github.com/hosilva/ppeos_tables;Tables with piecewise-polytrope equations of state fit parameters;no_research; +https://github.com/hosilva/tex-notes;LaTeX template for short notes.;no_research;TeX +https://github.com/hyddata/CMIP6_data;download CMIP6 data using MATLAB;no_research; +https://github.com/hyddata/Landsat8-9-TVDI-calculation;Calculate the agricultural drought index using remotely sensed data, more specificaly Landsat 8/9;no_research; +https://github.com/hyddata/TR;% claculate different return periods of maximum daily rainfall;no_research;MATLAB +https://github.com/iz-sai/instrumental-assignment-iz;Simple event counter in python;no_research;Python +https://github.com/iz-sai/samp-webtools;Set of JavaScript tools to make a web browser SAMP-enabled;no_research;JavaScript +https://github.com/jochenklar/abschiebungen;;no_research;Python +https://github.com/jochenklar/ansible-tilestache;;no_research;Shell +https://github.com/jochenklar/backup;This script simplifies backups of directories using rsync.;no_research;Python +https://github.com/jochenklar/backup-git-repos;Backup a list of git repositories and keep them up to date.;no_research;Python +https://github.com/jochenklar/bbs;;no_research;Python +https://github.com/jochenklar/bike;A small web application to visualize my bike rides.;no_research;Python +https://github.com/jochenklar/caipirinha;Caipirinha is a light-weight user management system and identity provider written in django.;no_research;Python +https://github.com/jochenklar/chemotion-converter-tests;;no_research;Python +https://github.com/jochenklar/chemotion-formats;Playground to work on a generic format for chemotion (and more).;research;Python +https://github.com/jochenklar/coffeecalc;;no_research;Python +https://github.com/jochenklar/constellations;;no_research;JavaScript +https://github.com/jochenklar/corona;;no_research;Jupyter Notebook +https://github.com/jochenklar/digital-rocket;;no_research;JavaScript +https://github.com/jochenklar/django-template;An empty django project to get things started.;no_research;Python +https://github.com/jochenklar/django-test-generator;A set of mixins to automatically generate tests generic Django views and DRF Viewsets.;no_research;Python +https://github.com/jochenklar/django-vendor-files;A small extension to download css and js vendor files from CDNs and host them locally.;no_research;Python +https://github.com/jochenklar/djangogirls-test;I'm a coach at Django Girls Berlin so I have to do the tutorial, right?;no_research;Python +https://github.com/jochenklar/dump;A set of scripts to perform database dumps of all databases in seperate tarballs.;no_research;Python +https://github.com/jochenklar/elasticsearch-1.3.9-docker;A docker setup for elasticsearch 1.3.9 (for development purposes).;no_research;Dockerfile +https://github.com/jochenklar/entwicklung-berlins;;no_research;CSS +https://github.com/jochenklar/evora;evolution of a polytropic fluid within a cosmological framework including the influence of gravity, primordial chemical processes, radiative cooling, heating by a UV background, and thermal conduction;research;FORTRAN +https://github.com/jochenklar/garmin-to-geojson;Converts GPX or TCX files to geojson;no_research;Python +https://github.com/jochenklar/gpxviewer;A Python script to visualize GPX files using Leaflet.;no_research;Python +https://github.com/jochenklar/isimip-scripts;Some scripts, to be used in the context of ISIMIP.;research;Python +https://github.com/jochenklar/isimip-viewer;;no_research;Python +https://github.com/jochenklar/jekyll-template;;no_research;Ruby +https://github.com/jochenklar/jkTable;A moderately simple javascript table.;no_research;JavaScript +https://github.com/jochenklar/jochenklar;;no_research; +https://github.com/jochenklar/jochenklar.de-wagtail;Wagtail project for my website.;no_research;Python +https://github.com/jochenklar/logparser;Parses logs in the Apache Common Log Format (CLF) and stores them without personal information as JSON, CSV or in a database.;no_research;Python +https://github.com/jochenklar/maps;;no_research;Vue +https://github.com/jochenklar/meps;A set of scripts to interact with the (official) lists of members of the european parliament.;research;Python +https://github.com/jochenklar/oklab-talk;;no_research;CSS +https://github.com/jochenklar/pypi-release;A command line script to publish python packages to PyPI (using twine).;no_research;Python +https://github.com/jochenklar/python-template;An empty python project to get things started. ;no_research;Python +https://github.com/jochenklar/quantify;An application to collect personal (health) data of oneself.;research;Python +https://github.com/jochenklar/radar-notebooks;;no_research;Jupyter Notebook +https://github.com/jochenklar/rdmo-advanced;;research;CSS +https://github.com/jochenklar/rdmo-basic;;no_research;CSS +https://github.com/jochenklar/rdmo-xml;;no_research;Python +https://github.com/jochenklar/rdmo.jochenklar.de;;no_research;Python +https://github.com/jochenklar/rdmo.jochenklar.de-ansible;A simple ansible playbook to deploy RDMO;no_research;Shell +https://github.com/jochenklar/rdmo.jochenklar.dev;;no_research;Python +https://github.com/jochenklar/react-template;;no_research;JavaScript +https://github.com/jochenklar/reader2;A feed aggregator and reader;research;Python +https://github.com/jochenklar/redux-template;;no_research;JavaScript +https://github.com/jochenklar/remote;A remote control for spotify on the command line.;no_research;Python +https://github.com/jochenklar/temperature;;no_research;Python +https://github.com/jochenklar/test;;no_research; +https://github.com/jochenklar/tiles;;no_research;JavaScript +https://github.com/jochenklar/tilestache-app;;no_research;Python +https://github.com/jochenklar/trees-ingestor;;no_research;Python +https://github.com/jochenklar/virt-tools;A small collection of utilities for libvirt.;no_research;Python +https://github.com/jochenklar/weight;;no_research;Python +https://github.com/kamaliba/EPIC-SUFI2;;no_research;Python +https://github.com/kimakan/FaintCOS;Improved background subtraction and co-adding code for CALCOS;no_research;Python +https://github.com/kimakan/neovim-config;Configuration I'm using for Neovim;no_research;Lua +https://github.com/kimakan/sim-to-cos;Creates mock spectra for HST/COS using data from simulations;no_research;Python +https://github.com/kristinriebe/blendertools;A collection of Python scripts to make (my) life easier with Blender.;research;Python +https://github.com/kristinriebe/bottledemo;;no_research;Smarty +https://github.com/kristinriebe/cosmosim-scripts;Shell scripts for accessing CosmoSim database;research;Shell +https://github.com/kristinriebe/cosmosim-uws-notebook;Python notebook tutorials for CosmoSim using uws-client as library;research;Jupyter Notebook +https://github.com/kristinriebe/DensityIngest;Tool for reading density fields from Fortran binary files and ingesting them into database, using adrpar's DBIngestor library;research;C++ +https://github.com/kristinriebe/django-prov_vo;Django app implementing the provenance data model from the Virtual Observatory (IVOA ProvenanceDM) and ProvDAL data access;no_research;Python +https://github.com/kristinriebe/django-vosi;Django app implementing IVOA Support Interfaces;no_research;Python +https://github.com/kristinriebe/FofIngest;A tool for reading binary FOF files and ingesting them into a database using adrpar's DBIngestor library. ;research;C++ +https://github.com/kristinriebe/GalacticusIngest;Tool for ingesting Galacticus data, semi-analytical galaxy catalogues for simulations in HDF5 format;research;C++ +https://github.com/kristinriebe/PmssIngest;Tool for reading binary PMss particle files and ingesting them into a database using adrpar's DBIngestor library.;research;C++ +https://github.com/kristinriebe/provenance-converter-ivoa-w3c;Simple tool for converting provenance serialization from IVOA provenance to W3C;no_research;Python +https://github.com/kristinriebe/provenance-cosmosim;A test project for implementing provenance data models using CosmoSim metadata;research;JavaScript +https://github.com/kristinriebe/provenance-images;Folder for provenance images (graphs) created with draw.io;no_research;HTML +https://github.com/kristinriebe/provenance-rave;Test web application for implementating W3C/IVOA provenance data model;no_research;JavaScript +https://github.com/kristinriebe/SageIngest;Tool for ingesting SAGE data, semi-analytical galaxy catalogues for cosmological simulations (Croton et al.);research;C++ +https://github.com/kristinriebe/SagIngest;Tool for ingesting SAG data, semi-analytical galaxy catalogues for cosmological simulations, in HDF5 format;research;C++ +https://github.com/kristinriebe/solarsystem-workshop;Tutorial on creating planets of the solar system in Blender using Python scripting;no_research;Python +https://github.com/kristinriebe/uws-validator;Functional tests for IVOA UWS (1.1) web services;research;Python +https://github.com/lenas95/Projekt_B;;research;R +https://github.com/lenas95/SEWS_Amazon_rainforest;Pyhtonframework to study the detection of SEWSs on the Amazon rainforest;research;Python +https://github.com/mjziebarth/ACOSA;A compilation of spherical algorithms.;research;C++ +https://github.com/mjziebarth/acplotoo;Collection of tools for plotting with matplotlib;research;Python +https://github.com/mjziebarth/Clean-Latex;Script for cleaning and preparing latex documents for journal submission.;no_research;Python +https://github.com/mjziebarth/FlotteKarte;A low-overhead Python cartography package based on PROJ, Matplotlib, and PyProj.;research;C++ +https://github.com/mjziebarth/gmt-python-extensions;Some personal extension code for gmt-python (perhaps to be implemented);no_research;Python +https://github.com/mjziebarth/GPS_MIDAS;Processing of MIDAS-processed GPS velocity data table from UNR geodesy.;no_research;Python +https://github.com/mjziebarth/Hurtigbrief;Quickly write letters using LaTeX `scrletter`;no_research;Python +https://github.com/mjziebarth/InterpolateStress;Interpolate stress azimuth and plunges based on the Stress2Grid algorithm by Ziegler & Heidbach (2017);research;C++ +https://github.com/mjziebarth/jass.lang;GtkSourceView language file for WC3 JASS scripting language;no_research; +https://github.com/mjziebarth/Mebuex;build_ext with Meson;no_research;Python +https://github.com/mjziebarth/ProjWrapCpp;Wraps some PROJ library C API code into a C++ class;no_research;C++ +https://github.com/mjziebarth/pybalonor;Bayesian Analysis of the Log-Normal distribution in Python;research;C++ +https://github.com/mjziebarth/REHEATFUNQ;Regional aggregate heat flow distributions and heat flow anomaly quantification;research;Jupyter Notebook +https://github.com/mjziebarth/Revise;Yet another revision markup latex package.;no_research;TeX +https://github.com/mjziebarth/seno;Spatially embedded network outline;no_research; +https://github.com/mjziebarth/SHGOFAST;Monkey-patched Cython/C++ code to solve some SciPy SHGO bottleneck issues;no_research;Cython +https://github.com/mjziebarth/SlimTeX;A slim LaTeX editor.;no_research;C++ +https://github.com/msdemlei/colstatnote;A draft IVOA note on having column statistics in the VO;no_research;TeX +https://github.com/msdemlei/cross-discipline-discovery;Draft stories for what cross-discipline data discovery might mean;no_research;CSS +https://github.com/msdemlei/datalink-xslt;An XSLT stylesheet to turn IVOA datalink into HTML documents;no_research;XSLT +https://github.com/msdemlei/dig-um-fi-init;Kick-off report for the DIG-UM federated infrastructures topic group;research;TeX +https://github.com/msdemlei/DocRegExt-orig;;no_research;TeX +https://github.com/msdemlei/ivoatexDoc-original;;no_research;TeX +https://github.com/msdemlei/RegTAP-original;The IVOA standard for querying the Registry;no_research;TeX +https://github.com/msdemlei/softid;An IVOA note on operational identification of software components.;research;TeX +https://github.com/msdemlei/StandardsRegExt-previous;The IVOA standard on registering standards;no_research;TeX +https://github.com/msdemlei/uat-as-upstream-original;IVOA note on adopting the UAT;no_research;TeX +https://github.com/msdemlei/udfcat;IVOA endorsed note on ADQL UDFs;no_research;TeX +https://github.com/msdemlei/vocabularies-source;;no_research;Python +https://github.com/msdemlei/vocinvo-original;The Vocabularies in the VO specification;no_research;TeX +https://github.com/msdemlei/VOResource-original;The basic metadata schema of the IVOA Registry;no_research;TeX +https://github.com/mtjvc/gaia-data-workshop;Tutorial for the Gaia Data Workshop, Heidelberg, November 21-24;no_research;JavaScript +https://github.com/mtjvc/gpew;Equivalent widths using Gaussian processes;no_research;Python +https://github.com/mtjvc/RaveExplorer;RAVE t-SNE clickable thingy.;no_research; +https://github.com/mtjvc/RaveStats;Statistics of the RAVE DR4 catalog;no_research;JavaScript +https://github.com/mtjvc/rvmp;Reanalysis of RAVE metal-poor sample;no_research;Python +https://github.com/mtjvc/tsne_explorer;tSNE projection of RAVE survey spectra ;no_research;JavaScript +https://github.com/olebole/ascl-gatherer;Mirror the ascl entries in a local database;no_research;Python +https://github.com/olebole/Debian-Scratchpad;;no_research;Python +https://github.com/olebole/i386-test;;research;Python +https://github.com/olebole/irafterm;Wrapper to catch IRAF graphics and display them in an X11 window;no_research;C +https://github.com/olebole/muse_pixtable;;no_research;Python +https://github.com/olebole/python-cpl;Python bindings for CPL recipes;research;Python +https://github.com/olebole/python-docx;Pragmatic attempt to write OOXML (MS Word 2007) files from python.;no_research;Python +https://github.com/olebole/sphinx-docushare;Sphinx extension to auto-create links to DocuShare documents;no_research;Python +https://github.com/olebole/tclxml;Derived version of the TclXML/TclDOM,TclXSLT, tclxml only, Tcl/Tk 8.5/8.6 TEA compatible.;no_research;C +https://github.com/olebole/tkhtml3;Tkhtml3 repository -- clone from http://tkhtml.tcl.tk/fossil;no_research;C +https://github.com/olebole/voclient;VO Client Libraries and Tasks (C/C++) ;no_research;C +https://github.com/olebole/wcstools;Git repository created from Jessica Mink's versioned WCSTools tar files;no_research;C +https://github.com/olebole/zsvjmp;longjmp for Fortran;no_research;Assembly +https://github.com/pharosso/Repositorio;;no_research; +https://github.com/SimonPfeifer/CBrego;A toy mesh hydro solver in written in C.;no_research;C +https://github.com/SimonPfeifer/cows;A cosmic filament finder for Hessian cosmic web identifiers.;research;Python +https://github.com/SimonPfeifer/cprint;Small python package for printing text in different colours and typography.;no_research;Python +https://github.com/SimonPfeifer/Ecosystem;An ecosystem controlled by a neural net.;research;Python +https://github.com/SimonPfeifer/Processing;Repository containing various scripts written in Python for the free software sketchbook Processing (www.processing.org).;no_research;Python +https://github.com/SimonPfeifer/PyBrego;A toy mesh hydrodynamics solver;research;Python +https://github.com/SimonPfeifer/readEagle;;no_research;C++ +https://github.com/SimonPfeifer/Triangulate;Converting images into low poly triangles;no_research;Python +https://github.com/SimonPfeifer/WLmap;Making weak lensing maps from cosmological simulations.;research;Python +https://github.com/TStella/assignments-html-css-js;;no_research; +https://github.com/TStella/coursera-test;coursera test repository;no_research; +https://github.com/TStella/HTML-CSS-JS_mod3_assignment;;no_research; +https://github.com/TStella/HTML-CSS-JS_mod4_assignment;;no_research; +https://github.com/TStella/HTML-CSS-JS_mod5_assignment;;no_research; +https://github.com/uhucrew/bt-receiver-pcm5102a;;no_research;C +https://github.com/uhucrew/crazy-party-dockerized;;no_research;Dockerfile +https://github.com/uhucrew/dspic33-experiment-board;software to run a homebrew dspic33e board to process audio data at high sampling rates;no_research;C +https://github.com/wbarfuss/CognitiveLevels;Python implementation to create the figures used in the publication 'Dynamical systems as a level of cognitive analysis of multi-agent learning - Algorithmic foundations of temporal-difference learning dynamics';research;Python +https://github.com/wbarfuss/cyexploit;cython / python implementation of the COPAN:Exploit model;research;Python +https://github.com/wbarfuss/DetRL;Python implementation of the deterministic limit of temporal difference reinforcement learning;research;Jupyter Notebook +https://github.com/wbarfuss/eca;Event Coincidence Analysis;research;Python +https://github.com/wbarfuss/EcoPG;Python implementation of the Ecological Public Good model;research;Python +https://github.com/wbarfuss/intrinsic-fluctuations-cooperation;All code to reproduce the results of https://arxiv.org/abs/2209.01013;research;Mathematica +https://github.com/wbarfuss/jbtest;;no_research;TeX +https://github.com/wbarfuss/MARLDynamics;Modeling multi-agent reinforcement learning as dynamical systems;research;Jupyter Notebook +https://github.com/wbarfuss/netlogo-exploit;A netlogo implementation of PIK COPANS Exploit model;research;NetLogo +https://github.com/wbarfuss/Paradigms;Code for paradigms project;research;Jupyter Notebook +https://github.com/wbarfuss/POLD;Partially Observable multi-agent temporal-difference Learning Dynamics in the deterministic infinite memory limit;research;Jupyter Notebook +https://github.com/wbarfuss/pyCRLD;Collective Reinforcement Learning Dynamics in Python;research;Jupyter Notebook +https://github.com/wbarfuss/Taxploit;;no_research;Python +https://github.com/wbarfuss/test-nbdev-vscode;test nbdev with vscode ;no_research;Jupyter Notebook +https://github.com/Zarquan/binder-demo;;no_research;Jupyter Notebook +https://github.com/Zarquan/celastrina;Celastrina;no_research; +https://github.com/Zarquan/Cicatricella;Ansible deployment for a Kafka and Cassandra test platform.;no_research; +https://github.com/Zarquan/coenagrion;File processing;no_research; +https://github.com/Zarquan/erythromma;ESP8266 IoT prototypes;no_research;Lua +https://github.com/Zarquan/hepialus;Nagios deployment containers, scripts and notes.;no_research;Dockerfile +https://github.com/Zarquan/ischnura;Shell scripts to manage KVM ;no_research;Shell +https://github.com/Zarquan/jordanita;Documents diagrams and presentations;no_research; +https://github.com/Zarquan/lasair;Event handling site for LSST:UK;no_research;Jupyter Notebook +https://github.com/Zarquan/lucia;IVOA execution planner;no_research;Java +https://github.com/Zarquan/Lutarea;Dave's time management project;no_research; +https://github.com/Zarquan/Oreas;Collecting metadata for registering IVOA software in the OSSR.;no_research; +https://github.com/Zarquan/OSSR-library-docker-container;An OCI container with the OSSR library installed ;no_research;Dockerfile +https://github.com/Zarquan/OSSR-library-notebook-examples;A wrapper for the OSSR example notebooks;no_research;Jupyter Notebook +https://github.com/Zarquan/phlaeas;Binder experiments;no_research;Dockerfile +https://github.com/Zarquan/Zygaena;VOSpace-Rucio bridge;no_research;Python +https://github.com/09tangriro/AdamES;;no_research;Jupyter Notebook +https://github.com/09tangriro/Adaptive-Signal-Processing-and-Machine-Intelligence;A look into various adaptive techniques from LMS to deep learning;no_research;HTML +https://github.com/09tangriro/InSight-FYP;Scripts and notebooks used for my Final Year Project ;no_research;Jupyter Notebook +https://github.com/09tangriro/Pearl;Adaptable tools to make reinforcement learning and evolutionary computation algorithms.;research;Python +https://github.com/09tangriro/ppg;Phasic Policy Gradient;research;Python +https://github.com/09tangriro/WHEELS;Wheels App;research;Java +https://github.com/0UmfHxcvx5J7JoaOhFSs5mncnisTJJ6q/Modelling-Long-Term-Industry-Energy-Demand;;no_research; +https://github.com/0UmfHxcvx5J7JoaOhFSs5mncnisTJJ6q/moinput;Provides useful functions and a common structure to all the input data required to run models like MAgPIE and REMIND of model input data.;research;R +https://github.com/0xsuu/Cactus-Macho-Packer;Cactus Macho Packer for macho executable.;no_research;C +https://github.com/0xsuu/GomokuChessBoardGame;A Gomoku chessboard game ready for AI competition;no_research;C++ +https://github.com/0xsuu/gym-free-DQN;Copied from my Mahjong repository, implementations of DQN and its variants.;no_research;Python +https://github.com/0xsuu/HouseRentingHelper;This script is aimed to help you calculate various distances/travel times between your desired house and customised locations.;no_research;Python +https://github.com/0xsuu/Injector;File inject iOS App;no_research;Objective-C +https://github.com/0xsuu/injector_commandline;a command line version of injector, can insert any bytes to any readable file.;no_research;C +https://github.com/0xsuu/iOSIconMaker;Make icons for iOS developing;no_research;Shell +https://github.com/0xsuu/MachoBuilder;Designed for modification on segment or header of macho file;no_research;C++ +https://github.com/0xsuu/MachOHeadersEraser;A python program to remove some important information in MachO headers that most disassemblers use.;no_research;Python +https://github.com/0xsuu/mutual-information-regulariser;;research;Python +https://github.com/0xsuu/mygithubpage;;no_research; +https://github.com/0xsuu/PairSolitaire;Searching algorithm for game Pair Solitaire;no_research;C++ +https://github.com/0xsuu/Pi_Polygraph;A polygraph make by Pi for CS yr1 PROM project.;no_research;Python +https://github.com/0xsuu/popl;popl assignment;no_research;Java +https://github.com/0xsuu/Project-Elder-Iron;;no_research;Python +https://github.com/0xsuu/Project-Mahjong;Build AI for Mahjong.;no_research;C++ +https://github.com/0xsuu/RSAEnc;RSA implementation using python with relative libs;no_research;Python +https://github.com/0xsuu/S2-016-EXP-for-Mac-OS;Exploit S2-016;no_research;Objective-C +https://github.com/0xsuu/SearchAlgorithmExercise;An implementation of BFS, DFS and A* search with topic of 24 points game, good for understanding the algorithm, not a good pr example, and some states are missed.;no_research;C++ +https://github.com/0xsuu/SimpCost;An iOS app which can help you record your balance;no_research;Objective-C +https://github.com/0xsuu/Slide2Dismiss;a MobileSubstrate tweak 's source code;no_research;Logos +https://github.com/0xsuu/Slide2Kill;The initial version of Slide2Kill (0.0.6);no_research;Objective-C +https://github.com/0xsuu/Slide2Kill-Pro;An iOS tweak that enhances switcher's experience;no_research;Objective-C +https://github.com/0xsuu/slide2kill7;Slide down in the switcher to kill all apps. iOS7 version;no_research;Objective-C +https://github.com/0xsuu/Slide2Kill8-Lite;Slide2Kill for iOS 8;no_research;Objective-C +https://github.com/0xsuu/SuuBird;A flappy bird liked game on iOS, with levels inside. Just for practice.;no_research;Objective-C +https://github.com/0xsuu/Talker;;no_research;Python +https://github.com/0xsuu/WeChatPatch;A dylib patch for WeChat(or more);no_research;Objective-C +https://github.com/aadeshnpn/aadeshnpn;Config files for my GitHub profile.;no_research; +https://github.com/aadeshnpn/Bee_Nest-Site_Selection;Stability of Choice in the Honey Bee Nest-Site Selection Process;no_research;Python +https://github.com/aadeshnpn/cooperative-transport;Cooperative Transport with Cozmos;research;Python +https://github.com/aadeshnpn/cs501r;Labs and other algorithms for cs501r;no_research;Jupyter Notebook +https://github.com/aadeshnpn/CS601R;Lab and Projects for CS601R: Advance Deep Learning;no_research;Jupyter Notebook +https://github.com/aadeshnpn/datasciencecoursera;Repo for data science course from coursera.org ;no_research;HTML +https://github.com/aadeshnpn/ECEN773-MPC;Class project for ECEN773;no_research;Python +https://github.com/aadeshnpn/faceRecog;Face Recognition using Computer Vision Toolbox Matlab;no_research;Matlab +https://github.com/aadeshnpn/jsontoken;Automatically exported from code.google.com/p/jsontoken;no_research;Java +https://github.com/aadeshnpn/KMAIL;Kmail is a simple email server written in java.;no_research;PHP +https://github.com/aadeshnpn/knn-simple;;research;Python +https://github.com/aadeshnpn/LTLf2BT;;research;Python +https://github.com/aadeshnpn/LTSPHandBook;Linux hand book for trainers and student ;no_research; +https://github.com/aadeshnpn/mobile-kernel;Fast and efficient kernel for mobile and tablets;no_research;Assembly +https://github.com/aadeshnpn/multi-agent-scripts;Collection of scripts to simulate multi-agent system;no_research;Python +https://github.com/aadeshnpn/Naive-Bayes;Naive Bayes with Laplace smoothing;no_research;Python +https://github.com/aadeshnpn/nepali-mapper;Simple Rule Based Nepali Mapper;research;Python +https://github.com/aadeshnpn/NepaliCharacterRecognition;RTVTR extension for Number Plate Extraction;no_research; +https://github.com/aadeshnpn/NepaliToEnglishTranslator;Simple Rules Based Nepali To English Translator;no_research;Shell +https://github.com/aadeshnpn/NepaliTTS_Firefox_Extension;Firefox extension for using Nepali Text To Speech System for general use.;no_research;Python +https://github.com/aadeshnpn/NeuralNets;Different types of Neural Nets Implementation;no_research;Matlab +https://github.com/aadeshnpn/OpenGL-LABS;Solutions for the OpenGL lab (Computer Graphics) taught in University of Minnesota Duluth;no_research;C++ +https://github.com/aadeshnpn/OSDN;"Keras implementation for the research paper ""Towards Open Set Deep Networks"" A Bendale, T Boult, CVPR 2016";research;Jupyter Notebook +https://github.com/aadeshnpn/ponydge;Python implementation of distributed agent based grammatical evolution;no_research; +https://github.com/aadeshnpn/PyGoal;An LTL based explicit goal specification and evaluation framework;research;Python +https://github.com/aadeshnpn/python-SLR-parser;SLR Parser based on Python;no_research;Python +https://github.com/aadeshnpn/reinforcement-learning-an-introduction;Reinforcement Learning: An introduction (2nd edition) notes and programs;no_research;Jupyter Notebook +https://github.com/aadeshnpn/revision;Revision of basic algorithms and data structure;no_research;Python +https://github.com/aadeshnpn/robotic-vision;Robotic Vision lab and assignment from ECEN631;no_research;Python +https://github.com/aadeshnpn/RTVTR;Real Time Vehicle Tracking and Recogination;no_research; +https://github.com/aadeshnpn/SilentAdministrator;Data Visualization;no_research;PHP +https://github.com/aadeshnpn/story-board;Futurastic Creative;no_research; +https://github.com/aadeshnpn/swarm;Simulation framework for Swarms related application;research;Python +https://github.com/aadeshnpn/Swarms-Interface;Biological Swarm Interface;no_research;JavaScript +https://github.com/aadeshnpn/Temporal-Credit-Assignment;"PyTorch implementation of ""Sequence Modeling of Temporal Credit Assignment for Episodic Reinforcement Learning""";no_research;Python +https://github.com/aadeshnpn/timepass;Random Tiny Projects;no_research;Java +https://github.com/aadeshnpn/Traffic-Light-Classification;Traffic Light detection and classification;no_research;Python +https://github.com/abaisero/abaisero-latex;My LaTeX style file;no_research;TeX +https://github.com/abaisero/abaisero-typst;;no_research; +https://github.com/abaisero/adventofcode;Aggregated solutions to Advent of Code;no_research;Ruby +https://github.com/abaisero/aiplan;;no_research; +https://github.com/abaisero/asym-rlpo;Asymmetric methods for partially observable reinforcement learning;research;Python +https://github.com/abaisero/awesome-widgets;Widgets for AwesomeWM;no_research; +https://github.com/abaisero/baise.ro;My personal website, written with python/Flask;no_research;Jupyter Notebook +https://github.com/abaisero/dataspace;;no_research; +https://github.com/abaisero/discovery-utils;utilities to run and look at experiments on discovery;no_research;Shell +https://github.com/abaisero/dotfiles;;no_research;Vim Script +https://github.com/abaisero/dotfiles.pi;;no_research;Shell +https://github.com/abaisero/dviz_proj;;no_research;JavaScript +https://github.com/abaisero/git_test;;no_research; +https://github.com/abaisero/gym-gridverse;Gridworld domains in the gym interface;research;Python +https://github.com/abaisero/gym-pomdps;;research;Python +https://github.com/abaisero/gym-pyro;OpenAI Gym environments for MDPs, POMDPs, and confounded-MDPs implemented as pyro-ppl probabilistic programs.;research;Python +https://github.com/abaisero/multiverse-go;Rules to multiverse go.;no_research;TeX +https://github.com/abaisero/one-to-one;Bijections between semantic value and index;research;Python +https://github.com/abaisero/pre-commit-hooks;Custom git pre-commit hooks;research;Python +https://github.com/abaisero/pyfgraph;Generic factor graph implementation;no_research;Python +https://github.com/abaisero/rl-parsers;;no_research;Python +https://github.com/abaisero/rl-rpsr;Code for reward-predictive state representations;research;Python +https://github.com/abaisero/tiny_kernel_lib;Tiny Kernel Library. My own path kernel implementation in C++ together with a few other kernels.;no_research;C++ +https://github.com/abaisero/undermen-hg;;no_research;Python +https://github.com/abaisero/wandb-stresstests;;no_research;Python +https://github.com/abdel/betterplace;Aggregates and analyses data about crowd-funded projects in Egypt;no_research;PHP +https://github.com/abdel/BubblePop;A simple bubble popping game for iOS;no_research;Objective-C +https://github.com/abdel/Declutter;A decluttered tweets timeline for Android;no_research;Java +https://github.com/abdel/dotfiles;Configurations for my development environment;no_research;Shell +https://github.com/abdel/hunter2;A simple CLI-based password manager.;no_research;Ruby +https://github.com/abdel/imdb-sentiment-analysis;Sentiment analysis on IMDb movie reviews;no_research;Jupyter Notebook +https://github.com/abdel/jupyter-notebooks;A collection of Jupyter notebooks;no_research;Jupyter Notebook +https://github.com/abdel/pathology-lab;Pathology lab reporting;research;PHP +https://github.com/abdel/ProfessionalJournal;An immutable journal for professionals;no_research;C# +https://github.com/abdel/ProfessionalJournalServer;Backend web service for the Professional Journal mobile app;no_research;JavaScript +https://github.com/abdel/stationwagon;Stationwagon is a Fuel-powered blog application.;no_research;PHP +https://github.com/abdel/timetable-scraper;;no_research;Python +https://github.com/abdel/traffic-lights;Basic traffic lights simulation in an intersection;no_research;JavaScript +https://github.com/abdel/uts;Assignments or random code during my time at UTS.;no_research;C++ +https://github.com/abhimishr/abhimishr;;no_research; +https://github.com/abhimishr/appIMPACT;;no_research;R +https://github.com/abhimishr/dynamic_forestry_GitHub;;research;GAMS +https://github.com/abhimishr/FADNUGent;FADN Data analysis from master thesis of Abhijeet Mishra @UGent, Belgium;research;R +https://github.com/abhimishr/faustmann_gams;Calculating rotations lengths according to Faustmann criterion;no_research;GAMS +https://github.com/abhimishr/LUMEN;;research;GAMS +https://github.com/abhimishr/MAgPIESyntaxNpp;MAgPIE model Syntax highlighting for GAMS (Notepad++ );no_research; +https://github.com/abhimishr/magpie_forestry;;research;GAMS +https://github.com/AdamGleave/ArduinoPiI2C;Library for I2C communication between the Raspberry Pi & Arduino;no_research;Python +https://github.com/AdamGleave/elgato-camlink-workaround;Workaround to make Elgato Camlink 4K work on Linux;no_research;Python +https://github.com/AdamGleave/Hapi;Adam Gleave's Cambridge Part II Project;no_research;C++ +https://github.com/AdamGleave/HermesCache;Fork of https://bitbucket.org/saaj/hermes/overview;no_research;Python +https://github.com/AdamGleave/instacart-scraper;Convert Instacart receipts into CSV;no_research;Python +https://github.com/AdamGleave/PiTutorial;My tutorial for Raspberry Pi at http://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/;no_research;Prolog +https://github.com/AdamGleave/pytest-shard;Shard tests to support parallelism across multiple machines.;research;Python +https://github.com/AdamGleave/UnicodeCompressor;;no_research;C++ +https://github.com/AdamGleave/UnicodeCorpus;A collection of public-domain UTF-8 files in a variety of languages, intended for objective evaluation of compression algorithms.;no_research; +https://github.com/AdamGleave/website;Website raw source code;no_research;TeX +https://github.com/adityam/aruna-poems;;no_research;HTML +https://github.com/adityam/compound-channel;Code for error exponents for compound channel;no_research; +https://github.com/adityam/context-articles;Artiles for TUGBoat;no_research; +https://github.com/adityam/context-backgrounds;ConTeXt module for various frame backgrounds;no_research;TeX +https://github.com/adityam/context-blog;;no_research;CSS +https://github.com/adityam/context-comments;Multi line comments in ConTeXt;no_research; +https://github.com/adityam/context-docker;;no_research; +https://github.com/adityam/context-drops;Git repo for drops module by Peter Rolf;no_research;Lua +https://github.com/adityam/context-eink;ConTeXt style file for eink devices;no_research; +https://github.com/adityam/context-fences-extra;;no_research; +https://github.com/adityam/context-math;The experimental math code for ConTeXt MKIV;no_research;Lua +https://github.com/adityam/context-mathsets;MathSets module for ConTeXt;no_research; +https://github.com/adityam/context-metaducks;A humble port of TikZducks to MetaPost using ConTeXt's Metafun macro package.;no_research; +https://github.com/adityam/context-overviewpage;;no_research;TeX +https://github.com/adityam/context-pkgbuild;PKGBUILD file for installing context-minimals on Arch Linux;no_research;Shell +https://github.com/adityam/context-slides;Yet another slides module for ConTeXt;no_research;TeX +https://github.com/adityam/context-slides-example;A step by step instruction on how to create slides in ConTeXt;no_research;TeX +https://github.com/adityam/context-webfilter;ConTeXt module to generate images from web services;no_research;Lua +https://github.com/adityam/contextgarden-update;Update module on contextgarden;no_research;Ruby +https://github.com/adityam/course-notes;;no_research;JavaScript +https://github.com/adityam/cut-n-paste;A ConTeXt module to convert a two column pdf to a single column pdf. Useful for reading pdfs on eink readers;no_research; +https://github.com/adityam/dropshadow;;no_research;Lua +https://github.com/adityam/filter;ConTeXt module to process contents of a start-stop environment through an external program;no_research;TeX +https://github.com/adityam/haskell-MDP-algorithms;Algorithms for Markov Decision Processes;no_research;Haskell +https://github.com/adityam/kaggle-digit-recognizer;;no_research;Haskell +https://github.com/adityam/linux-blog;;no_research;CSS +https://github.com/adityam/MDP.jl;Markov Decision Processes algorithms for Julia;no_research;Julia +https://github.com/adityam/mp-sketch;Hand drawn affect for Metapost ;no_research; +https://github.com/adityam/multi-agent-systems;;no_research;JavaScript +https://github.com/adityam/multiaccess-broadcast;;no_research;Haskell +https://github.com/adityam/pandoc-templates;Templates for pandoc;no_research; +https://github.com/adityam/periodic-sensor-scheduling;;no_research;Jupyter Notebook +https://github.com/adityam/pg;Books from project gutenburg in ConTeXt format;no_research; +https://github.com/adityam/real-time-example;Computing optimal real-time encoding-decoding strategies;no_research;Haskell +https://github.com/adityam/remote-estimation-packet-drops;;no_research;Julia +https://github.com/adityam/rss2kindle;Convert RSS feed to a PDF for reading on Kindle;no_research;Ruby +https://github.com/adityam/scalar-remote-estimation;Code for computing thresholds for scalar remote estimation with packet drops;no_research;Julia +https://github.com/adityam/signals-and-systems;;no_research;Jupyter Notebook +https://github.com/adityam/simple-slides;A ConTeXt module for creating simple slides;no_research;Lua +https://github.com/adityam/stochastic-control;Course notes for ECSE 506: Stochastic Control and Decision Theory ;no_research;Jupyter Notebook +https://github.com/adityam/teams;A graphical modeling approach to simplifying sequential teams;no_research;Haskell +https://github.com/adityam/vim-context;Vim plugins for ConTeXt;no_research;Vim Script +https://github.com/adityam/visualcounter;ConTeXt module for decorating numbers (and perhaps other things later);no_research;TeX +https://github.com/adityam/wireless-thermometer;Wireless Thermometer for Arduino Yun;no_research;JavaScript +https://github.com/adityam/wmii-sh;Configuration file for default wmii;no_research;Shell +https://github.com/adityam/writeup;A context module for a simple writeup;no_research; +https://github.com/Akhilez/Akhilez;GitHub Profile Page;no_research; +https://github.com/Akhilez/Alster;AR wrestling ball game;no_research;ShaderLab +https://github.com/Akhilez/Colorizer;A machine learning application that colorizes a black and white image.;no_research;CSS +https://github.com/Akhilez/ComplekCity;Simulating a city as a complex system;no_research;JavaScript +https://github.com/Akhilez/DisCease;A complex system that studies migration and spread of diseases.;research;JavaScript +https://github.com/Akhilez/GatePassSystem;A web application that acts like a gate-pass system for a college. Developed in Python 3.4 using Common Gateway Interface;no_research;Python +https://github.com/Akhilez/grpc_fastapi_demo;A mono repo with all my deep learning models, APIs and research on computer vision.;no_research;Python +https://github.com/Akhilez/gyms;;no_research;Python +https://github.com/Akhilez/HoliFriends;A fun endless runner game made in Unity;no_research;C# +https://github.com/Akhilez/Infobook;Android app to save secure information like bank details with encrypted Google Drive back up. (Under development);no_research;Kotlin +https://github.com/Akhilez/JNTUHLabPrograms;This has lab programs for Btech students;no_research;HTML +https://github.com/Akhilez/justcode;Code is fun. JustCode is a repo for testing out my coding experiments.;no_research;Jupyter Notebook +https://github.com/Akhilez/keep-backup;Backup your Google Keep data;no_research;HTML +https://github.com/Akhilez/lexical_lab;NLP;no_research;Jupyter Notebook +https://github.com/Akhilez/lit;;no_research;Python +https://github.com/Akhilez/MapReduceExamples;A set of examples of all mapreduce concepts required for certification exams;no_research; +https://github.com/Akhilez/medicwhizz-api;Business logic for Medical quiz app. A django app, part of akhilkanna.in django project.;no_research;JavaScript +https://github.com/Akhilez/ml_api;API for ML Gallery;no_research;Python +https://github.com/Akhilez/ml_gallery;This is a master project of some experiments with Neural Networks. Every project here is runnable, visualized and explained clearly.;no_research;JavaScript +https://github.com/Akhilez/MobileBarter;A blockchain application used to transfer mobile talk-time using Ethereum in Solidity language;no_research;JavaScript +https://github.com/Akhilez/painting_swapper;Swaps paintings in images with cute puppy photos.;no_research;Jupyter Notebook +https://github.com/Akhilez/profile;My personal website;no_research;JavaScript +https://github.com/Akhilez/reward_lab;Reinforcement Learning experiments;no_research;Jupyter Notebook +https://github.com/Akhilez/StudentFeedback;A web application for educational institutions that conducts and analyses feedback given by students on faculty, and learning outcomes. Developed in Python 3.4 using Django web framework;no_research;JavaScript +https://github.com/Akhilez/Syllabus;An Android app for engineering students to refer and keep track of their syllabus. Available on Google Play Store;no_research;Kotlin +https://github.com/Akhilez/tic-tac-toe;TicTacToe game played by Neural Networks!;no_research;Jupyter Notebook +https://github.com/Akhilez/TimeTable;An Android app for college students to refer to, edit or add their college schedule and to check the time left for the next period;no_research;Java +https://github.com/Akhilez/vision_lab;;no_research;Jupyter Notebook +https://github.com/Akhilez/web_starter;A cookie cutter template for web apps using my favorite stack -> Django + React;no_research;JavaScript +https://github.com/akifumi-wachi-4/safe_near_optimal_mdp;Safe Reinforcement Learning in Constrained Markov Decision Processes;research;Python +https://github.com/akifumi-wachi-4/spolf;Safe Policy Optimization with Local Features;research;Python +https://github.com/akifumi-wachi-4/website;Personal website (https://akifumi-wachi-4.github.io/website/);no_research;CSS +https://github.com/aklein1995/Continuous-Control-with-DDPG;;no_research;Python +https://github.com/aklein1995/exploration_sil_im;;research;Python +https://github.com/aklein1995/fitness;Personal webpage where I am going to put in practise some knowledge;no_research;JavaScript +https://github.com/aklein1995/heterogeneous_agents_curiosity_vizdoom;;no_research;Python +https://github.com/aklein1995/intrinsic_motivation_techniques_study;;research;Python +https://github.com/aklein1995/Multi-Agent-Reinforcement-MADDPG;;research;Python +https://github.com/aklein1995/Navigation_Bananas_DRL;;research;Python +https://github.com/aklein1995/Pong_withDRL;;research;Jupyter Notebook +https://github.com/alexander-turner/.dotfiles;.dotfiles;no_research;Shell +https://github.com/alexander-turner/151;;no_research;Scheme +https://github.com/alexander-turner/AUP-random-MDPs;;no_research; +https://github.com/alexander-turner/BroodWar;A Q-Function Approximator for StarCraft: The Brood War;no_research;C++ +https://github.com/alexander-turner/CSC-207;Test repository for 207;no_research;Java +https://github.com/alexander-turner/csc207-hw2;;no_research;Java +https://github.com/alexander-turner/csc207-HW2-1;2nd Homework Assignment, made on Mac;no_research;Java +https://github.com/alexander-turner/csc207-hw3;;no_research;Java +https://github.com/alexander-turner/csc207-hw7;;no_research;Java +https://github.com/alexander-turner/csc207-hw9;;no_research;Java +https://github.com/alexander-turner/euler-502;"""If you have built castles in the air, your work need not be lost";no_research; +https://github.com/alexander-turner/euler-502-py;"""If you have built castles in the air, your work need not be lost";no_research; +https://github.com/alexander-turner/euler-66;Solving quadratic diophantine equations of the form x2 – Dy2 = 1.;no_research;Java +https://github.com/alexander-turner/Failed-Login-Tracker;Track failed login attempts;no_research;PowerShell +https://github.com/alexander-turner/git-exercise;;no_research; +https://github.com/alexander-turner/git-exercise-2;;no_research; +https://github.com/alexander-turner/MHW01;Lab and notes from CSC161;no_research; +https://github.com/alexander-turner/ProcGen-maze-model-visualization;;no_research;Jupyter Notebook +https://github.com/alexander-turner/PyPlan;An easily-extensible planning algorithm and simulator suite.;no_research;Python +https://github.com/alexander-turner/Quiz;A quiz that will improve along with my JS skills.;no_research;JavaScript +https://github.com/alexander-turner/test-2;downloaded-files;no_research; +https://github.com/alexander-turner/Whitelist_Learning;Safer Reinforcement Learning.;no_research;Python +https://github.com/alexkoberle/Database_Scripts_IIASA;python scripts for message_gams framework of MESSAGE_Brazil;no_research; +https://github.com/alexkoberle/hello-world;start;no_research; +https://github.com/AlexPasqua/Autoencoders;Pytorch implementation of various autoencoders (contractive, denoising, convolutional, randomized);research;Python +https://github.com/AlexPasqua/CNS-assignments;Assignments for the course of Computational Neuroscience @ Unipi;no_research;MATLAB +https://github.com/AlexPasqua/DeepNetSlice;Reinforcement Learning tool for Network Slice Placement problems;research;Python +https://github.com/AlexPasqua/DM-project;Analysis of the spending behaviour of customers in an online shopping website;research;Jupyter Notebook +https://github.com/AlexPasqua/HLT-assignments;Assignments of the course of Human Language Technologies @ Unipi;no_research;Jupyter Notebook +https://github.com/AlexPasqua/IntensiveCareManagementSystem;"A software to manage an intensive care system. Initially created as a project for ""Software Engineering"" course at UniVR";no_research;Java +https://github.com/AlexPasqua/ISPR-midterms;Assignments for the course of Intelligent Systems for Pattern Recognition @ University of Pisa;no_research;Jupyter Notebook +https://github.com/AlexPasqua/keras-caffe-converter;Keras - Caffe converter (both directions) with pruning demos in Keras. Originally developed as BSc thesis project @ University of Verona;research;Python +https://github.com/AlexPasqua/MLCMS-exercises;Exercises for the course of Machine Learning in Crowd Modelling and Simulation @ TUM;no_research;Jupyter Notebook +https://github.com/AlexPasqua/MLCMS-project;Prediction of Pedestrian Speed with Artificial Neural Networks;no_research;Jupyter Notebook +https://github.com/AlexPasqua/nn-memory-usage;Given a Keras model and the input data shape, the project will calculate a lower limit for the memory usage of the model.;no_research;Python +https://github.com/AlexPasqua/NNs-from-scratch;Implementation from scratch of fully connected neural networks trainable through SGD with backpropagation;no_research;Python +https://github.com/AlexPasqua/signal-image-processing-tutorial;Tutorial/demo for simple signal and image processing with Matlab;no_research;MATLAB +https://github.com/AlexPasqua/SPM-assignments;Exercises of the course of Parallel and Distributed Systems: Paradigms and Models @ Unipi;no_research;C++ +https://github.com/AlexPasqua/SPM-project;Project for the course Parallel & Distributed Systems: Paradigms & Models @ Unipi;no_research;C++ +https://github.com/AlexPasqua/Sum-Product-Networks;Survey and presentation about Sum-Product Networks (SPNs);research; +https://github.com/AlexPasqua/system-calls;"Project for ""Operating Systems"" course at Unviversity of Verona";no_research;C +https://github.com/AlexPasqua/VaxItaly-covid19;Analysis on the Covid-19 vaccination campaign in Italy;no_research;Jupyter Notebook +https://github.com/amnmalik/becomingAscientist;"Contains notes, ideas, and opinions on the path to becoming a ""proper"" scientist";no_research; +https://github.com/amnmalik/CarbonMarketsProject;Code for the carbon markets project ;no_research;R +https://github.com/amnmalik/GCAM-starter-kit;List of essential tutorials and tasks for colleagues starting to work with GCAM;no_research; +https://github.com/amnmalik/gcam-v6-ceew;;research;R +https://github.com/amnmalik/gcamv7-ceew;Changes to stock GCAM v7.0 for India-specific analysis;no_research; +https://github.com/amnmalik/localrepo;local files on github;no_research;Batchfile +https://github.com/amnmalik/Master-thesis;Master thesis on 'Kinetics of Olivine Dissolution in Column Experiments' ;no_research;TeX +https://github.com/amnmalik/PhdDefense;Contains code, figures, and presentation for my PhD Defense;no_research; +https://github.com/amnmalik/PhdSummary;Contains all output - published papers, presentations, code during the course of my PhD;research; +https://github.com/amnmalik/PhDThesis;Contains code and figures to my PhD thesis;research;TeX +https://github.com/amnmalik/PMGSY-OSM-road-integration;Workflow for mapping PMGSY road data into OSM using JOSM.;no_research; +https://github.com/amnmalik/reducingstrandedassets;Contains data and code to produce figures published in the paper https://iopscience.iop.org/article/10.1088/1748-9326/ab8033#references;research; +https://github.com/amnmalik/test;testing git;no_research; +https://github.com/amnmalik/Workflows;Contains concise information on good workflows on Git, R, and general data projects. Information from various sources;no_research; +https://github.com/amy12xx/axa_driver_challenge;Solution to AXA Kaggle challenge to determine driver pattern from GPS data;no_research;Python +https://github.com/amy12xx/colab_notebooks;Colab notebooks on pytorch tutorials, exercises and algorithm implementation in RL and NLP.;no_research;Jupyter Notebook +https://github.com/amy12xx/data-science-notebooks;;no_research;Jupyter Notebook +https://github.com/amy12xx/data_mining;;no_research;Python +https://github.com/amy12xx/glassdoor_scraper;Web scraper for Glassdoor website;no_research;Python +https://github.com/amy12xx/market_basket_analysis;Market Basket Analysis using Apriori algorithm;no_research;Python +https://github.com/amy12xx/ml_notes_and_reports;Any and all reports / notes related to AI. ;research; +https://github.com/amy12xx/telecom_churn_prediction;Churn Prediction on data provided by Teradata Center for Customer Relationship Management at Duke University;no_research;Python +https://github.com/amy12xx/text_classifier;Text_Classifier using scikit-learn and nltk;no_research;Python +https://github.com/amy12xx/util;;no_research;Python +https://github.com/anand-bala/argus;Tool/library for manipulating and monitoring temporal logic specifications;no_research;Rust +https://github.com/anand-bala/arte-os;Another Real-Time Embedded OS: My attempt at learning to create an RTOS.;no_research;C +https://github.com/anand-bala/cmake_cpp_template;CMake + CPP template repository;no_research;CMake +https://github.com/anand-bala/darknet_ros2;ROS2 wrapper for AlexeyAB/darknet;no_research;C++ +https://github.com/anand-bala/dataset_ros;;no_research;Lua +https://github.com/anand-bala/dataset_utils;A collection of scripts to translate some datasets I like to fit with YOLO's training format.;no_research;Python +https://github.com/anand-bala/deepsort_ros;;research;Python +https://github.com/anand-bala/dotfiles;My dotfiles and configuration files;no_research;Python +https://github.com/anand-bala/fishpkg;A collection of fish plugins that can be installed to ~/.fishpkg;no_research;Shell +https://github.com/anand-bala/monitoring_interfaces;;no_research;Python +https://github.com/anand-bala/MotionPanTilt;Motion-controlled Pan-tilt;no_research;Arduino +https://github.com/anand-bala/mytexmf;Custom LaTeX classes and packages for my use;no_research;TeX +https://github.com/anand-bala/omega-automata;A library to create and manipulate Omega-regular automata;no_research;Python +https://github.com/anand-bala/PerceMon;Online monitoring for perception systems using Spatio-Temporal Quality Logic;no_research;C++ +https://github.com/anand-bala/percemon-ros-example;;no_research;C++ +https://github.com/anand-bala/perception-algorithms;Repository of PyTorch-based perception algorithms I use/have used in my research;research;Python +https://github.com/anand-bala/perception_interfaces;ROS2 interfaces (messages) for perception algorithms;no_research;CMake +https://github.com/anand-bala/perception_ros2;;no_research;C++ +https://github.com/anand-bala/prism-parser-py;PRISM Model Checker Language PEG parser in Python;no_research;Python +https://github.com/anand-bala/probabilistic-timed-automata;;no_research;Python +https://github.com/anand-bala/pycem;A Numpy/Scipy implementation of the Cross-Entropy Method for optimization;no_research;Python +https://github.com/anand-bala/pymdp;A package for defining, solving, and simulating Markov decision processes on discrete and continuous spaces.;no_research;Python +https://github.com/anand-bala/python-setuptools-template;Python Setuptools project starter template. Includes settings for mypy, black, isort, flake8, etc.;no_research;Python +https://github.com/anand-bala/signal-temporal-logic;A library for efficiently working with Signal Temporal Logic (STL) and its quantitative semantics. Has Python bindings!;no_research;C++ +https://github.com/anand-bala/symbolic-automata-monitors;Simple implementation of symbolic automata for monitoring real-valued signals;research;Python +https://github.com/anand-bala/tl-py;A Python package for Temporal Logic. Archived in favor of https://github.com/anand-bala/signal-temporal-logic;no_research;Python +https://github.com/anand-bala/vrep-gym;A OpenAI Gym-compatible environment for V-REP simulator using its remote API;no_research;Python +https://github.com/anand-bala/wee-dig-dug;;no_research;Assembly +https://github.com/anand-bala/wifi-dataset;;no_research;Python +https://github.com/andersthuesen/bachelor-project;Bachelor project for BSc Artificial Intelligence and Data Science;research;Jupyter Notebook +https://github.com/andersthuesen/ChromaAI;A deep neural network for colorizing greyscale images. DTU Project.;research;Jupyter Notebook +https://github.com/andersthuesen/CommandSystem;A serial shell for arduino.;no_research;Arduino +https://github.com/andersthuesen/cycle-redux;Unofficial bindings for Cycle.js;no_research;JavaScript +https://github.com/andersthuesen/DM-i-AI-submissions;Submission for DM i AI;no_research;Python +https://github.com/andersthuesen/DTU-02450-Project1;Project 1 in the DTU 02450 course on Machine Learning and Data Mining;no_research;Python +https://github.com/andersthuesen/DTU-02456-Deep-Learning;Project for the DTU course 02456 Deep Learning;no_research;Jupyter Notebook +https://github.com/andersthuesen/DTU-02514-Deep-Learning-in-Computer-Vision;Repo for projects in the DTU course 02514 Deep Learning in Computer Vision;no_research;Python +https://github.com/andersthuesen/DTU-Course-Project-02466;Improve ASR training using synthetic data.;no_research;Jupyter Notebook +https://github.com/andersthuesen/DTU-Project-02466;Our semesterproject (DTU class 02466);no_research;Jupyter Notebook +https://github.com/andersthuesen/forward-forward;Exploration of Hinton's Forward Forward algorithm;no_research;Jupyter Notebook +https://github.com/andersthuesen/lightslide;A simple no-jQuery responsive and touch-enabled slideshow plugin;no_research;JavaScript +https://github.com/andersthuesen/llm-gen;;no_research; +https://github.com/andersthuesen/nes-test;My exploration of NES development and the 6502 assembly language;no_research;Assembly +https://github.com/andersthuesen/node-nes;A NES emulator written in node for use on the web!;no_research;JavaScript +https://github.com/andersthuesen/pattern-match;An optimized reactive smith-waterman pattern matcher.;no_research;JavaScript +https://github.com/andersthuesen/react-native-mobilepay-appswitch;MobilePay AppSwitch for React Native;no_research; +https://github.com/andersthuesen/RecurringBilling;Generic recurring billing in Node.js;no_research;JavaScript +https://github.com/andersthuesen/reinforcement-exploration;This project investigates different methods of exploration in an reinforcement learning setting;research;Python +https://github.com/andersthuesen/rv32i-simulator;RISC-V (RS32i) simulator for DTU Course: 02155 Computer Architecture and Engineering ;no_research;Python +https://github.com/andersthuesen/sladder;A gossip node;no_research; +https://github.com/andersthuesen/SubReaderErrorCodes;Error codes for subreader;no_research;JavaScript +https://github.com/andersthuesen/SubReaderWebsite;Website for SubReader.;no_research; +https://github.com/andersthuesen/thuesen.io;Website for myself :);no_research;TypeScript +https://github.com/andreicnica/contextual-advertising-deploy;;no_research;Python +https://github.com/andreicnica/curiosity-exploration;Curiosity Driven exploration;no_research;Python +https://github.com/andreicnica/gathering_mae;;no_research;Python +https://github.com/andreicnica/hrl_attention;The Paradox of Choice: Using Attention in Hierarchical Reinforcement Learning;no_research;Python +https://github.com/andreicnica/imageTagger;;no_research; +https://github.com/andreicnica/remote_que;;no_research;Python +https://github.com/andreicnica/semantic-exploration;;no_research;Python +https://github.com/andreicnica/summer-school;;no_research;Jupyter Notebook +https://github.com/andreicnica/utils;Contains a collection of many useful helper tools and scripts;no_research;Shell +https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India;Analysis of the projected very wet monsoon seasons on the Indian subcontinent using 32 CMIP6 models. Codes for publication: https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2022GL098856;research;Python +https://github.com/AnjaKatzenberger/CMIP6-Indian-Monsoon;Analysis of the projected changes of the Indian summer monsoon using 32 CMIP6 models;research;Python +https://github.com/aodenweller/green-h2-upscaling;Model code and input data of the technology diffusion model for electrolysis capacity;research;R +https://github.com/aodenweller/remind-pypsa;Scripts for the REMIND-PyPSA model coupling;no_research; +https://github.com/araffin/aae-train-donkeycar;Code used to train an augmented auto-encoder (aka denoising auto-encoder with more augmentations) for the DonkeyCar simulator.;no_research;Python +https://github.com/araffin/advent-of-code-2022;advent-of-code-2022 with Rust, easy to read solutions;no_research;Rust +https://github.com/araffin/arduino-robust-serial;A simple and robust serial communication protocol. It was designed for Arduino but can be used for other purposes (e.g. bluetooth, sockets). Implementation in C Arduino, C++, Python and Rust.;no_research;C++ +https://github.com/araffin/cpp-arduino-serial;A simple and robust serial communication protocol. It was designed for Arduino but can be used for other purposes (e.g. bluetooth, sockets). This is the C++ implementation. ;no_research;C++ +https://github.com/araffin/custom-hugo-academic;;no_research;HTML +https://github.com/araffin/datasaurust;Blazingly fast implementation of the Datasaurus paper. Same Stats, Different Graphs.;no_research;Rust +https://github.com/araffin/eagerx_quadruped;;research;Python +https://github.com/araffin/es-with-search-path;Implementation of the (μ/μ,λ)-Evolution Strategy (ES) with Search Path algorithm in C++;research;C +https://github.com/araffin/graph-annotation-tool;A graph annotation tool using a flask server and javascript;research;HTML +https://github.com/araffin/guess-comixify-movie;Guessing Game | Comixified Movies;no_research;JavaScript +https://github.com/araffin/her-experiments;;no_research;Python +https://github.com/araffin/pybullet_envs_gymnasium;Port of pybullet envs to gymnasium;no_research;Python +https://github.com/araffin/python-arduino-serial;A simple and robust serial communication protocol. It was designed for Arduino but can be used for other purposes (e.g. bluetooth, sockets). This is the Python implementation.;no_research;Python +https://github.com/araffin/rl-baselines-zoo;A collection of 100+ pre-trained RL agents using Stable Baselines, training and hyperparameter optimization included.;research;Python +https://github.com/araffin/rl-handson-rlvs21;Stable-Baselines3 (SB3) reinforcement learning tutorial for the Reinforcement Learning Virtual School 2021.;research;Jupyter Notebook +https://github.com/araffin/rl-tutorial-jnrr19;Stable-Baselines tutorial for Journées Nationales de la Recherche en Robotique 2019 ;no_research;Jupyter Notebook +https://github.com/araffin/rlss23-dqn-tutorial;Deep Q-Network (DQN) and Fitted Q-Iteration (FQI) tutorial for RL Summer School 2023;no_research;Jupyter Notebook +https://github.com/araffin/robotics-rl-srl;S-RL Toolbox: Reinforcement Learning (RL) and State Representation Learning (SRL) for Robotics;research;Python +https://github.com/araffin/rust-arduino-serial;A simple and robust serial communication protocol. It was designed for Arduino but can be used for other purposes (e.g. bluetooth, sockets). This is the Rust implementation.;no_research;Rust +https://github.com/araffin/sbx;SBX: Stable Baselines Jax (SB3 + Jax);research;Python +https://github.com/araffin/srl-zoo;State Representation Learning (SRL) zoo with PyTorch - Part of S-RL Toolbox;research;Python +https://github.com/araffin/tools-for-robotic-rl-icra2022;Tutorial: Tools for Robotic Reinforcement Learning, Hands-on RL for Robotics with EAGER and Stable-Baselines3;no_research;HTML +https://git+A726+B726;;research;Python +https://github.com/aseembits93/Berkeley_DRL_Assignments;Berkeley Deep Reinforcement Learning Assignments;no_research;Jupyter Notebook +https://github.com/aseembits93/cs231n_assignments;Assignments for Stanford CS231n Course;no_research;Jupyter Notebook +https://github.com/aseembits93/dualrendermujoco;dual rendering in mujoco;no_research;C++ +https://github.com/aseembits93/mipverifypy;Evaluating Robustness of Neural Networks with Mixed Integer Programming;no_research; +https://github.com/aseembits93/ml_blogs;Curation of interesting blogs to follow in the field of Machine Learning, AI, Robotics, Computer Vision;no_research; +https://github.com/aseembits93/p1_navigation;Udacity Deep Reinforcement Nanodegree Assignment 1 Solution;no_research;Python +https://github.com/aseembits93/p2_continuous-control;Udacity Deep Reinforcement Learning Nanodegree Project 2;no_research;Jupyter Notebook +https://github.com/aseembits93/p3_collab-compet;Udacity Deep Reinforcement Learning Assignment 3;no_research;Python +https://github.com/aseembits93/qmdp_viz;Tkinter app for visualising working of qmdp algorithm;no_research;Python +https://github.com/aseembits93/ROB599;rob5999;no_research;Python +https://github.com/aseembits93/VS_CNN;"Implementation of IEEE ICRA 2017 paper ""Exploring Convolutional Networks for Visual Servoing""";research;Matlab +https://github.com/aseembits93/xornn;OpenAI XOR Problem;no_research;Python +https://github.com/atreyasha/clingo-solvers;Answer Set Programming (ASP): clingo solvers for NxN Sudoku, Yosenabe, Minotaur and Elevator games;no_research;Prolog +https://github.com/atreyasha/deep-generative-models;Deep generative models implemented with TensorFlow 2.0: eg. Restricted Boltzmann Machine (RBM), Deep Belief Network (DBN), Deep Boltzmann Machine (DBM), Convolutional Variational Auto-Encoder (CVAE), Convolutional Generative Adversarial Network (CGAN);no_research;Python +https://github.com/atreyasha/dotfiles;Dotfiles for a minimal Arch Linux build managed with GNU Stow. Packages include i3-gaps, emacs, neomutt and many more;no_research;Shell +https://github.com/atreyasha/git-hooks;Pre and post-commit git hooks optimized for python, shell, R and org-mode development workflows;no_research; +https://github.com/atreyasha/i3-balance-workspace;Balance windows and workspaces in i3wm;no_research;Python +https://github.com/atreyasha/language-detection;Language detection for WiLI-2018 via character n-gram profiles from Cavnar and Trenkle (1994);research;Python +https://github.com/atreyasha/memory-daemon;Memory-daemon for remote RAM management with email alerts;no_research;Shell +https://github.com/atreyasha/mimic3-benchmarks-occlusion;Perturbation analysis of MIMIC-III Benchmarks best IHM model using occlusion;research;Python +https://github.com/atreyasha/monix;Minimal Arch Linux build;no_research;Shell +https://github.com/atreyasha/mv-temporal-rgan;Multivariate recurrent GANs aimed at generating biomedical time-series. Methodology involves drawing symmetries to adversarial image generation;research;Python +https://github.com/atreyasha/semantic-isometry-nmt;Investigating the isometric behaviour of Neural Machine Translation models on binary semantic equivalence spaces;research;Python +https://github.com/atreyasha/sentiment-argument-mining;Sentiment analysis and argumentation mining in UNSC Speeches;research;Python +https://github.com/atreyasha/spacemacs-elpy;Spacemacs layer(s) for Elpy, intended as a replacement for the Python layer;no_research;Emacs Lisp +https://github.com/atreyasha/spam-detection;Investigating whether sequential learning is inherently important for the task of spam classification, through a comparison of SVM vs. CNN-LSTM models;research;Python +https://github.com/atreyasha/spp-explainability;SoPa++: Leveraging explainability from hybridized RNN, CNN and weighted finite-state neural architectures;no_research;Python +https://github.com/ayeright/covariate-shift-adaptation;A Python package for improving machine learning models in non-stationary environments. ;no_research;Python +https://github.com/ayeright/cs231n-assignments;;no_research;Jupyter Notebook +https://github.com/ayeright/IAML2019-Students;Repository for Labs, Tutorials, Assignments and Study Guides for IAML-DL 2019;no_research;Jupyter Notebook +https://github.com/ayeright/luigi-pipeline-titanic;Implementation of a Luigi pipeline to predict targets for the Titanic dataset.;no_research;Python +https://github.com/ayeright/ml-assisted-hyperparameter-search;Using a random forest to optimise convolutional neural network hyperparameters. ;no_research;Python +https://github.com/ayeright/planets;;no_research; +https://github.com/ayeright/pytorch-training-utils;A collection of functions and classes for making model selection and training in PyTorch quicker and easier.;no_research;Python +https://github.com/ayeright/rl-exercises;;no_research;Jupyter Notebook +https://github.com/ayeright/sales-forecast-lstm;Restaurant sales forecasting with LSTM neural networks;no_research;Jupyter Notebook +https://github.com/ayeright/swafa;;research;Python +https://github.com/ayeright/tf-interpretable-net;TensorFlow implementation of binary classification neural network with option to compute partial derivatives of output probability wrt inputs.;no_research;Python +https://github.com/ayeright/tf-logistic-regression;TensorFlow implementation of logistic regression model.;no_research;Python +https://github.com/ayeright/tf-semi-supervised-net;TensorFlow implementation of a semi-supervised binary classification neural network.;no_research;Python +https://github.com/ayeright/travis-lab;;no_research;Python +https://github.com/ayeright/Vertex-Closeness;"Ranks vertices in an unweighted, undirected graph by their ""closeness"".";no_research;Python +https://github.com/bodirsky/Food_demand_model;Open source model for long-term food demand projections;no_research;R +https://github.com/bodirsky/Food_demand_visualisation_tool;Visualisation tool for food demand projections;no_research;JavaScript +https://github.com/bodirsky/lucode;R package | Landuse Coding Tools;research;R +https://github.com/BolunDai0216/BipedFootStepPlanning;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/BolunDai0216;Config files for my GitHub profile.;no_research; +https://github.com/BolunDai0216/BuildingCPP;Tutorial on the C++ building process and how to build using CMake;no_research;SWIG +https://github.com/BolunDai0216/ConsensusControl;This repository contains the assignments and project for Swarm Robotics, which is a course offered by Prof. Ludovic Righetti at the Tandon School of Engineering of New York University. ;no_research;Jupyter Notebook +https://github.com/BolunDai0216/DeepReinforcementLearning;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/dev-containers;;no_research; +https://github.com/BolunDai0216/dgh_franka;;no_research;Python +https://github.com/BolunDai0216/dg_minimal_tutorial;;no_research;CMake +https://github.com/BolunDai0216/DifferentiableOptimizationCBF;[IEEE RA-L 2023] Official Implementation of Safe Navigation and Obstacle Avoidance Using Differentiable Optimization Based Control Barrier Functions;research;Python +https://github.com/BolunDai0216/EKFSLAM;This repo contains both a MATLAB and Python based implementation of the Extended Kalman Filter Simultaneous Localization And Mapping (EKFSLAM) algorithm.;no_research;MATLAB +https://github.com/BolunDai0216/FR3CBFSim;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/FR3Env;;research;Python +https://github.com/BolunDai0216/FR3Setup;Instructions on how to setup various experiments using Franka Research 3;no_research;Python +https://github.com/BolunDai0216/fr3_ros;ROS package for Franka Research 3 robot.;no_research;C++ +https://github.com/BolunDai0216/FrankaArmROS;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/FrankaPandaPyBullet;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/GazeboSetupTutorial;;no_research;CMake +https://github.com/BolunDai0216/jekyll;;no_research;HTML +https://github.com/BolunDai0216/ManipulationIsaacsBenchmark;Manipulation Isaacs Benchmark (MIB) is a set of IsaacSim-based simulation environments for benchmarking learning-based robot manipultation algorithms.;no_research;Python +https://github.com/BolunDai0216/MatPlotSet;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/MinigridBaseline;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/MinigridMiniworldTransfer;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/MinigridRecordData;;no_research;Python +https://github.com/BolunDai0216/MiniworldRecordData;;no_research;Python +https://github.com/BolunDai0216/MoveItFR3Py;;no_research;Python +https://github.com/BolunDai0216/NYU21SummerSchoolML;;no_research;Jupyter Notebook +https://github.com/BolunDai0216/OptimizationNotes;A collection of notes on numerical optimization.;no_research;Python +https://github.com/BolunDai0216/PaperNotes;This repo contains notes of papers that are related to my research.;no_research; +https://github.com/BolunDai0216/ppo_torch;;research;Python +https://github.com/BolunDai0216/PyMuJoCoBase;;no_research;Python +https://github.com/bs538/CodeCorner_Cython;Optimizing numerical Python code using Cython;no_research;HTML +https://github.com/bs538/DataDive_SentinelBrownfields;Exploratory analysis during/after Urban Analytics Data Dive: Identifying sites for the construction of new homes from satellite data;no_research;Jupyter Notebook +https://github.com/bs538/NumericalPythonIoA;Speeding up numerical Python using Cython, numba, multiprocessing, etc.;no_research;HTML +https://github.com/bs538/PlanetImage;Basic utilities for exploratory data analysis with PlanetLabs satellite images;research;Jupyter Notebook +https://github.com/BurakDmb/2D-Video-Game-Implementation;A 2D video game implementation in OpenGL for my class assignment Bil421-Computer Graphics ;no_research;C++ +https://github.com/BurakDmb/DersProgrami;;no_research;Java +https://github.com/BurakDmb/DifferentiableSearchIndexAndRetrieval;;research;Python +https://github.com/BurakDmb/DifferentialDrivePathTracking;A simple goal-to-goal PID controller to control a Differential Drive Robot using Python;no_research;Python +https://github.com/BurakDmb/EtuDers;EtuDers- Timetable creator for students in TOBB ETU - Ankara/Turkey. Made with Python Flask web framework.;no_research;HTML +https://github.com/BurakDmb/EtuDersAndroid;EtuDers mobil uygulamasının kaynak kodları;no_research;Java +https://github.com/BurakDmb/FreeWiki;Alternative for reaching to wikipedia in blocked countries.;no_research;PHP +https://github.com/BurakDmb/HTTP-Basic-Device-Simulator;A simple physical sensor device simulator with using HTTP.;no_research;Python +https://github.com/BurakDmb/Impact-of-Limiting-Hop-Count-on-the-Lifetime-of-Wireless-Sensor-Networks;Impact of Limiting Hop Count on the Lifetime of Wireless Sensor Networks;no_research;Matlab +https://github.com/BurakDmb/informed_rrt_star;;no_research;Python +https://github.com/BurakDmb/Interpreter-Implementation-Using-Lex-And-Yacc;WIP-Not Finished-My interpreter implementation homework for Programming Languages Homework, used lex and yacc for implementation;no_research;C +https://github.com/BurakDmb/LeastSlackTimeSchedulerImplementation;A basic least-slack-time scheduler implementation in c for time shared systems.;no_research;C +https://github.com/BurakDmb/LogisticRegression-MiniBatchGradientDescent-Implementation;A simple mini-batch gradient descent implementation for logistic regression used in my machine learning course homework.;no_research;Python +https://github.com/BurakDmb/Mensa-JIAC;This is an example project to get started with the JIAC(Java-Based Intelligent Agent Componentware), which is a framework for developing multi-agent systems(MAS) and services.;no_research;Java +https://github.com/BurakDmb/MERN-EasyBoilerplate;Easy Boilerplate For Deployment To Heroku, Using MERN Stack.;no_research;JavaScript +https://github.com/BurakDmb/MoleculeNet-OutPerforming-Default-Results;In this project, we are proposing some methods to out-perform the given results in moleculenet.ai;no_research;Jupyter Notebook +https://github.com/BurakDmb/mpc_example;;research;Python +https://github.com/BurakDmb/MQTT-Basic-Device-Simulator;A simple physical sensor device simulator with using MQTT communication protocol.;no_research;Python +https://github.com/BurakDmb/myDemoApp;A java spark web project which uses CI(travisCI), CD(Heroku) for my BIL481-Software Engineering Assignment.;no_research;Java +https://github.com/BurakDmb/OscarDifferentLanguageDetector;;no_research;Python +https://github.com/BurakDmb/pomdp_tmaze_baselines;Algorithms For Partially Observable T Maze Environments (With Stable Baselines 3);no_research;Python +https://github.com/BurakDmb/quadsim;QuadSim: A Quadcopter Rotational Dynamics Simulation For Reinforcement Learning Algorithms;research;Python +https://github.com/BurakDmb/RelayRacingRobots;A repository for our senior project: Relay-Racing Robots using global camera-based robot localization.;no_research;Python +https://github.com/BurakDmb/RouteFinding-A-Star-Algorithm-Implementation;;no_research;Python +https://github.com/BurakDmb/visual_pomdp_smm;;no_research;Python +https://github.com/BurakDmb/WebSocket-Basic-Device-Simulator;A simple physical sensor device simulator with using WebSocket communication protocol.;no_research;Python +https://github.com/Butanium/advent-of-code-2020;;no_research;Python +https://github.com/Butanium/aoc-2021;;no_research;OCaml +https://github.com/Butanium/Butanium;;no_research; +https://github.com/Butanium/Clash-of-bits;A multiplayer CodinGame contribution inspired by Gladiabots;no_research;Java +https://github.com/Butanium/coders-strike-back;;no_research;Python +https://github.com/Butanium/coinrun-patchs;;no_research;Jupyter Notebook +https://github.com/Butanium/connect4-ocaml-CG-Challenge;;no_research;OCaml +https://github.com/Butanium/dm-prog-2;;no_research;C++ +https://github.com/Butanium/fall-challenge-2020_Ocaml;CodinGame fall challenge 2020 with Ocaml;no_research;OCaml +https://github.com/Butanium/Genetic_algorithm_for_TSP_python;Solving the TSP with genetic algorithm on python ;no_research;Python +https://github.com/Butanium/ImageOfCLife;;no_research;C +https://github.com/Butanium/Image_of_life;an implementation of game of life on images;no_research;Python +https://github.com/Butanium/ML4G-2022;Notebooks used during the ML4G camp;no_research;Jupyter Notebook +https://github.com/Butanium/monte-carlo-tree-search-TSP;Monte Carlo tree search for the travelling salesman problem (MCTS for the TSP);research;OCaml +https://github.com/Butanium/nano-gooooooo;;no_research;OCaml +https://github.com/Butanium/Platinium_rift_2;Platinium rift challenge in ocaml ;no_research;OCaml +https://github.com/Butanium/playground-hrzufb1x;Tech.io playground;no_research; +https://github.com/Butanium/Playground_beginner-COB;Tech.io playground;no_research; +https://github.com/Butanium/projet-interp-lua;;no_research;C +https://github.com/Butanium/projet-langage-formel;;no_research;Yacc +https://github.com/Butanium/Real-Time-SParadox;A game written in Scala as part of our curriculum at the ENS;no_research;Scala +https://github.com/Butanium/Salesman-Wars;A multiplayer codingame prototype;no_research;HTML +https://github.com/Butanium/spring-challenge-2021-ocaml;;no_research;OCaml +https://github.com/Butanium/spring-challenge-2022;;no_research;Python +https://github.com/Butanium/volcanoes;An implementation for the WIP volcanoes contribution on Codingame;no_research;OCaml +https://github.com/Butanium/War-of-colonies;I'm trying to implement genetic algorithm with the conway's game of life;no_research; +https://github.com/Butanium/XelOR-implementation;An implementation of the XelOR algorithm;no_research;OCaml +https://github.com/Butanium/yaalp;;no_research;Rust +https://github.com/camillebelmin/achieving-universal-energy-access;"Companion repository for the paper: Belmin et al. ""Achieving universal energy access while reducing energy demand? Evidence from energy-specific population projections""";research;TeX +https://github.com/carlschleussner/pdf_processing;;no_research;Jupyter Notebook +https://github.com/caviddhen/bowheads;scripts for processing of bowhead habitat analysis;research;R +https://github.com/caviddhen/ggcmi2agmip;;research;R +https://github.com/caviddhen/ICPscripts;;no_research;R +https://github.com/caviddhen/MagpieNCGains;R Library that converts MAgPIE generated nc files into GAINS resolution;research;R +https://github.com/caviddhen/MarkupsChen;Calculation and analysis of consumer food price markups ;research;R +https://github.com/caviddhen/mymadrat;;no_research;HTML +https://github.com/caviddhen/risk-uncertainty;;no_research;Python +https://github.com/cchrisgong/aip_rockstar;Code for the paper on analyzing large-scale N-body dark matter simulation, finding halo pairs and their satellite galaxies, and identifying the origin of the distribution of the latter https://academic.oup.com/mnras/article-abstract/488/3/3100/5531334;research;Python +https://github.com/cchrisgong/dieter-coupling-remind;;research;GAMS +https://github.com/cchrisgong/himmel_map;;no_research;HTML +https://github.com/cchrisgong/kuramoto_no_cluster;"Code for Chaos paper "" Repulsively coupled Kuramoto-Sakaguchi phase oscillators ensemble subject to common noise""";research;Python +https://github.com/cchrisgong/network_Francisco;Collaborating with Francisco on network property with machine learning;no_research;Python +https://github.com/cchrisgong/remind-coupling-dieter;;research;GAMS +https://github.com/cchrisgong/sRNA_plasmid;Code for the project of simulating hok/sok plasmid maintenance genetic circuit;no_research;Python +https://github.com/christophbertram/covid-power-sector;;research;R +https://github.com/christopher-hesse/computer-tennis;Pong-like reinforcement learning environment;research;Python +https://github.com/christopher-hesse/dockertest;Base docker image for testing;no_research;Dockerfile +https://github.com/christopher-hesse/example-gridworld;Example reinforcement learning gridworld;no_research;Python +https://github.com/christopher-hesse/jrfl;TRFL for JAX;no_research;Python +https://github.com/christopher-hesse/libenv;C API for reinforcement learning environments;no_research;Python +https://github.com/christopher-hesse/mac-virtual-camera;Simple Virtual Camera for Mac;no_research;Python +https://github.com/christopher-hesse/moderngl-issue;;no_research;C +https://github.com/christopher-hesse/netenv;OpenAI Gym Environment interface (VecEnv), but over a socket;no_research;Python +https://github.com/christopher-hesse/pyifail;;no_research;Python +https://github.com/christopher-hesse/tenet;Automatic differentiation prototype in Zig;no_research;Zig +https://github.com/christopher-hesse/tinycraft;Toy 3D voxel reinforcement learning environment;no_research;C +https://github.com/christopherhesse/app-engine-bugs;Google App Engine bugs that I have encountered;no_research;Go +https://github.com/christopherhesse/asteroids;Asteroids Game Experiment;no_research;C +https://github.com/christopherhesse/delaunay-experiment;Generate delaunay triangulations from random points, also does some diffuse shading;no_research;JavaScript +https://github.com/christopherhesse/difficult;GitHub Chrome Extension;no_research;JavaScript +https://github.com/christopherhesse/disgusting-appengine-context-hack;"Use an ""appengine"" Context instead of a ""google.golang.org/appengine"" Context with the gcloud library";no_research;Go +https://github.com/christopherhesse/gevent-pypy-experimental;;no_research;C +https://github.com/christopherhesse/go-opencl-experiment;An experiment with image filtering using go and OpenCL;no_research;Go +https://github.com/christopherhesse/go-present-appengine-example;;no_research;Go +https://github.com/christopherhesse/go-socks-proxy-example;Example of a SOCKSv4 proxy written in Go;no_research;Go +https://github.com/christopherhesse/html5audio-fft-demo;Experiment with HTML5 audio's FFT;no_research;JavaScript +https://github.com/christopherhesse/imageio-sigsegv;;no_research;Python +https://github.com/christopherhesse/osx-miniwebkit;Minimalist WebView-based Mac OS X App;no_research;Objective-C +https://github.com/christopherhesse/puzzle.js;;no_research;JavaScript +https://github.com/christopherhesse/python-longpoll-example;A way to do simple (limited number of messages) longpolling in Python using memcache;no_research;Python +https://github.com/christopherhesse/raster;;no_research;Go +https://github.com/christopherhesse/rethinkgo;OBSOLETE Go language driver for RethinkDB ;no_research;Go +https://github.com/christopherhesse/todomvc-gopherjs-im;TodoMVC GopherJS Immediate Mode;no_research;Go +https://github.com/christopherhesse/ttt-ios;Basic Tic Tac Toe app for iOS;no_research;Objective-C +https://github.com/christopherhesse/ttt-web;Basic Tic Tac Toe in javascript;no_research;JavaScript +https://github.com/chroetz/ComicPanelR;;no_research;R +https://github.com/chroetz/ConfigOpts;;no_research;R +https://github.com/chroetz/DEEBdata;;no_research;R +https://github.com/chroetz/DEEBesti;;no_research;R +https://github.com/chroetz/DEEBeval;;no_research;R +https://github.com/chroetz/DEEBextras;;no_research;R +https://github.com/chroetz/DEEBpath;;no_research;R +https://github.com/chroetz/DEEBplots;;no_research;R +https://github.com/chroetz/DEEBtrajs;;no_research;R +https://github.com/chroetz/DEEButil;;no_research;C++ +https://github.com/chroetz/EbmAggregateData;;no_research;R +https://github.com/chroetz/EbmMaskFromShape;;no_research;R +https://github.com/chroetz/EbmPanelData;;no_research;R +https://github.com/chroetz/GPSD23slides;;no_research; +https://github.com/chroetz/PaperQuadRate19;;research;TeX +https://github.com/chroetz/PaperStrong22;;research;TeX +https://github.com/chroetz/poisrrr;Poission reduced-rank models in R;research;R +https://github.com/chroetz/spheregr;;research;R +https://github.com/chroetz/TdaCpdSim;R package for simulations to evaluate change point detection via topological data analysis;research;R +https://github.com/chroetz/WhenMeasureChaos;;research;R +https://github.com/chroetz/WhenMeasureChaosR;;no_research;R +https://github.com/CorneliaAuerPIK/TestThat;;no_research; +https://github.com/CppMaster/Diet-Calculator;;no_research;Java +https://github.com/CppMaster/GestureRecognition;;no_research;C# +https://github.com/CppMaster/NeuralNetworkTest;;no_research;C# +https://github.com/CppMaster/openai-gym-playground;;no_research;Python +https://github.com/CppMaster/SC2-AI;;research;Python +https://github.com/CppMaster/SemiPlatformer;;no_research;C# +https://github.com/CppMaster/SrabbleLabirynth;;no_research;C# +https://github.com/CppMaster/TicTacToeRL;;no_research; +https://github.com/CppMaster/unnamedRTS;;no_research;C# +https://github.com/cyl628/basic-supervised-ner;;no_research;Python +https://github.com/cyl628/hello-world;;no_research;HTML +https://github.com/cyl628/mydfs;;no_research;Python +https://github.com/cyl628/prompt-typing;;research;Python +https://github.com/cyprienc/binary-Huffman-algorithm;Generate the binary coding of a given set of 'letters' with their respective probability.;research; +https://github.com/cyprienc/padlock-env;A simple gymnasium environment where the agent must find the correct combination of symbols to unlock a 4-discs padlock.;no_research;Python +https://github.com/cyprienc/rl-nanodegree;This repository contains most of my projects submissions and exercises answers for the Deep Reinforcement Learning Nanodegree Program.;no_research;Jupyter Notebook +https://github.com/cyprienc/web-traffic-time-series-forecasting;Simple exploration of Kaggle competition https://www.kaggle.com/c/web-traffic-time-series-forecasting/overview;no_research; +https://github.com/d3sm0/a3c;;no_research;Python +https://github.com/d3sm0/adfraud;;no_research;Jupyter Notebook +https://github.com/d3sm0/ae_jam;A jam of autoencoder written in TF;no_research;Python +https://github.com/d3sm0/c51;;no_research;Python +https://github.com/d3sm0/dantebot;;research;Python +https://github.com/d3sm0/deep_vs_shallow;Review of Deep vs Shallow (Hrushikesh Mhaskar & Tomaso Poggio) for the ML final a.a. 2017;no_research;Jupyter Notebook +https://github.com/d3sm0/dyn_walk;;no_research;Python +https://github.com/d3sm0/gym-vdp;Van Der Pol Oscillator for RL;research;Python +https://github.com/d3sm0/gym_pomdp;Gym-like extensions for POMDP;no_research;Python +https://github.com/d3sm0/hello_world;;no_research;Shell +https://github.com/d3sm0/hm_2_stat_learn;;no_research; +https://github.com/d3sm0/impala;;no_research;Python +https://github.com/d3sm0/mac_config;Config for zsh, vimrc;no_research;Shell +https://github.com/d3sm0/mapper;;no_research;Python +https://github.com/d3sm0/mixgauss;MCMC for Gaussian MIxture model with Pivot Relabeling algorithm;no_research;TeX +https://github.com/d3sm0/mlcc_lab;Code from Machine Learning Crash Course 2017;no_research;HTML +https://github.com/d3sm0/music_classification;;no_research; +https://github.com/d3sm0/ntsa;Neural Time Series Analysis;no_research;Jupyter Notebook +https://github.com/d3sm0/oja;;no_research;Jupyter Notebook +https://github.com/d3sm0/orion-tutorial;;no_research;Shell +https://github.com/d3sm0/RLego;A collection of building blocks for the Reinforcement Learning problem;no_research;Python +https://github.com/d3sm0/rrk4;rust meet rk4;no_research;Python +https://github.com/d3sm0/skgd;;no_research;Python +https://github.com/d3sm0/slides;A collection of all my slides;no_research;JavaScript +https://github.com/d3sm0/slurm-tools;wip;no_research;Python +https://github.com/d3sm0/spidey;;no_research; +https://github.com/d3sm0/svg;Implementation of stochastic value gradients;research;Python +https://github.com/d3sm0/torch_dqn;School of AI;no_research;Jupyter Notebook +https://github.com/d3sm0/torch_forecast;;no_research;Python +https://github.com/d3sm0/workshop_ai;;no_research; +https://github.com/d3sm0/z3l0;;no_research;JavaScript +https://github.com/d3sm0/zelo;(Alpha) From Zero to Elo;no_research; +https://github.com/danielhuppmann/binary_equilibrium;Illustrative examples of a multi-objective program subject to a binary quasi-equilibrium;research;Assembly +https://github.com/danielhuppmann/climate-risks-academy-2021;Advanced assignment for the EUI-FBF-OW Climate Risks Academy 2021;research;Jupyter Notebook +https://github.com/danielhuppmann/danielhuppmann;Profile repo;no_research; +https://github.com/danielhuppmann/ENGAGE-pyam-tutorial;Tutorial notebook of the pyam package;no_research;Jupyter Notebook +https://github.com/danielhuppmann/IAMCdata_tutorial;Quick visualization of ;no_research;Jupyter Notebook +https://github.com/danielhuppmann/iea-netzero2050-datawrangler;Transform data supporting the IEA Netzero2050 Roadmap (2021) to the IAMC format;research;Jupyter Notebook +https://github.com/danielhuppmann/latex_stub;A LaTeX stub project;no_research;TeX +https://github.com/danielhuppmann/lecture-fall-2020;Live demo lecture for SIM3IL, 2020;no_research;Python +https://github.com/danielhuppmann/lecture-spring-2021;Live demo for OSESM lecture at TU Wien, spring 2021;no_research;Python +https://github.com/danielhuppmann/lecture-spring-2022;Live demo for course Open-Source Energy System Modelling, spring 2022;no_research;Python +https://github.com/danielhuppmann/lecture-spring-2023;Live demo for open-source energy systems modeling course;no_research;Python +https://github.com/danielhuppmann/lecture_live_demo_2019;This is a live demo for the lecture;no_research;Python +https://github.com/danielhuppmann/lecture_spring_2020;Illustrative repo for teaching at TU Wien;no_research;Python +https://github.com/danielhuppmann/strommarkttreffen-pyam;Live demo of the pyam package at the Strommarkttreffen-Online seminar (July 14 2021);no_research;Jupyter Notebook +https://github.com/danielhuppmann/trial_lecture_spring_2019;;no_research;Python +https://github.com/david-lindner/ai-safety-debate;Implementing 'AI Safety via Debate' experiments;research;Python +https://github.com/david-lindner/dotfiles;;no_research;Vim script +https://github.com/david-lindner/E-Rank_climatefintech;Prize winning solution in the Climate FinTech Hackathon Zürich, Nov 17-18, 2017 (open-challenge category-winner and overall event-winner).;no_research;Jupyter Notebook +https://github.com/david-lindner/idrl;"Code accompanying the paper ""Information Directed Reward Learning for Reinforcement Learning"" (NeurIPS 2021).";research;Python +https://github.com/david-lindner/predict-covid19;;no_research;JavaScript +https://github.com/david-lindner/safe-grid-gym;A gym interface for AI safety gridworlds created in pycolab.;research;Python +https://github.com/david-lindner/single-peaked-bandits;"Code accompanying ""Addressing the Long-term Impact of ML-based Decisions via Policy Regret"", IJCAI 2021. ";research;Python +https://github.com/david-lindner/status_bar;Python script that I use to display a very basic status bar using the xfce4-genmon-plugin;no_research;Python +https://github.com/DavidhoPIK/HeatConductionWithPhaseChangeSimulation;Matlab code for simulating heat conduction in a phase change material;no_research;MATLAB +https://github.com/DavidhoPIK/landusetoolboxexploration;;no_research; +https://github.com/DBALICKI/gym-dimensional-doors;;no_research;Python +https://github.com/dbantje/internalization;;research;Jupyter Notebook +https://github.com/deleip/empirical_analysis_of_cascading_effects;"Code to internship report ""Empirical Analysis of Cascading Effects using CCM""";research;R +https://github.com/deleip/FoodSecurityWestAfrica;A stochastic optimization modelling framework to analyze food security in West Africa;no_research;Python +https://github.com/deleip/ksd;filling data gaps;no_research;GAMS +https://github.com/dengemann/aws-hacks;my aws computational hacks ;no_research;Python +https://github.com/dengemann/eeg-pred-modeling-summer-school;Code to generate intermediate outputs for the EEG course at the IDESSAI 2021 summer school;no_research;Jupyter Notebook +https://github.com/dengemann/gat;Open source tools to facilitate Generalization Across Time analyses. Requires MNE-python;no_research;Python +https://github.com/dengemann/juelich-meg-utils;MEG utilities in Python;no_research; +https://github.com/dengemann/make-mne-hcp-testing-data;Some code to generate MNE-HCP testing data;no_research;Jupyter Notebook +https://github.com/dengemann/meeg-preprocessing;Preprocessing tools for MEG/EEG;research;Python +https://github.com/dengemann/meg-mri-surrogate-biomarkers-aging-2020;library and scripts for data analysis and visualization for Engemann at et al. 2020;no_research;Python +https://github.com/dengemann/meg_perceptual_decision_symbols;processing pipeline of an MEG experiment ran at neurospin.;no_research;Python +https://github.com/dengemann/mne-4-D-sample-data; mne-python BTI /4-D Neuroimaging MEG sample data ;no_research; +https://github.com/dengemann/mne-python-intro;Basic introduction to MNE Python processing;no_research;Python +https://github.com/dengemann/paper-multimodal-stacking-figures;Figure repo for Engemann et al 2019 multimodal stacing paper.;research;R +https://github.com/dengemann/PRNI2016;;no_research;Python +https://github.com/devcurmudgeon/aboriginal;Snapshot of Aboriginal Linux with history from http://landley.net/hg/aboriginal;no_research;Shell +https://github.com/devcurmudgeon/alo;A Looper plugin for MOD duo;no_research;C +https://github.com/devcurmudgeon/bonnie;;no_research;C +https://github.com/devcurmudgeon/bonnie-64;Automatically exported from code.google.com/p/bonnie-64;no_research;C +https://github.com/devcurmudgeon/build-logs;;no_research; +https://github.com/devcurmudgeon/cida;;research;Python +https://github.com/devcurmudgeon/compare-manifests;;no_research; +https://github.com/devcurmudgeon/ControlSim;SDLC 3.0 experimental sim in JavaScript;no_research;JavaScript +https://github.com/devcurmudgeon/create-dirs;;no_research;Shell +https://github.com/devcurmudgeon/dc-pelican;;no_research;CSS +https://github.com/devcurmudgeon/definitions;;no_research;Python +https://github.com/devcurmudgeon/fhs-dirs;;no_research;Shell +https://github.com/devcurmudgeon/foo;;no_research;Perl +https://github.com/devcurmudgeon/genext2fs;;no_research;C +https://github.com/devcurmudgeon/ideal-palm-tree;;no_research; +https://github.com/devcurmudgeon/ivi-architecture;Experimental reproduction of GENIVI Architecture diagram in PlantUML;no_research; +https://github.com/devcurmudgeon/lilv;;no_research; +https://github.com/devcurmudgeon/Lima-driver-website;;no_research; +https://github.com/devcurmudgeon/motionator;;no_research;Swift +https://github.com/devcurmudgeon/pid;SDLC 3.0 experimental sim ;no_research;Ruby +https://github.com/devcurmudgeon/poky;;no_research;Python +https://github.com/devcurmudgeon/rust-ybd;Some sketches;no_research;Rust +https://github.com/devcurmudgeon/software_commandments;;no_research; +https://github.com/devcurmudgeon/spec;Proposal for Baserock definitions format specification repo;no_research;Python +https://github.com/devcurmudgeon/swem;software engineering model;no_research;JavaScript +https://github.com/devcurmudgeon/trusd;;no_research; +https://github.com/devcurmudgeon/vanilladefs;;no_research;Perl +https://github.com/devcurmudgeon/vs;;no_research; +https://github.com/devcurmudgeon/wheezy-certs;;no_research; +https://github.com/devcurmudgeon/ybd;yaml build deploy;no_research;Python +https://github.com/dfilan/2022-alignment-resource-survey;;no_research;Python +https://github.com/dfilan/adventofcode-2015;this challenge, as it was in December 2015: http://adventofcode.com/;no_research;Haskell +https://github.com/dfilan/ahriLec7Notes;Notes for lecture 7 of AHRI course;no_research;TeX +https://github.com/dfilan/analyze_manifold_accuracy;;no_research;Python +https://github.com/dfilan/cfr_kuhn_poker;Using counterfactual regret minimization to compute optimal strategies for Kuhn Poker;no_research;Rust +https://github.com/dfilan/cfr_rps;"Using regret matching to compute optimal strategies for the game ""Rock, Paper, Scissors""";no_research;Rust +https://github.com/dfilan/clusterability_in_neural_networks;;research;Jupyter Notebook +https://github.com/dfilan/daniels_tiny_reversi_bot;A little reversi bot;no_research;Haskell +https://github.com/dfilan/datasciencecoursera;;no_research; +https://github.com/dfilan/emacsperator;A .vimperatorrc file that makes vimperator act like emacs;no_research; +https://github.com/dfilan/interpreter_project;Writing an interpreter for a simple programming language in Haskell.;no_research;Haskell +https://github.com/dfilan/metaculus_dow_jones;My sketchy attempt to estimate the empirical frequency of the dow swinging down some ratio before it swings up some ratio.;no_research;Haskell +https://github.com/dfilan/my_language;;no_research;Haskell +https://github.com/dfilan/optimal_cake_riddler;Solution to 538's 'The Riddler' puzzle of August 26, 2016;no_research;TeX +https://github.com/drueke/test_repo;for testing CLA and similar;no_research; +https://github.com/e-zolotarevskaya/Ancillary_services_SP;;no_research;Jupyter Notebook +https://github.com/elliottower/abstraction;This repo provides a scalable way of investigating the layer-by-layer evolution of abstraction in deep neural networks.;research;Python +https://github.com/elliottower/cathedral-rl;Interactive Multi-Agent Reinforcement Learning Environment for the board game Cathedral using PettingZoo;no_research;Python +https://github.com/elliottower/CTF;;no_research;Python +https://github.com/elliottower/elliottower;;no_research; +https://github.com/elliottower/gobblet-rl;Interactive Multi-Agent Reinforcement Learning Environment for the board game Gobblet using PettingZoo.;no_research;Python +https://github.com/elliottower/ProtoQA_Macaw;Baseline of Allenai's Macaw model for use with ProtoQA dataset;research;Python +https://github.com/elliottower/SentimentAnalysis;;no_research;R +https://github.com/elliottower/ValleyBikeProject;;no_research;Python +https://github.com/emolinab/HU-ENROLLMENT;;no_research; +https://github.com/emolinab/ISIMIP3bRead;Funcitons to read IMAGE, GLOBIOM, and MAgPIE's raw data sets;no_research;R +https://github.com/emolinab/mrISIMIP;Routines to compare ISIMIP data;no_research;R +https://github.com/emolinab/PlotsPaper;Plotting scripts for Inertia Paper;research;R +https://github.com/emolinab/PlottingScripts;Scripts to plot results. Inertia paper;research;R +https://github.com/enosair/bentkus_conf_seq;;research;Jupyter Notebook +https://github.com/enosair/federated-fdp;;research;Python +https://github.com/enosair/gdp-edgeworth;;research;Jupyter Notebook +https://github.com/enosair/lightcurve-download;Download and process fits data;research;Shell +https://github.com/enosair/tensor-subspace-norm;;research;Matlab +https://github.com/ernestum/AirshipSimulator;Simulates the rigid structure of my personal airship design.;no_research;Java +https://github.com/ernestum/Algebra-Spicker;;no_research; +https://github.com/ernestum/Arduino-Lucid-Dreaming-Mask;An arduino sketch to control a simple Lucid Dreaming Mask with a CNY70 distance sensor and a LED;no_research;Arduino +https://github.com/ernestum/BrummaFirmware;;no_research;C++ +https://github.com/ernestum/CampusLocator;;no_research;Python +https://github.com/ernestum/clestus;;research;JavaScript +https://github.com/ernestum/data-samples-printer;Don't be just mean and standard, print histograms as unicode instead!;research;Python +https://github.com/ernestum/forrotune;A small shell utility to play a random forro tune. As opposed to tell a fortune;no_research;Python +https://github.com/ernestum/GeodesicSphere;A bunch of helper functions that help to design and visualize geodesic spheres and domes of arbitrary frequency in OpenSCAD;research;OpenSCAD +https://github.com/ernestum/HansGuckInDieLuft;A team-project to create a ROS extension for visual odometry and localisation;no_research; +https://github.com/ernestum/MidiKeyboardFirmware;Firmware for a Midi Keyboard I built using my 3D Printer and a Teensy 3.2;no_research;Arduino +https://github.com/ernestum/NaviBeltApp;;no_research;Java +https://github.com/ernestum/PolyPractice;A simple tool to practice polyrhythms;no_research;JavaScript +https://github.com/ernestum/PotentialsDemo;;no_research;Processing +https://github.com/ernestum/PSpaceExplorer;;no_research;Java +https://github.com/ernestum/PyMidi2Key;A simple tool to convert midi events to key presses;no_research;Python +https://github.com/ernestum/QuadrotorEnvironment;OpenAI Gym Environment for Quadrotors;no_research;Python +https://github.com/ernestum/Thingspeak-GSM-Datalogger-for-Arduino;A Thingspeak datalogger for the Arduino GSM shield without the official (non working) GSM library;no_research;C++ +https://github.com/ernestum/TingleDongleServer;An ESP32 Web GUI for a bunch of vibration motors on shift registers.;no_research;C++ +https://github.com/ernestum/UltimakerAsBraider;Some scripts to drive a modified Ultimaker 3D Printer as a braiding machine;no_research;Python +https://github.com/ernestum/UT390B_Arduino_Library;An Arduino library to interface with the cheap UT390B Laser Distance Meter;no_research;C++ +https://github.com/ernestum/VSync;Library to synchronize variables between Arduinos and Processing sketches.;no_research;C++ +https://github.com/etzinis/activelearning;Active Learning for Emotionally Salient Utterances and Segments using Text & Audio;no_research;Python +https://github.com/etzinis/biased_separation;Code for the paper: Unified Gradient Reweighting for Model Biasing with Applications to Source Separation;no_research;Python +https://github.com/etzinis/bootstrapped_mds;Bootstrapped MDS: A Coordinate Search Algorithm for Multidimensional Scaling which optimizes Stress by evaluating the function multiple times over different coordinates but also bootstraping over previous successful iterations. With this algorithm there is a probability of evaluating the function alongside a coordinate step depending on the previous successful evaluations across this coordinate.;no_research;Jupyter Notebook +https://github.com/etzinis/comp_vision_ntua;Labs exercises in NTUA (2016-2017) for the Computer Vision course 8th semester Contributors: Efthymios Tzinis Konstantinos Kallas;no_research;Matlab +https://github.com/etzinis/fedenhance;Code for the paper: Separate but togerher: Unsupervised Federated Learning for Speech Enhancement from non-iid data;research;Jupyter Notebook +https://github.com/etzinis/gpus_utilization;Check the GPUs status on multiple servers;no_research;Python +https://github.com/etzinis/heterogeneous_separation;Code and data recipes for the paper: Heterogeneous Target Speech Separation;research;Python +https://github.com/etzinis/lathesis;Latex Code of thesis tools for manipulation ;no_research;Python +https://github.com/etzinis/micro_lab_ntua;Labs exercises in NTUA (2015-2016) for the course Microprocessors 7th semester. Contributors: Efthymios Tzinis, Anastasis Stathopoulos, Rafail Skoulos;no_research;Assembly +https://github.com/etzinis/neural_dEMOmpose;Convolutional Neural Decomposition for End2End Speech Emotion Recognition ;no_research;Python +https://github.com/etzinis/nldrp;Non linear dynamics for emotion classification;research;Python +https://github.com/etzinis/nldr_visual_recognition;Evaluating Nonlinear dimensional reduction algorithms for finding low dimensional manifold representations of input data, trying to infer labels of unlabelled data points of the manifold as well as visualizing 2D manifolds for qualitative analysis of the input data ;no_research;Jupyter Notebook +https://github.com/etzinis/nns_ntua;Labs exercises in NTUA (2016-2017) for Neural Networks course 9th semester Contributors: Efthymios Tzinis Konstantinos Kallas;no_research;M +https://github.com/etzinis/optimal_condition_training;Code and data recipes for the paper: Optimal Condition Training for Target Source Separation by Efthymios Tzinis, Gordon Wichern, Paris Smaragdis and Jonathan Le Roux ;research;Python +https://github.com/etzinis/os_lab_ntua;Labs exercises in NTUA (2016-2017) for Operating Systems Laboratory course 8th semester. Contributors: Efthymios Tzinis & Kostantinos Kallas ;no_research;Assembly +https://github.com/etzinis/pat_rec_ntua;Labs exercises in NTUA (2016-2017) for the Pattern Recognition course 9th semester Contributors: Efthymios Tzinis Konstantinos Kallas;no_research;Matlab +https://github.com/etzinis/pl_1;My exercises in NTUA (2015-2016) for the course Programming Languages 6th semester (C,Java,ML,Prolog);no_research;Standard ML +https://github.com/etzinis/polymorphisms_statistic_analysis;Code for my contribution in a medicine related project/paper with faculty form Kapodistrian University of Athens. ;research;Jupyter Notebook +https://github.com/etzinis/speech_nlp_labs;Labs exercises in NTUA (2015-2016) for the course Speech and Natural Language Processing 7th semester;no_research;Python +https://github.com/etzinis/sudo_rm_rf;Code for SuDoRm-Rf networks for efficient audio source separation. SuDoRm-Rf stands for SUccessive DOwnsampling and Resampling of Multi-Resolution Features which enables a more efficient way of separating sources from mixtures.;research;Jupyter Notebook +https://github.com/etzinis/TA_tools;Various teaching assistant's (TA) tools for automating processes with grading, assigning students, etc.;no_research; +https://github.com/etzinis/toefl_speaking;A simple prompt/recorder preparation tool for questions 1&2 in TOEFL examination (speaking section);no_research;Python +https://github.com/etzinis/two_step_mask_learning;A two step optimization for sound source separation on the adaptive front-end domain;no_research;Python +https://github.com/etzinis/unsupervised_spatial_dc;"Code for the paper: ""Unsupervised Deep Clustering for Source Separation: Direct Learning from Mixtures using Spatial Information""";research;Python +https://github.com/etzinis/unsup_speech_enh_adaptation;Unsupervised domain adaptation for conversational speech enhancement using RemixIT;research;Jupyter Notebook +https://github.com/FelicitasBeier/ABM_ClimateAction;Climate Action ABM model;no_research;NetLogo +https://github.com/FelicitasBeier/IrrigationPotentials;"This repository contains the outputs to the article Beier et al. (2022) ""Economically Efficient and Environmentally Sustainable Irrigation Potentials: a spatially explicit global assessment""";research;HTML +https://github.com/FelicitasBeier/mrwater4SIMPLE-G;This repository provides the pipeline of preparing data provided by the mrwater hydro-economic irrigation water allocation algorithm to SIMPLE-G;research;R +https://github.com/FelicitasBeier/mrwaterPlots;;research;R +https://github.com/filipinascimento/bigscience;Big Science Project;research;Jupyter Notebook +https://github.com/filipinascimento/bl-conmat2network;Simple brainlife app to create a network from a conmat matrix.;no_research;Dockerfile +https://github.com/filipinascimento/bl-network-communities;App to obtain the community structure of networks by using the Louvain or Infomap methods. All the Louvain quality functions work for networks with negative weights.;research;Python +https://github.com/filipinascimento/bl-network-measurements;App to calculate several basic statistics for networks and their respective null model distributions.;research;Python +https://github.com/filipinascimento/bl-network-nullmodel;Generates an esemble of networks according to null models that try to reproduce the data. Erdos reyni (random), Barabási-Albert and Configuration model are implemented;research;Python +https://github.com/filipinascimento/bl-network-preprocess;App to preprocess connectivity/similarity matrices (conmat) and generate a filtered version of the network, which can be directed or undirected, weighted or unweighted.;research;Python +https://github.com/filipinascimento/bl-network-report;App to generate reports from networks. This includes network properties, node attributes and their respective distributions.;research;Python +https://github.com/filipinascimento/bl-network-template;Template app to build new network neuroscience apps for brainlife;no_research;Python +https://github.com/filipinascimento/bl-network-template-matlab;Example template for network analyses using matlab inside brainlife.;research;MATLAB +https://github.com/filipinascimento/bl-network-visualization;This app generates simple 2D static visualizations for networks by using a force-directed algorithm. The current implementation uses the Large Graph Layout (LGL) algorithm.;no_research;Python +https://github.com/filipinascimento/bl-timeseries2network;Calculates a similarity matrix (such as correlation, covariance, etc) from time series and convert it to a network datatype (JGFZ) so it can be used in the network pipeline.;research;Python +https://github.com/filipinascimento/CADREDemoPackages;;no_research;Python +https://github.com/filipinascimento/cgicmcprojects;Trabalhos CG ICMC;no_research; +https://github.com/filipinascimento/Complexity;Complexity Library;no_research;C +https://github.com/filipinascimento/CVAccessibility;Software to calculate the outwards accessibility measurement of nodes in complex networks. Check http://arxiv.org/abs/1101.5379v3 and http://arxiv.org/abs/0802.3665 .;no_research;C +https://github.com/filipinascimento/CVRandomWalks;Fast library to obtain sentences based on random walks from networks for use in word2vec and other embedding techniques. ;no_research;C +https://github.com/filipinascimento/CVSymmetry;Software to calculate the concentric symmetries of complex networks as described in http://arxiv.org/abs/1407.0224 ;no_research;C +https://github.com/filipinascimento/cxnetwork;Rewiring Code;no_research;C +https://github.com/filipinascimento/cxnetworks-docker;Network science docker image with basic libraries. Currently being used to run brainlife network science apps.;research;Dockerfile +https://github.com/filipinascimento/cxrandomwalk;;no_research;C +https://github.com/filipinascimento/dbgz;Small utility to read and write data from/to dbgz;no_research;Python +https://github.com/filipinascimento/fury-docker;Docker Image to run fury offscreen;no_research;Dockerfile +https://github.com/filipinascimento/helios-network;A web Assembly network representation for Helios-Web.;no_research;C +https://github.com/filipinascimento/helios-web;A web-based framework to visualize dynamic networks in real-time.;no_research;JavaScript +https://github.com/filipinascimento/jgf;This package implements export and import functions for the JSON Graph Format (gZipped) `JGF(Z)` (https://jsongraphformat.info). Supported input formats/libraries are `networkx`, `igraph`, `numpy` matrices and `JXNF` files. All network, node and edges attributes are saved as well.;no_research;Python +https://github.com/filipinascimento/MAGProcessing;;no_research;Python +https://github.com/filipinascimento/malleability;;research;C +https://github.com/filipinascimento/metabonet;Interactive visualization for metabolite networks. Under development.;research;JavaScript +https://github.com/filipinascimento/MINERVAVIZ;Visualizations of MINERVA projects;no_research;JavaScript +https://github.com/filipinascimento/openalex-raw;Tools to process OpenAlex raw snapshot files;research;Python +https://github.com/filipinascimento/openalexnet;OpenAlex Networks is a helper library to process and obtain data from the OpenAlex dataset via API. It also provides functionality to generate citation and coauthorship networks from queries.;research;Jupyter Notebook +https://github.com/filipinascimento/PACSExplorer;;no_research;JavaScript +https://github.com/filipinascimento/RModularity;Small utility to calculate the robustness modularity, information modularity and modularity difference.;research;Python +https://github.com/filipinascimento/teleconnectionsgranger;Notebook to find teleconnections in Anomalies in Precipitation and Temperature cross the globe using lagged correlation or Granger causality;research;Jupyter Notebook +https://github.com/filipinascimento/workshop-netviz;This repository contains the files and links to be used in the IUNI Workshop Hands-on : An Introduction to Network Visualization. https://iuni.iu.edu/news/event/79;no_research;Jupyter Notebook +https://github.com/filipinascimento/WOS;Simple WOS aggregator to process WOS JSON files;no_research;Python +https://github.com/filipinascimento/WOSRaw;Collection of utilities to process raw XML data from the Web of Science.;research;Python +https://github.com/filipinascimento/xnet;Small python package to read .xnet (compleX NETwork format) files used in my other scripts.;no_research;Python +https://github.com/flohump/scenTool;scenTool allows to explore and visualize modelling results;no_research;R +https://github.com/floringogianu/atari-agents;Code and links for over 25,000 trained Atari agents;research;Python +https://github.com/floringogianu/augment;An offline parallel data augmentation script for images based on PILlow;no_research;Python +https://github.com/floringogianu/categorical-dqn;A working implementation of the Categorical DQN (Distributional RL).;research;Python +https://github.com/floringogianu/erwin;;no_research;Jupyter Notebook +https://github.com/floringogianu/gym-classic;A collection of so far classic deterministic MDPs for testing RL algorithms.;no_research;Python +https://github.com/floringogianu/longshot;An attention agent, but for relation classification.;no_research;Python +https://github.com/floringogianu/neac;An Actor Critic with a DND-based Critic;no_research;Jupyter Notebook +https://github.com/floringogianu/neural-episodic-control;A work in progress implementation of the Neural Episodic Control;no_research;Python +https://github.com/floringogianu/paper-notebooks;A collection of notebooks aiding the understanding of machine-learning papers.;research;Jupyter Notebook +https://github.com/floringogianu/per-study;Prioritized Experience Replay study, including reproduction of the BlindCliffWalk experiments in the original paper www.arxiv.org/pdf/1511.05952.pdf;research;Jupyter Notebook +https://github.com/floringogianu/pytorch-sanity-check;A collection of models following pytorch examples for testing new machines.;no_research;Python +https://github.com/floringogianu/rl-logger;;no_research;Python +https://github.com/floringogianu/rl-module-labs;;no_research;Jupyter Notebook +https://github.com/floringogianu/rlog;Preconfigured python logging with some extra bells and whistles for RL;research;Python +https://github.com/floringogianu/schrodinger;An investigation into uncertainty estimates for deep neural networks.;research;Python +https://github.com/floringogianu/snrl;;no_research;Python +https://github.com/floringogianu/spotlight.js;;no_research;CSS +https://github.com/floringogianu/stn-presentation;;no_research;CSS +https://github.com/floringogianu/theodon;;no_research;Jupyter Notebook +https://github.com/floringogianu/theodon-toy;Modelling uncertainty in toy MDPs;no_research;Python +https://github.com/floringogianu/tufte-arsclassica;A tufte latex template with arsclassica inspired typography;no_research;TeX +https://github.com/floringogianu/wintermute;A small and pragmatic library for Reinforcement Learning primitives;research;Python +https://github.com/fmhansen/abacra;implementation of the agent-based amazonian cattle-ranching model;no_research;Python +https://github.com/ftl-traveller/alvin-intrusion-detection-system;An osquery data aggregator server that can act as an Intrusion Detection System;no_research;JavaScript +https://github.com/ftl-traveller/banking-system-prototype;Online Banking System Prototype;no_research; +https://github.com/ftl-traveller/barternow;;no_research;Java +https://github.com/ftl-traveller/data-warehouse-million-songs;;no_research;Python +https://github.com/ftl-traveller/lucene-solr-test-project;Testing Lucene and Solr ;no_research; +https://github.com/ftl-traveller/spark-streaming-pipeline-app;;no_research;Java +https://github.com/ftl-traveller/sunrun-test-project;Sunrun test project;no_research;JavaScript +https://github.com/ftl-traveller/trade-runner-ibkr;Automatic trading system for interactive brokers TWS API;no_research;Java +https://github.com/ftl-traveller/umbrella-corp;Umbrella Corp. ;no_research;Dockerfile +https://github.com/ftl-traveller/user-health-monitoring-covid19;Contact Tracing app for Covid19;no_research;Python +https://github.com/ftl-traveller/youtube-sentiment-analysis-opinion-mining;Opinion mining through Sentiment Analysis on YouTube video comments;research;Jupyter Notebook +https://github.com/g-leech/argmin-gravitas;My seriousface site;no_research;HTML +https://github.com/g-leech/bad-job;Discrete-choice simulation of an idealised, terrible labour market;no_research;Python +https://github.com/g-leech/eulered;Project Euler in Haskell/Scala/Rust;no_research;Haskell +https://github.com/ftl-traveller/user-health-monitoring-covid19+D1194;An interactive visualisation of the claims in *The Age of Em*.;no_research;Python +https://github.com/g-leech/itila;;no_research;Python +https://github.com/g-leech/living_revision;Sympy notes from my maths degree. Grand plans.;no_research;Jupyter Notebook +https://github.com/g-leech/MachineCV;My machine-readable career;no_research; +https://github.com/g-leech/masks_v_mandates;Data and code on the population effects of mask-wearing on COVID;research;Jupyter Notebook +https://github.com/g-leech/Py2HTK;Python wrapper for the Cambridge Hidden Markov Model Toolkit;research;Python +https://github.com/g-leech/py_utils;Helpers;no_research;Python +https://github.com/g-leech/rotgone;A CLI, client-side script, and browser plugin for stopping the internet from slowly dying;no_research;Shell +https://github.com/g-leech/season-corrs;;no_research;Jupyter Notebook +https://github.com/g-leech/spark_hack;Lightly edited Spark. Just a jar with parametrised regParam;no_research; +https://github.com/g-leech/spoilers-for-reality;exhausting book reviews;no_research; +https://github.com/g-leech/us-ins-stuff;;no_research;Jupyter Notebook +https://github.com/gabriel-abrahao/alvaro_idh;Code for figures for the extreme indices and IDH project;no_research; +https://github.com/gabriel-abrahao/analyze_cesm;;research;Python +https://github.com/gabriel-abrahao/cesm2inland;Converts CESM (CAM2) history files to InLand input files;no_research;Python +https://github.com/gabriel-abrahao/cesm_1.2.2;;no_research;Perl +https://github.com/gabriel-abrahao/cesm_mods;Personal modifications to CESM 1.0.6 files;no_research;Fortran +https://github.com/gabriel-abrahao/dados-emprego;;no_research;R +https://github.com/gabriel-abrahao/gen_lu_cesm;Generate a surfdata CESM2 (CAM4) file from a high resolution land use map and potential vegetation;no_research;NCL +https://github.com/gabriel-abrahao/modelo_lue_past_v7_oliveira;A simple LUE pasture model;no_research;NCL +https://github.com/gabriel-abrahao/piam-scm-interface;Prototype simple climate models interface for PIAM. ;no_research;Python +https://github.com/giannou/bareTest;Null repo for automated testing;no_research; +https://github.com/giannou/gamstest;;no_research; +https://github.com/giannou/OPEN-PROM;;no_research;GAMS +https://github.com/giannou/test;;no_research; +https://github.com/giannou/testrepo;;no_research; +https://github.com/giannou/testrepo2;;no_research; +https://github.com/giannou/trefoil;;no_research; +https://github.com/glmcdona/binary2strings;Python module to extract Ascii, Utf8, and Unicode strings from binary data. Lightning fast wrapper around c++ compiled code.;no_research;C++ +https://github.com/glmcdona/FoosAI;Deep-learning AI for a robotic foosball opponent;no_research;Jupyter Notebook +https://github.com/glmcdona/FoosRL;Reinforcement learning for Foosball using a Unity physics model ml-agents and Keras tensorflow;research;ASP +https://github.com/glmcdona/FoosSegmentation;Deep-learning AI for building foosball player metrics from recorded match videos.;no_research;Jupyter Notebook +https://github.com/glmcdona/FunctionHacker;Maintaining an official release at http://split-code.com/cda.html . Tool for recording, filtering, and hacking function calls within applications or games. Useful for game hacking or malware analysis.;no_research;C# +https://github.com/glmcdona/LuxPythonEnvGym;Matching python environment code for Lux AI 2021 Kaggle competition, and a gym interface for RL models.;research;Python +https://github.com/glmcdona/MALM;MALM: Malware Monitor;research;C++ +https://github.com/glmcdona/meddle;Framework for vulnerability fuzzing and reverse-engineering tool development.;no_research;C# +https://github.com/glmcdona/Process-Dump;Windows tool for dumping malware PE files from memory back to disk for analysis.;research;C +https://github.com/glmcdona/pytorch-tides;Global tide chart prediction model using PyTorch;no_research;Python +https://github.com/glmcdona/sparse-tabular-ml-benchmark;Benchmark for comparing tabular sparse categorical machine learning methods.;research;Python +https://github.com/glmcdona/stratified-vectorizer;;no_research;Python +https://github.com/glmcdona/strings2;strings2: An improved strings extraction tool.;no_research;C++ +https://github.com/Gregwar/ArduiFlow;Arduino programming using flowchart environment;no_research;JavaScript +https://github.com/Gregwar/ArtNet-Console;A minimalist ArtNet-Console (Qt+libartnet);no_research;C++ +https://github.com/Gregwar/ASCII-Tetris;ASCII Tetris game written in C;no_research;C +https://github.com/Gregwar/AU324;Support pour l'enseignement AU324;no_research;C++ +https://github.com/Gregwar/avr-bootstrap;Simple makefile to build and send AVR program w/ arduino bootloader ;no_research;Makefile +https://github.com/Gregwar/avrel;AVR EmuLator (pedagogical);no_research;C++ +https://github.com/Gregwar/blocks.js;JavaScript dataflow graph editor;no_research;JavaScript +https://github.com/Gregwar/Cache;A lightweight filesystem caching system;no_research;PHP +https://github.com/Gregwar/Captcha;PHP Captcha library;no_research;PHP +https://github.com/Gregwar/CaptchaBundle;"Symfony bundle implementing a ""captcha"" form type";no_research;PHP +https://github.com/Gregwar/cdsapi-php-example;;no_research;PHP +https://github.com/Gregwar/Configurations;Mes fichiers de configuration;no_research;Vim script +https://github.com/Gregwar/correction-sheet-generator;;no_research;PHP +https://github.com/Gregwar/Counter-Counter-Strike;Un simple programme C pour faire lagger les serveur CS sur le réseau local;no_research; +https://github.com/Gregwar/CSV;CSV loader/saver;no_research;PHP +https://github.com/Gregwar/dfu-util;;no_research;C +https://github.com/Gregwar/eFlute;Electronic flute;no_research;Eagle +https://github.com/Gregwar/eiquadprog-error-poc;;no_research;CMake +https://github.com/Gregwar/fatcat;FAT filesystems explore, extract, repair, and forensic tool;no_research;C++ +https://github.com/Gregwar/FirstBot;Réalisez votre premier robot;no_research;PHP +https://github.com/Gregwar/FormBundle;"Provides the ""entity_id"" type (read ""entity identifier"")";no_research;PHP +https://github.com/Gregwar/Formidable;The PHP pragmatic forms library;no_research;PHP +https://github.com/Gregwar/FOS-Captcha;Symfony2 application with FOS+CaptchaBundle demo;no_research;PHP +https://github.com/Gregwar/FPDF;(Unofficial) FPDF Repository ;no_research;PHP +https://github.com/Gregwar/GnuPlot;A PHP Library for using GnuPlot;no_research;PHP +https://github.com/Gregwar/ids-grab;Simple program opening a uEye (IDS) camera, grabbing image and displaying it;no_research;C +https://github.com/Gregwar/Image;A PHP library to handle images;no_research;PHP +https://github.com/Gregwar/ImageBundle;Image manipulation bundle for Symfony 2;no_research;PHP +https://github.com/Gregwar/intro_ia;;no_research;Jupyter Notebook +https://github.com/Gregwar/jlog;;no_research;Python +https://github.com/Gregwar/leaflet-demo;;no_research;JavaScript +https://github.com/Gregwar/livecoding-2018;;no_research;JavaScript +https://github.com/Gregwar/maple_mini_mbed;;no_research;C +https://github.com/Gregwar/maple_mini_nrf;;no_research;C++ +https://github.com/Gregwar/mbed_debug;;no_research;C++ +https://github.com/Gregwar/md-doc;A skeleton of project for writing md doc w/ atom;no_research;Makefile +https://github.com/Gregwar/Mitm;Man in the middle tool;no_research;C +https://github.com/Gregwar/MoveTheBox-solver;A simple solver for the MoveTheBox puzzle game;no_research;C +https://github.com/Gregwar/notroot;Install APT packages without root access;no_research;Shell +https://github.com/Gregwar/omniwheel-robot-speeds;Script to plot the feasible speeds of an omniheel robot;no_research;Python +https://github.com/Gregwar/PHP;Cours de PHP;no_research;PHP +https://github.com/Gregwar/Plankton;Plankton is a PHP pico framework;no_research;PHP +https://github.com/Gregwar/Planning;Simple Planning allocator;no_research;PHP +https://github.com/Gregwar/policy_iteration_initialization;"Example where Policy Iteration algorithm book doesn't work with ""arbitrary"" initialization";no_research;Python +https://github.com/Gregwar/poll-2019;;no_research;JavaScript +https://github.com/Gregwar/PRZ;;no_research;Python +https://github.com/Gregwar/pybullet_nullspace_issue;;no_research;Python +https://github.com/Gregwar/pyweb;;no_research;Python +https://github.com/Gregwar/quadruped_enseirb;;no_research;Jupyter Notebook +https://github.com/Gregwar/quadruped_planning;;no_research;Python +https://github.com/Gregwar/robotis-bootloader-fixer;Fixes the robotis bootloader;no_research;Arduino +https://github.com/Gregwar/robotis-bootloader-maple;A port of the robotis bootloader (which is on OpenCM9.04) for the Maple Mini;no_research;C +https://github.com/Gregwar/robotis-loader;Python program to flash robotis boards (OpenCM9.04, CM900);no_research;Python +https://github.com/Gregwar/rotation_interpolation_fitting;;no_research;Python +https://github.com/Gregwar/RST;PHP library to parse reStructuredText documents;no_research;PHP +https://github.com/Gregwar/sandbox;;no_research; +https://github.com/Gregwar/SE;;no_research;PHP +https://github.com/Gregwar/se_dac;;no_research;C +https://github.com/Gregwar/Slidey;The hybrid document & slide webapp builder;no_research;JavaScript +https://github.com/Gregwar/SlideySkeleton;Slidey skeleton project;no_research;PHP +https://github.com/Gregwar/stress-vscode;;no_research;PHP +https://github.com/Gregwar/stroke;;no_research;Jupyter Notebook +https://github.com/Gregwar/submodules-dev;A script to clone/update submodules on master;no_research;Python +https://github.com/harmening/dockerfiles;🐳 ;no_research;Dockerfile +https://github.com/harmening/dotfiles;🤖;no_research;Shell +https://github.com/harmening/HArtMuT;🧠 Head ARTefact Modelling Using Tripoles;research;Julia +https://github.com/harmening/MRIsegmentation;🧠 Automatic MRI segmentation pipeline for consistent FEM and BEM mesh creation from MRI scans of human heads;research;MATLAB +https://github.com/harmening/phrase-frequency-counter;💬NLP - Evaluating the phrase eloquency of a text data set and returns an adapted version of the hirsch-index as measure of its usefulness for the training of Neural Networks for NLP.;no_research;C +https://github.com/harmening/pyhemo;🧠 PYthonic HEad MOdeling;no_research;Python +https://github.com/harmening/pyreite;🧠 Pythonic, Yet Rudimental, Electrical Impedance Tomography Expert;no_research;Python +https://github.com/harmening/signature_extraction;💬NLP - Library for splitting email content into a human-written body and an automatically appended signature.;research;Python +https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures;"This repository contains all correction schemes proposed and used in the article ""Border effect corrections for diagonal line based recurrence quantification analysis measures"" (submitted to Physics Letters A)";research;MATLAB +https://github.com/hkraemer/InterSpikeSpectra-Matlab;InterSpikeSpectra for Matlab;research;MATLAB +https://github.com/hkraemer/InterSpikeSpectra.jl;Obtaining spectra of spike-train-decomposed signals.;no_research;Julia +https://github.com/hkraemer/MCDTS.jl;;research;Julia +https://github.com/hkraemer/PECUZAL_Julia;For Hauke and George's code on delay coordinate embedding;research;Julia +https://github.com/hkraemer/PECUZAL_Matlab;PECUZAL implementation in Matlab;research;HTML +https://github.com/hkraemer/PECUZAL_python;;research;Python +https://github.com/hkraemer/Recurrence_Spike_Spectra;Reproducible Code Base for the application of the InterSpike-Spektrum idea to tau-recurrence data from complex systems.;no_research;PostScript +https://github.com/honglu2875/Bookit-dbManager;The backend of a booking app.;no_research;Kotlin +https://github.com/honglu2875/Bookit-proof-of-concept;;no_research;Shell +https://github.com/honglu2875/Bookit-simple-flask-frontend;A barebone frontend for the scheduling app with everything hardcoded;no_research;CSS +https://github.com/honglu2875/bookit_dbManager_docs;;no_research;JavaScript +https://github.com/honglu2875/deep_cfg;;no_research;Python +https://github.com/honglu2875/fmlang_env;Toy gym env related to formal languages.;no_research;Python +https://github.com/honglu2875/go;Implement RL (MCTS) on Go.;no_research;C++ +https://github.com/honglu2875/hironaka;A utility package for Hironaka game of local resolution of singularities;no_research;Python +https://github.com/honglu2875/hironaka-experiments;Document the experiments of hironaka project;no_research;Python +https://github.com/honglu2875/hironaka_v2;This is a clean redo using only JAX and we reconstruct a simpler design.;no_research; +https://github.com/honglu2875/honglu2875;Config files for my GitHub profile.;no_research; +https://github.com/honglu2875/honkhonk;honk honk honk honk, honk honk!;no_research; +https://github.com/honglu2875/honx;honx honx!;no_research;Python +https://github.com/honglu2875/jag;Just Another deep learninG framework;no_research;Python +https://github.com/honglu2875/mistral_jax;Mistral model in JAX;no_research;Python +https://github.com/honglu2875/polynomial_relation;;no_research;Python +https://github.com/honglu2875/sc2-replay-mining;Mining SC2 replays, and more importantly, we play SC2 and know what is going on.;no_research;Jupyter Notebook +https://github.com/honglu2875/SkynetTheMarketCrusher;A library for nurturing trader behaviors on a neural network in the future market with DQN type reinforcement learning technique.;no_research;Python +https://github.com/honglu2875/slightly-faster-gpt;A slightly faster GPT-J than Huggingface;no_research; +https://github.com/honglu2875/test_github_action;;no_research;Python +https://github.com/honglu2875/thing;WIP;no_research; +https://github.com/honglu2875/weirdonetworks;This is a collection of non-conventional neural networks plus a collection of helper function to assist a study;research;Jupyter Notebook +https://github.com/honglu2875/yarn-patch;This repo exposes simple APIs to patch the YaRN technique to the rotary embeddings of a given Hugging Face model.;no_research; +https://github.com/honglu2875/_diff_model;documenting scripts and workflows for diff model training;no_research;Python +https://github.com/honglu2875/_ft_dockerfile;;no_research;Python +https://github.com/JacobLoe/automatic_speech_recognition;;no_research;Python +https://github.com/JacobLoe/dominant_color_in_video;;no_research;Python +https://github.com/JacobLoe/hpi_airflow;;no_research;Python +https://github.com/JacobLoe/kopernikus_challenge;;no_research;Python +https://github.com/JacobLoe/near_duplicate_detection;;no_research;Python +https://github.com/JacobLoe/optical_flow;;no_research;Python +https://github.com/JacobLoe/QA_project;;no_research;Python +https://github.com/JacobLoe/Rewarding_actions_of_RL-agents_on_MapWorld;;no_research;Python +https://github.com/JacobPfau/Academic-Citation-Prediction;Predicting citation links between academic papers using NLP and graph features;no_research;Jupyter Notebook +https://github.com/JacobPfau/Distribution-Matching-Eval;sandbagging;no_research;Python +https://github.com/JacobPfau/Electoral-Systems-Simulations;Simulations comparing the efficacy of electoral systems under various conditions.;no_research;Python +https://github.com/JacobPfau/introspective-self-consistency;;research;Jupyter Notebook +https://github.com/JacobPfau/PENCIL;A Modular Pytorch Re-Implementation of Probabilistic End-to-end Noise Correction for Learning with Noisy Labels (CVPR 2019);research;Python +https://github.com/JacobPfau/procgenAISC;;research;C++ +https://github.com/JakobBruenker/a-cabal-error;;no_research;Haskell +https://github.com/JakobBruenker/AdventOfCode2017;;no_research;Haskell +https://github.com/JakobBruenker/AOC-haskell-template;A template repository for solving Advent of Code problems with Haskell;no_research;Haskell +https://github.com/JakobBruenker/AoC2015;;no_research;Haskell +https://github.com/JakobBruenker/AOC2020;;no_research;Haskell +https://github.com/JakobBruenker/AoC2021;;no_research;Haskell +https://github.com/JakobBruenker/aoc2022;;no_research;Rust +https://github.com/JakobBruenker/assembler;Assembler for a custom CPU;no_research;Haskell +https://github.com/JakobBruenker/cabal-hangs;;no_research;Haskell +https://github.com/JakobBruenker/ChatGPT-for-bash;Using ChatGPT to convert natural language descriptions into bash commands;no_research;Shell +https://github.com/JakobBruenker/curses-idris;Curses bindings package for Idris;no_research;Idris +https://github.com/JakobBruenker/dotfiles;my dotfiles;no_research;Vim script +https://github.com/JakobBruenker/dwm;my personal dwm fork;no_research;C +https://github.com/JakobBruenker/haskell-intro;Introductory presentation/demo on Haskell;no_research;Haskell +https://github.com/JakobBruenker/HDR;University project to combine several images at different exposures into one HDR image;research;C++ +https://github.com/JakobBruenker/incremental-pants;;no_research;Scala +https://github.com/JakobBruenker/monadic-bang;GHC plugin to desugar ! into do-notation;no_research;Haskell +https://github.com/JakobBruenker/nixos-dotfiles;configuration for my nixos setup;no_research;Vim script +https://github.com/JakobBruenker/Panorama;University project to create a panorama image from an image of a reflective metal sphere;no_research;C++ +https://github.com/JakobBruenker/plugin-test;;no_research;Haskell +https://github.com/JakobBruenker/SK-combinators;Agda proofs of various facts about SK combinator calculus;no_research;Agda +https://github.com/JakobBruenker/troubleshooting;various helpful tips;no_research; +https://github.com/jakobkolb/ansible-playbooks;Playbooks manage devops infrastructure;no_research;Makefile +https://github.com/jakobkolb/bzdlandingpage;Landing Page for BelrinzuDir;no_research;JavaScript +https://github.com/jakobkolb/cosuno-challenge;Coding challenge given by cosuno recruting. Live at https://cosuno-challenge-kolb.netlify.app/;no_research;JavaScript +https://github.com/jakobkolb/dagster-poc;Proof of concept user codebase with dagster.;no_research;Python +https://github.com/jakobkolb/dagster-template;Template for data engineering projects running Dagster;no_research;Python +https://github.com/jakobkolb/datascience-example;;no_research;Jupyter Notebook +https://github.com/jakobkolb/dissertation;latex documents containing the thesis for my PhD;no_research;TeX +https://github.com/jakobkolb/dk-db-sync;ETL pipeline to sync loan database with projected cashflow spreadsheet.;no_research;Python +https://github.com/jakobkolb/estBP;Estimate bifurcation point from timeseries assuming the underlying model has parameter induced tipping.;no_research;Python +https://github.com/jakobkolb/fMRI_FF;fMRI experiment for Flavia Filimon @ MPIB;research;AGS Script +https://github.com/jakobkolb/lakehouse;a data lakehouse built with trino, hive metastore and iceberg;no_research;Mustache +https://github.com/jakobkolb/lizu-finance;A simple data dashboard for different scenarios of lizus financing plan.;no_research;Jupyter Notebook +https://github.com/jakobkolb/lizu-homepage;The Homepage of Lieber Zusammen. A Berlin based community living project. ;no_research;JavaScript +https://github.com/jakobkolb/Master-Thesis;"Code for Master thesis 'Competitive sorption to functional nanoparticles""";research;TeX +https://github.com/jakobkolb/ml-covid-nowcasting;ML based nowcasting of covid cases from vital data from wearable devices and reported symptoms;research;HTML +https://github.com/jakobkolb/pydivest;Analytic approximation of Agent Based Models at hand of an example from fossil fuel divestment;no_research;Python +https://github.com/jakobkolb/pydivest_parameters;parameter fitting for the pydivst model;no_research;Jupyter Notebook +https://github.com/jakobkolb/pysave;numerical model for testing the performance of different opinion formation models on finding the optimal savings rate in a Ramsey–Cass–Koopmans model.;research;Jupyter Notebook +https://github.com/jakobkolb/python-rest-api;;no_research;Python +https://github.com/jakobkolb/self-reported-case-count;Compare count self reported covid-19 tests with official statistics.;no_research;Jupyter Notebook +https://github.com/jakobkolb/tictactoe;A simple tic tac toe game;no_research;TypeScript +https://github.com/jansteinhauser/github-slideshow;A robot powered training repository :robot:;no_research;Ruby +https://github.com/jansteinhauser/masc;Thesis project modeling and analyzing synergies and conflicts between sustainability goals in agriculture and land use;research;GAMS +https://github.com/jbkjr/allennlp_sempar;Experiments with AllenNLP on semantic parsing datasets;research;Python +https://github.com/jbkjr/fastai-openai-finetune;;no_research;Jupyter Notebook +https://github.com/jbkjr/objective-robustness-failures;;no_research; +https://github.com/jbkjr/sarcasm_detection_fastai;;no_research;Jupyter Notebook +https://github.com/jbloomAus/arena-v1-ldn;;no_research;Jupyter Notebook +https://github.com/jbloomAus/ARENA_2.0-RLHF;Preparing content for the ARENA RLHF day. ;research;Jupyter Notebook +https://github.com/jbloomAus/DecisionTransformerInterpretability;Interpreting how transformers simulate agents performing RL tasks ;no_research;Jupyter Notebook +https://github.com/jbloomAus/rust_cli_project;I'm teaching myself Rust. ;no_research;Rust +https://github.com/jbloomAus/rust_text_editor;Learning by doing with Rust. Following along the Hecto tutorial https://www.philippflenker.com/hecto/;no_research;Rust +https://github.com/jbloomAus/SparseAutoencoderSuperposition;;no_research;Jupyter Notebook +https://github.com/jbloomAus/toy_model_interpretability;I'd like to start playing around with toy models to better understand results in recent papers. ;research;Python +https://github.com/jhilaire/guidr;An R library to allow bilateral communication with GUIDE;no_research;R +https://github.com/jhilaire/iguide;An R Shiny app to generate and analyse regression trees created with GUIDE;no_research;R +https://github.com/jhilaire/ipcc_authors;;no_research; +https://github.com/jhilaire/netsiams;;no_research;R +https://github.com/jhilaire/rfp;;no_research; +https://github.com/jhilaire/saintsulpice;;no_research;HTML +https://github.com/jhilaire/SGoS2019;Presentation of the science behind the 1.5C climate goal for Smart & Green on Stage 2019;no_research; +https://github.com/jhilaire/ssawosacarb;Data analysis of carbonization patterns in Sub-Saharan Africa (without South Africa);research;R +https://github.com/jhilaire/testingR;;no_research; +https://github.com/jjshoots/AntiAway;;no_research;HTML +https://github.com/jjshoots/CControllers;;no_research;C++ +https://github.com/jjshoots/CrazyFlyt;Crazyflie UAV simulation based on the PyFlyt library;no_research;Python +https://github.com/jjshoots/cris_plot;;no_research;Python +https://github.com/jjshoots/DL_FasteNet;Very fast fastener detection algorithm based on saliency map and contour finding algorithm.;research;Python +https://github.com/jjshoots/E2SAC;Evidentially Supervised Soft Actor Critic on a multitude of OpenAI Gym Environments.;no_research;Python +https://github.com/jjshoots/edge-jet;Neovim Edge Colorscheme with some changes.;no_research;Vim script +https://github.com/jjshoots/fish_dotfiles;My fish setup;no_research;Shell +https://github.com/jjshoots/jet.io;It's a website!;no_research;HTML +https://github.com/jjshoots/jjshoots;;no_research; +https://github.com/jjshoots/kitty_dotfiles;;no_research; +https://github.com/jjshoots/MATLAB_Simulink_QRotorSim;MATLAB SImulink QRotor Sim;no_research;MATLAB +https://github.com/jjshoots/medusa;;no_research;C++ +https://github.com/jjshoots/mononoki-monospaced-patched;;no_research;Shell +https://github.com/jjshoots/Nonotif;;no_research;JavaScript +https://github.com/jjshoots/nvim_dotfiles;Nvim dotfiles.;no_research;Vim Script +https://github.com/jjshoots/PC_RGB_Controller;RGB Controller on an Arduino Nano living inside my PC;no_research;C++ +https://github.com/jjshoots/PyFlyt;UAV Flight Simulator Gymnasium Environments;research;Python +https://github.com/jjshoots/PyFlytMenagerie;A collection of custom aircraft implementations in PyFlyt;no_research;Python +https://github.com/jjshoots/pyflyt_dogfight;Aerial Combat environment build around PyFlyt;research;Python +https://github.com/jjshoots/pyflyt_rail_env;;no_research;Python +https://github.com/jjshoots/railway_drone;;research;Python +https://github.com/jjshoots/rail_drone_code;;no_research;Python +https://github.com/jjshoots/RemoteIDSpoofer;NodeMCU RemoteID Spoofer;no_research;C +https://github.com/jjshoots/rocket_landing_sac;Rocket Landing in PyFlyt using SAC;no_research;Python +https://github.com/jjshoots/ROS_GAZEBO_toy_project;;no_research;Makefile +https://github.com/jjshoots/rust_serial_monitor;Simple rust serial monitor;no_research;Rust +https://github.com/jjshoots/SAMtool;Semantic segmentation dataset creation tool powered by Segment Anything Model (Meta).;no_research;Python +https://github.com/jjshoots/Some_Files;;no_research;Shell +https://github.com/jjshoots/spotify_scripts;Bunch of scripts to automate my spotify;no_research;Python +https://github.com/jjshoots/spotify_to_wav;Spotify song to .wav file for EdgeTX playback;no_research;Shell +https://github.com/jjshoots/taylors_project;;no_research;Python +https://github.com/jjshoots/tmux_dotfiles;My tmux backup;no_research;Shell +https://github.com/jjshoots/tokyonight_dark;My custom shell theme;no_research;CSS +https://github.com/jjshoots/TUAV-OAN;obstacle avoidance and navigation algorithm for thesis.;no_research;MATLAB +https://github.com/jjshoots/Wingman;Wingman for your AI applications;no_research;Python +https://github.com/jkterry1/acrobot2;;no_research;Python +https://github.com/jkterry1/ASWS;"Code to use Augmented Shapiro Wilks Stopping, as well as code for the paper ""Statistically Signifigant Stopping of Neural Network Training""";research;Python +https://github.com/jkterry1/Butterfly-Baselines;;no_research;Python +https://github.com/jkterry1/Flocking-Learning-Environment;;no_research;C++ +https://github.com/jkterry1/Jordan-Terry-Site;;no_research;HTML +https://github.com/jkterry1/MA-ALE-paper;;no_research;Shell +https://github.com/jkterry1/MCMES_cleanup_scratch;;research;Python +https://github.com/jkterry1/parameter-sharing-paper;A training framework for Stable Baselines3 reinforcement learning agents, with hyperparameter optimization and pre-trained agents included.;research;Python +https://github.com/jkterry1/parametersharingmadrl;;no_research;Python +https://github.com/jkterry1/RLSS;;no_research; +https://github.com/jkterry1/rl_scratch;;no_research;Python +https://github.com/jkterry1/talk_pdfs;;no_research; +https://github.com/jmhessel/BasicSpearmint;A simple tool for small scale experiments using bayesian optimization;research;Python +https://github.com/jmhessel/caption_contest_corpus;"Corpus to accompany: ""Do Androids Laugh at Electric Sheep? Humor ""Understanding"" Benchmarks from The New Yorker Caption Contest""";research;Python +https://github.com/jmhessel/catrank;Pretrained models for the ranking task described in Cats and Captions vs. Creators and the Clock (WWW 2017);research;Python +https://github.com/jmhessel/clipscore;CLIPScore EMNLP code;research;Python +https://github.com/jmhessel/CS322-SP19-Content;Content for CS322-SP19;no_research; +https://github.com/jmhessel/EMAP_EMNLP2020;Empirical Multimodally-Additive Projections;no_research;Python +https://github.com/jmhessel/FightingWords;Quick implementation of Monroe et al.'s algorithm for comparing languages;research;Python +https://github.com/jmhessel/fmpytorch;A PyTorch implementation of a Factorization Machine module in cython.;research;Python +https://github.com/jmhessel/ImageIntro;An intro image analysis workshop, originally constructed for DHRX 2018;no_research;Jupyter Notebook +https://github.com/jmhessel/motif-counter;Helping with Martik's project;no_research;Python +https://github.com/jmhessel/multi-retrieval;Code for Unsupervised Discovery of Multimodal Links in Multi-Image/Multi-Sentence Documents;research;Python +https://github.com/jmhessel/recursive_nn_tf2;Quick demo implementation of tree LSTMs in tf2;no_research;Python +https://github.com/jmhessel/YT8M-ids;A few small scripts for getting the Youtube8M dataset ids.;no_research;Python +https://github.com/jmuessel/jmuessel;Config files for my GitHub profile.;no_research; +https://github.com/jmuessel/SSP_LCA_risk_modeling;integrate the SSP_framework into LCA_methodology;no_research;Jupyter Notebook +https://github.com/jmuessel/VirtualStorageEV;;no_research;Jupyter Notebook +https://github.com/jnnsbrr/PhotoBioDynamics;Small model to simulate biomass production on a global scale. Products are Gross Primary Production (GPP), Net Primary Production (NPP). It is based on a modified version of the Farquhar approach (Haxeltine and Prentice 1996, Farquhar et al. 1980). Where possible, it uses vectorization and parallelization and dynamically downloads latest av;research;R +https://github.com/jnnsbrr/reg_fao_hyde;;no_research;R +https://github.com/johanneskoch94/drat;;no_research;HTML +https://github.com/johanneskoch94/myUtils;Load data from multiple gdx and mif files.;no_research;R +https://github.com/johanneskoch94/remindStart;R-package to start REMIND;no_research;R +https://github.com/jondurbin/airoboros;Customizable implementation of the self-instruct paper.;research;Python +https://github.com/jondurbin/dre2;DRE2 - A fast, lightweight regex engine in c.;no_research;C +https://github.com/jondurbin/mathjson-scratch;Random scripts to hack with mathjson.;no_research;Python +https://github.com/joonleesky/2021_davian_deep_learning_study;;no_research; +https://github.com/joonleesky/a2c-ppo-pytorch;;no_research;Python +https://github.com/joonleesky/bubble-bobble-ppo;Training Bubble-Bobble agent with Proximal Policy Optimization.;no_research;Python +https://github.com/joonleesky/cpu-scheduler;;no_research;C +https://github.com/joonleesky/cryptanalysis;;no_research;Jupyter Notebook +https://github.com/joonleesky/cs188;;no_research;Python +https://github.com/joonleesky/cs224n;;no_research;Jupyter Notebook +https://github.com/joonleesky/cs231n;;no_research;Jupyter Notebook +https://github.com/joonleesky/cs294;;no_research;Jupyter Notebook +https://github.com/joonleesky/dqn-a2c-tensorflow;Tensorflow implementation of basic Deep Reinforcement Learning algorithms: DQN, A2C;no_research;Python +https://github.com/joonleesky/fasttext-numpy;;no_research;Python +https://github.com/joonleesky/hmm-speech-recognition;;no_research;Objective-C +https://github.com/joonleesky/LeetCode;;no_research;Python +https://github.com/joonleesky/phyre-qa;;no_research;Jupyter Notebook +https://github.com/joonleesky/pytorch-tutorial;;no_research;Jupyter Notebook +https://github.com/joonleesky/ray-tutorial;;no_research;Jupyter Notebook +https://github.com/joonleesky/srec_rl;;no_research;Python +https://github.com/joonleesky/tag-prediction;;no_research;Jupyter Notebook +https://github.com/joonleesky/tensorflow-tutorial;;no_research;Jupyter Notebook +https://github.com/joonleesky/train-procgen-pytorch;Pytorch implementation on OpenAI's Procgen ppo-baseline, built from scratch.;research;Python +https://github.com/jsalvatier/advinc;numpy advanced indexing incrementing;no_research;C +https://github.com/jsalvatier/async_deep_reinforce;;research;Python +https://github.com/jsalvatier/cmu210;CMU 15-210 in scala instead of ML;no_research;Scala +https://github.com/jsalvatier/deep-go;Replicating: Move Evaluation In Go Using Deep Convolutional Neural Networks;no_research;Lua +https://github.com/jsalvatier/dotfiles;John Salvatier's dotfiles;no_research;Vim script +https://github.com/jsalvatier/gradient_samplers;samplers for pymc that require gradients;no_research;Python +https://github.com/jsalvatier/gridworld-q-plot;Library for plotting q-functions (and related data) for gridworlds.;no_research;Python +https://github.com/jsalvatier/gym-ple;;no_research;Python +https://github.com/jsalvatier/inverse-reinforcement-learning-tutorial;Inverse Reinforcement Learning tutorial;no_research;HTML +https://github.com/jsalvatier/mcex;Experimental package that eventually became PyMC3 (https://github.com/pymc-devs/pymc3);no_research;Python +https://github.com/jsalvatier/mcex-functional;;no_research; +https://github.com/jsalvatier/monetary-disequilibrium-model;;no_research;TeX +https://github.com/jsalvatier/multichain_mcmc;Multichain MCMC framework and algorithms based on PyMC.;no_research;Python +https://github.com/jsalvatier/numexpr;adding user-func support to numexpr ;research;Python +https://github.com/jsalvatier/numpydb;Utility functions for getting numpy data from a database, MySQL etc. ;no_research;Python +https://github.com/jsalvatier/PyAD;Automatic Differentiation;no_research;Python +https://github.com/jsalvatier/PyGame-Learning-Environment;;research;Python +https://github.com/jsalvatier/Rationality-Exercises;;no_research; +https://github.com/jsalvatier/resume;Resume;no_research;TeX +https://github.com/jsalvatier/scikits.bvp_solver;Python package for solving two-point boundary value problems that wraps BVP_SOLVER;no_research;FORTRAN +https://github.com/jsalvatier/theano;theano;no_research; +https://github.com/jsalvatier/type_theory;random programs to help learn type theory;no_research;Haskell +https://github.com/jsalvatier/ufunc_gen;cython and c utilities for creating ufuncs ;no_research;Python +https://github.com/jsalvatier/vim-settings;vim setttings;no_research;VimL +https://github.com/jsalvatier/vitamind;Vitamin D metaanalysis based on Cochrane's Data;no_research; +https://github.com/jsalvatier/webppl-agents;;no_research;JavaScript +https://github.com/JSchapke/essential-gene-detection;Detection of essential genes with Graph Neural Networks on protein-protein interaction networks;research;Python +https://github.com/JSchapke/routing-environment;;research;Python +https://github.com/JSchapke/solution_AI4EO-AirQuality-Health;;no_research;Jupyter Notebook +https://github.com/JulesGM/AccelerateRL4LMs;;research;Python +https://github.com/JulesGM/autoscratch;;no_research;Python +https://github.com/JulesGM/COGSCurriculum;;no_research;Jupyter Notebook +https://github.com/JulesGM/Comp550Final;;no_research;Python +https://github.com/JulesGM/DeepNeuro;Detection of autism through the machine learning and deep learning analysis of Magnetoencephalography scans.;research;Jupyter Notebook +https://github.com/JulesGM/ELI5;;no_research;Python +https://github.com/JulesGM/eli5_retrieval_large_lm;;research;Jupyter Notebook +https://github.com/JulesGM/eng_talk_mcgillnlp;;no_research;Jupyter Notebook +https://github.com/JulesGM/epigenetic_clock;;no_research; +https://github.com/JulesGM/GAR;;no_research;Python +https://github.com/JulesGM/general_utils;A suit of general Python utilities that I use for my projects.;no_research;Python +https://github.com/JulesGM/HorvathsClock;;no_research;Jupyter Notebook +https://github.com/JulesGM/IteratedRetrieval;;no_research;Jupyter Notebook +https://github.com/JulesGM/LoadFromTorchSaveWithoutLoadingTensors;;no_research;Python +https://github.com/JulesGM/Marg-Li-CoT;;no_research;Jupyter Notebook +https://github.com/JulesGM/our_squeue;;no_research;Python +https://github.com/JulesGM/ParlAI_SearchEngine;A search engine for ParlAI's BlenderBot project (and probably other ones as well);no_research;Python +https://github.com/JulesGM/peft_qlora;;no_research;Python +https://github.com/JulesGM/RetroBoost;;no_research;Python +https://github.com/JulesGM/RL4LMS_fork;;research;Python +https://github.com/JulesGM/SelfLearnedRecursive;;no_research;Jupyter Notebook +https://github.com/JulesGM/stable_baselines3_fork;;no_research;Python +https://github.com/juliusgarbe/dotfiles;:wrench: My dotfiles;no_research;Shell +https://github.com/juliusgarbe/juliusgarbe;;no_research; +https://github.com/juliusgarbe/modelling_sandbox;Examples of basic numerical modelling approaches used in ice-sheet modelling and some (very) simple ice-sheet models.;research;Jupyter Notebook +https://github.com/juliusgarbe/pism-debm-simple;Code repository for PISM-dEBM-simple;no_research;C++ +https://github.com/juliusgarbe/pism_website_test;Repository for a PISM test website;no_research;JavaScript +https://github.com/jvmncs/AIND;A portfolio from Udacity's Artificial Intelligence Nanodegree;no_research;Jupyter Notebook +https://github.com/jvmncs/cle-mnist;A clean MNIST tutorial built with Pytorch;no_research;Python +https://github.com/jvmncs/CLEpy;Projects for CLEpy;no_research;Jupyter Notebook +https://github.com/jvmncs/Contamination;A blood test contamination research project with the Cleveland Clinic;research;Jupyter Notebook +https://github.com/jvmncs/DeepIDS;Playing around with IDS data in Keras;research;Jupyter Notebook +https://github.com/jvmncs/default-risk;;no_research;Python +https://github.com/jvmncs/dlnd;Copy of exercises from Udacity's DLND;no_research;Jupyter Notebook +https://github.com/jvmncs/KaggleInstacart;Solutions to the Instacart Basket Analysis Kaggle competition;no_research;Jupyter Notebook +https://github.com/jvmncs/KaggleNCFM;A repo with files related to the NCFM image classification competition on Kaggle;no_research;Jupyter Notebook +https://github.com/jvmncs/latently;;no_research;Python +https://github.com/jvmncs/ParamNoise;A comparison of parameter space noise methods for exploration in deep reinforcement learning;research;Python +https://github.com/jvmncs/PytorchAdversarialGym;A Gym environment for evaluating and enabling new research into attacking and defending neural networks with adversarial perturbations;research;Python +https://github.com/jvmncs/reinforcement-learning;Solutions to Denny Britz's reinforcement learning exercises;research;Jupyter Notebook +https://github.com/jvmncs/safe-debates;A PyTorch implementation of AI safety via debate;no_research;Python +https://github.com/jvmncs/safe-grid-agents;Training (hopefully) safe agents in gridworlds;no_research;Python +https://github.com/jvmncs/talks;Talks!;no_research;R +https://github.com/jvmncs/yeet-repo;Yeet a git repo into a text file.;no_research;Rust +https://github.com/k4rst3ns/historicalsocbudget;Paper for Historical SOC budget including result notebooks paperdraft as Rmd and PDF;no_research;TeX +https://github.com/kachayev/async-errors;"Code for Kyiv Clojure Meetup talk ""Error handling with core.async""";no_research;Clojure +https://github.com/kachayev/camille-sql;Run SQL over your Maven artifacts;no_research;Java +https://github.com/kachayev/car-racing-attention-agent;"Reproduce the results of ""Neuroevolution of Self-Interpretable Agents"" paper";research;Python +https://github.com/kachayev/dataclasses-tensor;Easily serialize dataclasses to and from tensors (PyTorch, NumPy);no_research;Python +https://github.com/kachayev/dotfiles;for the sake of configuration;no_research;Vim script +https://github.com/kachayev/elixir-scala;Fancy macro(s) to deal with many nested map/filter calls in Elixir (analog for-yield in Scala);no_research;Elixir +https://github.com/kachayev/fiberfox;🦊 High-performance DDoS vulnerability testing toolkit. Various L4/7 attack vectors. Async networking, low CPU/RAM consumption.;no_research;Python +https://github.com/kachayev/finagle-consul;Service discovery for Finagle cluster with Consul. Multi DC support, custom health checks;no_research;Scala +https://github.com/kachayev/fn.py;Functional programming in Python: implementation of missing features to enjoy FP;no_research;Python +https://github.com/kachayev/gearoscope;Gearman server monitoring and worker management system;no_research;JavaScript +https://github.com/kachayev/gym-microrts-paper-sb3;RL agent to play μRTS with Stable-Baselines3 and PyTorch;no_research;Python +https://github.com/kachayev/hotcode-todo;Real-time users collaboration for TodoMVC;no_research;JavaScript +https://github.com/kachayev/muse;Clojure library that makes remote data access code elegant and efficient at the same time;no_research;Clojure +https://github.com/kachayev/nasus;Zero-configuration command-line async HTTP files server in Clojure. Like Python's SimpleHTTPServer but scalable.;no_research;Clojure +https://github.com/kachayev/pyage2;"""Age of Empires II"" Learning Environment";no_research;Python +https://github.com/kachayev/quiche4j;QUIC transport protocol and HTTP/3 for Java;no_research;Java +https://github.com/kachayev/riak-pipe-workshop;Code materials for Riak Pipe Workshop;no_research;Erlang +https://github.com/kachayev/ssl-in-one-epoch;"Reproduce results of ""EMP-SSL: Towards Self-Supervised Learning in One Training Epoch"" paper.";research;Python +https://github.com/kachayev/talks;Talks and materials from different conferences, meetings etc;no_research;CSS +https://github.com/kachayev/timely0;"Minimalistic implementation of Naiad paper ""A Timely Dataflow System"" in Scala";research;Scala +https://github.com/kcobbe/gans_mnist;Using GANs for Unsupervised and Semi-supervised Learning on MNIST;research;Python +https://github.com/kcobbe/ram_mnist;Recurrent Attention Model (RAM) on MNIST;research;Python +https://github.com/kcobbe/slitherin;Single agent and multi agent learning on Slitherin' game;research;Python +https://github.com/KilianZimmerer/COntent;An agent based model to described the formation of filter bubbles and echo chambers;no_research;Python +https://github.com/KilianZimmerer/immerda_scraper;To get an overview of the amount of shifts people are doing.;no_research;Python +https://github.com/KilianZimmerer/MNIST_NN;A neural network approach to classify handwritten numbers from 0 to 9. Implemented from scratch.;no_research;Python +https://github.com/KilianZimmerer/nama_map;;no_research;JavaScript +https://github.com/kronion/333;Final project for COS 333 Spring 2014;no_research;JavaScript +https://github.com/kronion/acm_outreach;Website for Princeton's ACM Outreach Program;no_research;CSS +https://github.com/kronion/Autocracy;Join me in taking over Twitch Plays Pokemon;no_research;Squirrel +https://github.com/kronion/Bibo;Bottle which measures water consumption for HackMIT.;no_research;JavaScript +https://github.com/kronion/CleaningData_A1;;no_research;R +https://github.com/kronion/Crossed;Event for the 2014 Princeton Engineering Olympics;no_research;JavaScript +https://github.com/kronion/datasciencecoursera;;no_research; +https://github.com/kronion/DishCrown;Redefining Restaurant Reviews;no_research;CSS +https://github.com/kronion/Expedite;A template for generic Express applications with sessions;no_research;JavaScript +https://github.com/kronion/Foresight;;no_research;JavaScript +https://github.com/kronion/Git-Commitment;;no_research;JavaScript +https://github.com/kronion/GitSum;A taste of your GitHub activity;no_research;JavaScript +https://github.com/kronion/GoGoTo;Tab through Google search results, just like the old native experience;no_research;JavaScript +https://github.com/kronion/gym-love-letter;OpenAI Gym environment for the Love Letter board game;no_research;Python +https://github.com/kronion/gym-sts;Gym env for Slay the Spire;no_research;Python +https://github.com/kronion/HackPrincetonS2014;Hack Princeton's website for Spring 2014;no_research;CSS +https://github.com/kronion/HashSite;;no_research;PHP +https://github.com/kronion/HostShark;;no_research;JavaScript +https://github.com/kronion/hoth;HN + Auth;no_research; +https://github.com/kronion/love-letter-playground;Environment for training and testing agents to play the game of Love Letter;no_research;TypeScript +https://github.com/kronion/Lucidity;A live ticker for questions;no_research;JavaScript +https://github.com/kronion/Mausolus;A simple password manager using AES-256 encryption;no_research;JavaScript +https://github.com/kronion/MealTalk;;no_research;JavaScript +https://github.com/kronion/microrts-ppo-comparison;Compare PPO implementation performance on microrts gym env;research;Python +https://github.com/kronion/Moon;My (ever-changing) personal website;no_research;CSS +https://github.com/kronion/NBD;;no_research;CSS +https://github.com/kronion/Nodenexus;(Fully responsive) Jekyll blog;no_research;HTML +https://github.com/kronion/Pickup;Crowdsourcing your errands;no_research;JavaScript +https://github.com/kronion/PIR_Detector;Detect motion using networked PIR sensors, and receive notifications on a phone or Pebble watch;no_research;JavaScript +https://github.com/kronion/predata-website-data-challenge;Re: https://github.com/predata/website-data-challenge;no_research; +https://github.com/kronion/PyGotham18-MFA-Right-Way;One-Time Passwords with PyOTP;no_research;Python +https://github.com/kronion/sb3-action-masking-demo;Demonstration of invalid action masking support in stable-baselines3-contrib;no_research;Python +https://github.com/kronion/Seoulipsis;;no_research;CSS +https://github.com/kronion/setup4w2v;Setup for wikipedia2vec;no_research;Shell +https://github.com/kronion/Shell_Config;My zsh and vim configuration files;no_research;Vim Script +https://github.com/kronion/SpeedDemo;Demonstrating basic backend and fast deployment;no_research;JavaScript +https://github.com/kronion/Streamer;A Simple Shared Jukebox;no_research;JavaScript +https://github.com/kronion/sts-playground;;no_research;Python +https://github.com/kronion/Thesis;;no_research;Python +https://github.com/kronion/Thesis-Proxy;The MITM for Spenmo;no_research;JavaScript +https://github.com/kronion/Thesis-Spenmo;A simple application to serve as a testbed for MITM attacks;no_research;CSS +https://github.com/kronion/VelociHacker;;no_research;JavaScript +https://github.com/kronion/WhatsYourSentence;;no_research;JavaScript +https://github.com/kzl/aop;Official codebase for Adaptive Online Planning for Continual Lifelong Learning.;research;Python +https://github.com/kzl/decision-transformer;Official codebase for Decision Transformer: Reinforcement Learning via Sequence Modeling.;no_research;Python +https://github.com/kzl/knn-movie-recommender;Movie recommender system using k-nearest-neighbors algorithm;no_research;C++ +https://github.com/kzl/league-analysis;Analysis of data from the videogame/eSport League of Legends;no_research;Python +https://github.com/kzl/lifelong_rl;Pytorch implementations of RL algorithms, focusing on model-based, lifelong, reset-free, and offline algorithms. Official codebase for Reset-Free Lifelong Learning with Skill-Space Planning.;research;Python +https://github.com/kzl/onipath;An interactive web displaying interconnected news articles and sentiments;no_research;JavaScript +https://github.com/kzl/sheets-calendar;A calendar for tasks in Google Sheets that syncs with Calendar;no_research;JavaScript +https://github.com/kzl/universal-computation;Official codebase for Pretrained Transformers as Universal Computation Engines.;research;Python +https://github.com/kzl/world-cup-analysis;Analysis of World Cup data, including records, goals, and audience attraction;no_research;Python +https://github.com/l5d1l5/AdvancedRasterAnalysis;Advanced Raster Analysis assignment from TeamTropical;no_research; +https://github.com/l5d1l5/AI_proofOfConcept;temporary repo with manual annotations and trained algorithm for VIAME analysis;no_research; +https://github.com/langosco/backdoors;Train a large number of CNNs on CIFAR-10 and install backdoors via data poisoning. ;no_research;Jupyter Notebook +https://github.com/langosco/grok-jax;Reproduction of the grokking paper using jax.;no_research;Python +https://github.com/langosco/hypernetworks-jax;;no_research; +https://github.com/langosco/jax-NaN-error;;no_research;Jupyter Notebook +https://github.com/langosco/meta-transformer;;no_research;Jupyter Notebook +https://github.com/langosco/neural-variational-gradient-descent;Code for the paper 'Neural Variational Gradient Descent'. We perform nonparametric variational inference by transporting samples along a dynamically learned trajectory. ;research;Python +https://github.com/langosco/nn-utils;;no_research;Python +https://github.com/langosco/nnaugment;Permute neural network weights without changing the input-output mapping.;no_research;Python +https://github.com/langosco/rl-myopia;;no_research;Python +https://github.com/langusta/books;;no_research; +https://github.com/langusta/cheatsheets;;no_research;Jupyter Notebook +https://github.com/langusta/h6;Advanced R, homework 6;no_research;R +https://github.com/langusta/lesswrongwarsaw;;no_research; +https://github.com/langusta/Rclass;learning to Rrrr;no_research;R +https://github.com/langusta/rl-agents;Learning and experimenting with rl-agents.;no_research;Jupyter Notebook +https://github.com/langusta/summaries;Summaries of stuff I learn and books I read.;no_research;Jupyter Notebook +https://github.com/langusta/sutton-reinforcement-learning-intro;"Excersises and figures from ""Reinforcement Learning, An Introduction"" by Sutton and Barto";research;Python +https://github.com/lcswillems/0x-profiler-bug;Reproduction for a bug in 0x-profiler;no_research;JavaScript +https://github.com/lcswillems/ai-mx-docs;;research;JavaScript +https://github.com/lcswillems/automatic-curriculum;"Algorithms for curriculum learning. The code of the ""Mastering Rate based Curriculum Learning"" paper.";research;Python +https://github.com/lcswillems/claim-boosted-frequency;;no_research;JavaScript +https://github.com/lcswillems/coins-on-chessboard;"An interface to test a game of ""coins on a chessboard"" invented by Maxim Kontsevich";no_research;JavaScript +https://github.com/lcswillems/cpge-statistics-generator;Code for generating statistics from CPGE admission results.;no_research;Python +https://github.com/lcswillems/debug-xsuite-macos;;no_research;TypeScript +https://github.com/lcswillems/kubuntu-i3wm-installation;Small guide for installing KDE and i3 window manager;no_research; +https://github.com/lcswillems/L3-automatas-minimization-presentation;The report and slides of my presentation on the minimization of automatas;no_research; +https://github.com/lcswillems/L3-internship-presentation;The report and slides of my last-year bachelor internship;no_research; +https://github.com/lcswillems/L3-mini-ada-compiler;An OCaml compiler (lexer, parser, typer and compiler) for the Mini-ADA language;no_research;OCaml +https://github.com/lcswillems/L3-picture-in-picture;A Picture-in-Picture code that might use 3 different implementations of Kahn networks;no_research;OCaml +https://github.com/lcswillems/L3-sys-dig-project;A simple microprocessor (written in netlist) and its assembly in order to execute the program of a clock;no_research;OCaml +https://github.com/lcswillems/MVA-RecVis-a3;An image classifier of birds;no_research;Python +https://github.com/lcswillems/MVA-RecVis-project;Implementation and comparison of 2 behavior cloning algorithms: DART and DAGGER;research;Jupyter Notebook +https://github.com/lcswillems/MVA-RL-project;Implementation and comparison of 5 algorithms: EWF, Exp3, Exp3.P, CFR and CFR+;research;Python +https://github.com/lcswillems/MVA-TDA-article;"Reproduction of the experiments in the article ""Persistence-based Structural Recognition""";research;Python +https://github.com/lcswillems/named-entity-recognizer;A simple and easy-to-use Named Entity Recognizer (written in Keras) with HTML output and links to Wikipedia pages;research;Python +https://github.com/lcswillems/next-js-chakra-ui-starter;;no_research;TypeScript +https://github.com/lcswillems/no-bigint-hangle-bug-contract;;no_research;Rust +https://github.com/lcswillems/project-euler-solutions;A list of codes used to solve Project Euler problems;no_research;Python +https://github.com/lcswillems/python-brick-breaker;A simple and funny Python Brick Breaker with an easy level-maker;no_research;Python +https://github.com/lcswillems/python-MNIST-classifier;A Python handwritten digit classifier trained on MNIST with a UI for using it;no_research;Python +https://github.com/lcswillems/rl-starter-files;RL starter files in order to immediatly train, visualize and evaluate an agent without writing any line of code;no_research;Python +https://github.com/lcswillems/sc-umbrella-network-rs;;no_research; +https://github.com/lcswillems/tipe;The report, slides and the code of my TIPE on the equidistribution of sequences;no_research;Python +https://github.com/lcswillems/torch-ac;Recurrent and multi-process PyTorch implementation of deep reinforcement Actor-Critic algorithms A2C and PPO;no_research;Python +https://github.com/lcswillems/yarn-dependency-bug;Reproduction for a bug in Yarn;no_research;JavaScript +https://github.com/leesharkey/deep_attractor_network;;research;Python +https://github.com/leesharkey/Finding-exoplanets-with-a-CNN;;no_research;Jupyter Notebook +https://github.com/leesharkey/glasgow_msc_project;;no_research; +https://github.com/leesharkey/layerwise_jacobian_analysis;;no_research;Jupyter Notebook +https://github.com/leesharkey/MNIST-repo;Building a neural net from scratch to train using the MNIST data set. ;no_research;Python +https://github.com/lenas95/Projekt_B;;no_research;R +https://github.com/lenas95/SEWS_Amazon_rainforest;Pyhtonframework to study the detection of SEWSs on the Amazon rainforest;no_research;Python +https://github.com/lili-chen/ising-optimization-rbm;Some experiments with Gibbs sampling on RBMs for MAX-CUT;no_research;Jupyter Notebook +https://github.com/lili-chen/SEER;Official codebase for Improving Computational Efficiency in Visual Reinforcement Learning via Stored Embeddings.;no_research;Python +https://github.com/Loisel/.emacs.d;My emacs config;no_research;Emacs Lisp +https://github.com/Loisel/atomic-bombs;;no_research; +https://github.com/Loisel/colorview2d;Manipulate and plot 2d data. ;no_research;Python +https://github.com/Loisel/emacs_config;My Emacs Configuration.;no_research;Emacs Lisp +https://github.com/Loisel/gdxdt;Read/Write utilities for GAMS gdx files. Using R's data.table.;no_research;R +https://github.com/Loisel/lca2rmnd;Calculate LCA impacts from REMIND output files;no_research;Python +https://github.com/Loisel/piraterace;Roborally on Django;no_research;TypeScript +https://github.com/Loisel/smok-a-prime;;no_research;Python +https://github.com/Loisel/tmr3;Calculates transport across a CNT quantum dot in the Coulomb blockade regime via reduced density matrix approach.;no_research;FORTRAN +https://github.com/lquante/ExtremeEventEvaluation;Scripts to analyse *.nc output of extreme weather event simulations.;no_research;Python +https://github.com/lquante/finmath-lib-upper-bound-extensions;Tools to enhance upper bound estimation of Bermudan products using finmath-lib ;no_research;Java +https://github.com/lquante/SimulationScripts;Scripts to facilitate simulation runs on remote environments etc;no_research;Python +https://github.com/lquante/social_agent_based_modelling;Agent-based modelling of (social) questions based on Agents.jl;no_research;Jupyter Notebook +https://github.com/lxuechen/BDMC;PyTorch implementation of Bidirectional Monte Carlo, Annealed Importance Sampling, and Hamiltonian Monte Carlo.;no_research;Python +https://github.com/lxuechen/Differentially-Private-Fine-tuning-of-Language-Models;"Code for ICLR 2022 submission ""Differentially Private Fine-tuning of Language Models"".";no_research;Python +https://github.com/lxuechen/inference-suboptimality;"Code for ""Inference Suboptimality in Variational Autoencoders""";research;Python +https://github.com/lxuechen/minRLHF;A minimal PyTorch re-implementation of RLHF;no_research; +https://github.com/lxuechen/ml-swissknife;An ML research codebase built with friends :) ;no_research;Jupyter Notebook +https://github.com/lxuechen/private-transformers;A codebase that makes differentially private training of transformers easy.;research;Python +https://github.com/maibrittbergh/dischanalapp;A Shiny Web App. Uses R Package dischanalyst to analyze GRDC-Discharge Data in Germany.;no_research;R +https://github.com/maibrittbergh/dischanalyst;;research;R +https://github.com/maibrittbergh/edgar_food;Analysis of EDGAR_Food_Dataset;no_research; +https://github.com/maibrittbergh/lfanalyse;"R-Package to analyse discharge data. To get startet ""lfanalyse"" offers fucntions to load and structure the GRDC-Dataset. For the analysis package contains functions for a descriptive overview, a threshold base analysis as well as trend analysis. ";research;R +https://github.com/maibrittbergh/lfanalysis;R-package to analyze discharge data. The functions focus on a statistical approach for low flow analysis of the GRDC-dataset.;no_research; +https://github.com/maibrittbergh/lfwebapp;"The idea of this shiny web app is to develop an environment that offers an understandable, easy and compact approach for a low flow analysis. All the functions within this web app are taken from the R-package ""lfanalyse"" and the discharge data is from the GRDC-dataset.";no_research;R +https://github.com/maibrittbergh/statisticalmanual;This is a statistical introduction to a low flow analysis. The goal of this manual is to explain, visualize and discuss the basic statistical concepts by using an interactive approach.;no_research;HTML +https://github.com/maibrittbergh/Tutorial;;no_research;HTML +https://github.com/maibrittbergh/Tutorial_Lfanalyse;;no_research;HTML +https://github.com/maikbilling/GFZ-workshop;;no_research;Python +https://github.com/maikbilling/PreSTo;PreSTo - Precipitation Series Tool - is a tool to generate precipiation data out of historical records;no_research;R +https://github.com/maikbilling/traffic-accidents;;no_research;Jupyter Notebook +https://github.com/ManifoldFR/AlphaExpansion;An implementation of alpha-expansion and graph cut;no_research;C++ +https://github.com/ManifoldFR/ap-maths-1s;Ressources pour approfondir le cours de mathématiques de Première S, avec une introduction à la programmation avec Python.;no_research;TeX +https://github.com/ManifoldFR/ap-maths-ts;Ressources pour approfondir le cours de mathématiques de Terminale S;no_research;HTML +https://github.com/ManifoldFR/appro-phy-ts;Approfondissement du programme de physique de Terminale S. Contient des simulations de physique des ondes et de thermique.;no_research;Jupyter Notebook +https://github.com/ManifoldFR/dlmi-project;"Project for the MVA course ""Deep Learning for Medical Imaging""";no_research;Jupyter Notebook +https://github.com/ManifoldFR/docs-tremplin;Documents pour les séances d'approfondissement de l'association Tremplin;no_research;Jupyter Notebook +https://github.com/ManifoldFR/entropic-mfg;Library for solving variational mean-field games using optimal transport and the Sinkhorn algorithm;research;C++ +https://github.com/ManifoldFR/ManifoldFR;;no_research; +https://github.com/ManifoldFR/map411-project;Projet de MAP411;no_research;Jupyter Notebook +https://github.com/ManifoldFR/map552;;no_research;Jupyter Notebook +https://github.com/ManifoldFR/mva-deeplearning;;no_research;Jupyter Notebook +https://github.com/ManifoldFR/mva-optimaltransport;"Work for the MVA course ""Computational Optimal Transport"" https://optimaltransport.github.io/";no_research;Jupyter Notebook +https://github.com/ManifoldFR/mva-reinforcementlearning;Coursework for Reinforcement Learning;no_research;Jupyter Notebook +https://github.com/ManifoldFR/point-process-rust;Simulation of point processes in the Rust programming language;research;Rust +https://github.com/ManifoldFR/recvis-project;"Project for the course ""Object recognition and computer vision""";no_research;Python +https://github.com/ManifoldFR/rust-metropolis;Implementation of the Metropolis algorithm in the Rust programming language;no_research;Rust +https://github.com/marcwie/advent-of-code;;no_research;Python +https://github.com/marcwie/advent-of-code-2022;;no_research;C++ +https://github.com/marcwie/D3-Opinion-Dynamics;Implementation of the adaptive voter model and copan:Exploit in d3;no_research;JavaScript +https://github.com/marcwie/freecodecamp;Collection of my freecodecamp.org challenges;no_research;HTML +https://github.com/marcwie/javascriptGameDevelopment;;no_research;JavaScript +https://github.com/marcwie/pycoment;Compute the entropy and the complexity of a given (set of) network(s);research;Python +https://github.com/marcwie/pygranovetter;;no_research;Python +https://github.com/marcwie/pylaunchcal;Never again miss a future space flight launch;no_research;Python +https://github.com/marcwie/pynuts;Find NUTS/LAU shapefiles, IDs and Codes for a given location.;no_research;Python +https://github.com/marcwie/science-template;;no_research;Python +https://github.com/marcwie/sedac-gpw-parser;Download, crop, plot and analyze high-resolution population estimates from the Socioeconomic Data and Applications Center;research;Python +https://github.com/marcwie/shitlight;A DIY light installation;no_research;C++ +https://github.com/marcwie/srtm30-parser;A framework to work with SRTM30 near-global digital elevation data;no_research;Python +https://github.com/marcwie/tidytuesday-challenges;;no_research;Jupyter Notebook +https://github.com/MathisFederico/coffeematon;A replication of the paper: Quantifying the Rise and Fall of Complexity in Closed Systems: The Coffee Automaton;research;Python +https://github.com/MathisFederico/ControlGym;Simple trials of control theory applied to OpenAI gym classic control environments;no_research;Jupyter Notebook +https://github.com/MathisFederico/Harvard-CS50-Artificial-Intelligence-with-Python;;no_research;Python +https://github.com/MathisFederico/LearnRL;A library to use and learn reinforcement learning algorithms;research;Python +https://github.com/MathisFederico/LearnRL-Pytorch;;no_research;Python +https://github.com/MathisFederico/LearnRL-Tensorflow;LearnRL agents and environements built in tensorflow 2;no_research;Python +https://github.com/MathisFederico/Metaheuristiques;;no_research;Python +https://github.com/MathisFederico/Minesweeper;A minesweeper gym environement;no_research;Python +https://github.com/MathisFederico/optim-supply-product-assignement;Assignment of product for supply chain optimization;no_research;Python +https://github.com/MathisFederico/TransferLearning-RandomMatrix;A Random Matrix Analysis and Optimization Framework to Large Dimensional Transfer Learning;no_research;Python +https://github.com/MathisFederico/wandb_tests;Personal tests for wandb features;no_research;Python +https://github.com/MathisFederico/YoloV2;YoloV2 implementation from scratch in tf2;no_research; +https://github.com/matthiasmengel/cmip5_to_ant;Fast regridding of CMIP5 data to PISM Antarctic grids. Thanks to cdo.;no_research;Python +https://github.com/matthiasmengel/fast_ant_sid;Antarctic ice discharge parametrization and calibration code;research;Fortran +https://github.com/matthiasmengel/isimip-data-mockup;how an isimip data repository may look like.;no_research; +https://github.com/matthiasmengel/isimip-protocol-mockup;Testing a potential ISIMIP protocol writing via github;no_research; +https://github.com/matthiasmengel/isimip3a-protocol-mockup;See rendered version at;no_research;CSS +https://github.com/matthiasmengel/mappingborders;Simple illustration of border enforcement in the browser.;no_research;JavaScript +https://github.com/matthiasmengel/ocean2pism;conversion script for producing ocean data as input to the PISM ice sheet model;no_research;Python +https://github.com/matthiasmengel/pism-ens-analysis;;no_research;Jupyter Notebook +https://github.com/matthiasmengel/pism-initmip-forcing;Scripts to create Initmip Antarctica forcing files for PISM;no_research;Python +https://github.com/matthiasmengel/pism-plotting;quickly plot timeseries or spatial fields of the PISM ice-sheet model;no_research;Python +https://github.com/matthiasmengel/pism-run;create run scripts for pism. iteration possible.;no_research;Python +https://github.com/matthiasmengel/pism_pik;merge pik modifications to stable versions of PISM.;research;C++ +https://github.com/matthiasmengel/sealevel;"Source code for ""Sea level constrained by observations and commitment""";research;Python +https://github.com/maximecb/acidlines;Step sequencer for 303-clones (and mono synths in general) based on the Web MIDI API;no_research;JavaScript +https://github.com/maximecb/AVR-Alarm-Clock;Source code for an avr-based alarm clock;no_research;C +https://github.com/maximecb/AVR-Annoyance;Device using an Atmel microcontroller to produce high-pitched screechy noises at random, unpredictable intervals.;no_research;C++ +https://github.com/maximecb/CodeBeats;Online music programming / live coding platform;no_research;JavaScript +https://github.com/maximecb/Gradient;A JavaScript/HTML5 artificial life experiment involving agents that live in a 2D grid world.;no_research;JavaScript +https://github.com/maximecb/kavascript;Minimalistic dynamically-typed programming language for didactic purposes.;no_research;Rust +https://github.com/maximecb/ledburn;Awesome LED Cube Project;no_research;Python +https://github.com/maximecb/Melodique;Algorithmic musical phrase generator;no_research;JavaScript +https://github.com/maximecb/minibot-iface;Remote control interface for the MiniWorld robot (Raspberry Pi);no_research;Python +https://github.com/maximecb/MusicToy;MusicToy is a minimalist grid sequencer designed to make composition simple and encourage experimentation. It uses the HTML5 web audio and canvas APIs.;no_research;JavaScript +https://github.com/maximecb/noisecraft;Browser-based visual programming language and platform for sound synthesis.;no_research;JavaScript +https://github.com/maximecb/pyopendmx;Python OpenDMX stage light control;no_research;Python +https://github.com/maximecb/toyCPU;Assembly Programming Learning Platform;no_research;JavaScript +https://github.com/maximecb/Turing-Drawings;Randomly generated Turing machines draw images and animations on a 2D canvas.;no_research;JavaScript +https://github.com/maximecb/Turing-Tunes;Procedural music generation engine using Turing machines.;no_research;JavaScript +https://github.com/maximecb/uvm;Fun, portable, minimalistic virtual machine.;no_research;Rust +https://github.com/maximecb/weebasic;weebasic;no_research;Rust +https://github.com/maximecb/zmq-cam;Simple camera server using OpenCV and ZMQ;no_research;Python +https://github.com/maximilian-gelbrecht/ChaoticNDETools.jl;A collection of tools, helper functions and layers to assist working with chaotic Neural Differential Equation in Julia;research;Julia +https://github.com/maximilian-gelbrecht/Exercise8.jl;Example solution to the Exercise 8 of the Modelling and Machine of Dynamical System in Julia class at TUM;no_research;Jupyter Notebook +https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl;Julia implementation of the Ghil-Sellers 1D Energy Balance Model;research;Julia +https://github.com/maximilian-gelbrecht/GinzburgLandau.jl;Julia implementation of the Complex Ginzburg Landau equation;no_research;Julia +https://github.com/maximilian-gelbrecht/MCBB.jl;Monte Carlo Basin Bifurcation Analysis;research;Jupyter Notebook +https://github.com/maximilian-gelbrecht/NODEData.jl;Small helper package that provides a struct for sequence learning with Neural ODEs.;no_research;Julia +https://github.com/maximilian-gelbrecht/NPDEChaos;This is the source code of the Neural Partial Differential Equations for Chaotic Processes Paper.;no_research;Julia +https://github.com/maximilian-gelbrecht/SeqData.jl;Small package that provides a data type for sequence learning ;no_research;Julia +https://github.com/maximilian-gelbrecht/SlurmHyperopt.jl;Hyperparameteroptimization with Slurm scripts based on Hyperopt.jl;no_research;Julia +https://github.com/maximilian-gelbrecht/SNDE-Experiments;WIP SNDE Experiments;no_research;Julia +https://github.com/maximilian-gelbrecht/SpeedyExperiments.jl;SpeedyWeather experiments and scripts to test it with Enzyme AD and GPU ;no_research;Jupyter Notebook +https://github.com/megan-klaiber/dl-lab-2018;Deep Learning Lab WS 18/19, University of Freiburg ;no_research;Jupyter Notebook +https://github.com/megan-klaiber/dl-lab-project;Final project for the Deep Learning lab course of the University of Freiburg.;no_research;Jupyter Notebook +https://github.com/Melanol/aiogram_test;Simple aiogram bot.;no_research;Python +https://github.com/Melanol/ANNA_test;;no_research;Python +https://github.com/Melanol/bacteria_evo;;research;Python +https://github.com/Melanol/django_test_job;;no_research;Python +https://github.com/Melanol/dm_control_tripod_mini;;no_research;Python +https://github.com/Melanol/dragoon;A dm_control multi-legged robot;no_research;Python +https://github.com/Melanol/drf_test_job;;no_research;Python +https://github.com/Melanol/grass_evo;;no_research;Python +https://github.com/Melanol/intro_to_rl;Envs and algos of the Intro to RL book;no_research;Python +https://github.com/Melanol/Melanol;Config files for my GitHub profile.;no_research; +https://github.com/Melanol/melanol_open_ai_gym;Cracking OpenAI gym with stable-baselines3;no_research;Python +https://github.com/Melanol/planet_eleven;;no_research;Python +https://github.com/Melanol/SMENA_server;A test job from the SMENA company;no_research;Python +https://github.com/Melanol/snake_rl;;no_research;Python +https://github.com/mensch72/mensch72;;no_research; +https://github.com/mgoulao/2v2-Slime-Volleyball;;no_research;Jupyter Notebook +https://github.com/mgoulao/ArXiv-Typst-Template;;no_research;TeX +https://github.com/mgoulao/BookListingProject;;no_research;Java +https://github.com/mgoulao/Bookmarks-Extension;;no_research;JavaScript +https://github.com/mgoulao/CG-labs;;no_research;JavaScript +https://github.com/mgoulao/Colours;;no_research;Svelte +https://github.com/mgoulao/Compiladores;;no_research;C +https://github.com/mgoulao/fuchsia-web-demo;RIP Armadillo;no_research;HTML +https://github.com/mgoulao/graphy;;no_research;C++ +https://github.com/mgoulao/HabitTracker;;no_research;Java +https://github.com/mgoulao/HRL-Notebooks;;no_research;Jupyter Notebook +https://github.com/mgoulao/IAED-Project-2;;no_research;C +https://github.com/mgoulao/IPM;;no_research;CSS +https://github.com/mgoulao/IST-MSc-Thesis-Typst-Template;;no_research;TeX +https://github.com/mgoulao/jax-ssl;;no_research;Python +https://github.com/mgoulao/Linear-Probing-for-RL;;research;Python +https://github.com/mgoulao/LP-Prolog;;no_research;Prolog +https://github.com/mgoulao/MG-News;;no_research;Java +https://github.com/mgoulao/My-Inventory;;no_research;Java +https://github.com/mgoulao/Open-Camera;Modified Version of the Open Source App Open Camera;no_research;Java +https://github.com/mgoulao/P3D-Ray-Tracer;;no_research;C +https://github.com/mgoulao/PO-Projeto;;no_research;Java +https://github.com/mgoulao/SO;;no_research;C +https://github.com/mgoulao/Sphinx-GhPages-Versioning;;no_research;Python +https://github.com/mgoulao/Sporting-CP-Quiz;My third and final Project for the Android Basics - EU Scholarship;no_research;Java +https://github.com/mgoulao/TOV-VICReg;;no_research;Python +https://github.com/mgoulao/TypeSpaceArcade;A multiplayer P2P space arcade game where you fire against the enemies by typing words.;no_research;JavaScript +https://github.com/mgoulao/Vibrant-Card-Swipe;;no_research;JavaScript +https://github.com/Miffyli/asv-cm-reinforce;Optimizing speaker verification and spoofing countermeasure systems together with REINFORCE;no_research;Python +https://github.com/Miffyli/gan-aimbots;"Code for the experiments done in the paper ""GAN-Aimbots: Using Machine Learning for Cheating in First Person Shooters""";no_research;Python +https://github.com/Miffyli/im2latex-dataset;Python tools for creating suitable dataset for OpenAI's im2latex task: https://openai.com/requests-for-research/#im2latex;no_research;Python +https://github.com/Miffyli/mastering-chutes-and-ladders;The source code for mastering the game of Chutes and Ladders;no_research;Jupyter Notebook +https://github.com/Miffyli/minecraft-bc;Submission code of UEFDRL team to NeurIPS 2019 MineRL challenge (5th place);no_research;Python +https://github.com/Miffyli/minecraft-bc-2020;Behavioural cloning solution to MineRL2020 competition;no_research;Python +https://github.com/Miffyli/nle-sample-factory-baseline;;research;Python +https://github.com/Miffyli/policy-supervectors;Creating fixed-length vectors to describe RL/GA policies;research;Python +https://github.com/Miffyli/rl-action-space-shaping;Experiment code for testing effect of various action space transformations in reinforcement learning;research;Python +https://github.com/Miffyli/rl-human-prior-tricks;Evaluating different engineering tricks that make RL work;research;Python +https://github.com/Miffyli/sym;Website for detailed game mechanics;research;JavaScript +https://github.com/Miffyli/TerrariaCustomMediumcore;A Terraria TSchock server plugin that allows customizing which items are dropped upon death;no_research;C# +https://github.com/Miffyli/ToriLLE;Toribash Learning Environment;research;Lua +https://github.com/mikapfl/datalad-example;;no_research; +https://github.com/mikapfl/gin_ansible_role;Install the gin scientific data sharing service using docker via ansible;research;CSS +https://github.com/mikapfl/matrixmethod;The matrix method to calculate X-ray reflectometry spectra and fields in stratified media;no_research;Python +https://github.com/mikapfl/once_only;Run a python script or function only once in a given time frame.;no_research;Python +https://github.com/mikapfl/read_di_unfccc;Dataset containing all data available from the UNFCCC API available at https://di.unfccc.int, and scripts to generate it;research;Jupyter Notebook +https://github.com/mikapfl/reconfigure_ssh_port;Ansible role to reconfigure the ssh port without losing the controlling connection;no_research; +https://github.com/mikapfl/unfccc_di_data;Dataset containing all data available from the UNFCCC API at https://di.unfccc.int;research;Makefile +https://github.com/mikewin-climsci/BGPvBGC;Prioritizing forestation based on biogeochemical and local biogeophysical impacts, Windisch et al.;research;Jupyter Notebook +https://github.com/mikewin-climsci/hello-world;;no_research;HTML +https://github.com/miljanm/deep-learning-for-sentiment-mining;"Code created as part of my masters thesis project ""Deep learning for fine-grained document level sentiment mining""";research;Python +https://github.com/miljanm/emotional-intelligence;Project which detectes emotional state of a person based on biosensor and breath meter readings.;no_research;Python +https://github.com/miljanm/FoodEngine;;no_research;JavaScript +https://github.com/miljanm/Google-Visualization-AnnotatedChart-GWT-wrapper;GWT wrapper for Google Visualization Annotated Chart;no_research; +https://github.com/miljanm/Metis-Challenge-Naive-Bees-Classifier;Code created as part of The Metis Challenge: Naive Bees Classifier ;no_research;Python +https://github.com/miljanm/order-forecasting-lstm;;no_research;Jupyter Notebook +https://github.com/miljanm/Political-Twitter-Sentiment-Mining;A model for determining sentiment of politically related tweets during a presidential debate;research;Python +https://github.com/miljanm/Reinforcement-Learning-in-Blackjack;Implementation of several reinforcement learning algorithms used to play a variation of blackjack;no_research;Python +https://github.com/miljanm/Sentiment-analyzer-for-trading;Software which does sentiment analysis on twitter and uses that as a signal for automated trading.;no_research;Python +https://github.com/miljanm/Sentiment-mining-for-movie-reviews;Kaggle competition for detecting sentiment of movie reviews taken from Rotten Tomatoes;no_research;Python +https://github.com/minhlong94/awesome-LLM;A collection of interesting papers related to Large Language Models (LLM);no_research; +https://github.com/minhlong94/blog;;no_research;HTML +https://github.com/minhlong94/ChinesePinyin-EasyOCR;;no_research;Python +https://github.com/minhlong94/enigma-encryption;;no_research;Python +https://github.com/minhlong94/GenshinArtifactFinder;;no_research;Python +https://github.com/minhlong94/gpu-monitor-webhook;A simple Python script to monitor GPU usage and send notification to a Webhook server;no_research;Python +https://github.com/minhlong94/KotlinOOAD;OOAD assignment (IT090IU);no_research;Kotlin +https://github.com/minhlong94/Linear-and-Poly-Regression;;no_research;Python +https://github.com/minhlong94/MERN-Web-App;;no_research; +https://github.com/minhlong94/minDG;A minimal DomainBed implementation, aims for fast experiment results;no_research; +https://github.com/minhlong94/minhlong94;;no_research; +https://github.com/minhlong94/ml_competitions;;no_research;Python +https://github.com/minhlong94/must-read-ai-papers;A collection of must-read AI-related papers;no_research; +https://github.com/minhlong94/Object-Oriented-Programming-HCMIU;A place to store HCMIU OOP Lab codes;no_research;Java +https://github.com/minhlong94/ORA-IU;PDM project of IU students;no_research;JavaScript +https://github.com/minhlong94/Random-Mixup;[Practical-DL @ AAAI'23] Official code of R-Mix and RL-Mix, accepted at 2nd Practical-DL Workshop @ AAAI'23;research;Python +https://github.com/minhlong94/SWE_IT076IU;Repository;no_research;Python +https://github.com/minhlong94/Theoretical-Models-in-Computing;A place to store codes for HCMIU Theoretical Models in Computing labs;no_research;Python +https://github.com/minhlong94/vigenere-encryption;;no_research;Python +https://github.com/minna-xD/css-grid;My files for the CSS Grid course by Wes Bos;no_research;HTML +https://github.com/minna-xD/elainpeli;A little dice game with animals (JavaFX GUI and original artwork :grin:);no_research;Java +https://github.com/minna-xD/JavaScript30;My files for the 30 Day Vanilla JS Coding Challenge (https://javascript30.com/);no_research;HTML +https://github.com/minna-xD/mimmit-koodaa-sympa-mooc;Population Graph created in the MOOC course by Sympa;no_research;JavaScript +https://github.com/minna-xD/WhatTheFlexbox;My files for the What The Flexbox video course (http://flexbox.io);no_research;CSS +https://github.com/mjziebarth/ACOSA;A compilation of spherical algorithms.;no_research;C++ +https://github.com/mjziebarth/acplotoo;Collection of tools for plotting with matplotlib;no_research;Python +https://github.com/mjziebarth/Clean-Latex;Script for cleaning and preparing latex documents for journal submission.;no_research;Python +https://github.com/mjziebarth/FlotteKarte;A low-overhead Python cartography package based on PROJ, Matplotlib, and PyProj.;no_research;C++ +https://github.com/mjziebarth/gmt-python-extensions;Some personal extension code for gmt-python (perhaps to be implemented);no_research;Python +https://github.com/mjziebarth/GPS_MIDAS;Processing of MIDAS-processed GPS velocity data table from UNR geodesy.;no_research;Python +https://github.com/mjziebarth/Hurtigbrief;Quickly write letters using LaTeX `scrletter`;no_research;Python +https://github.com/mjziebarth/InterpolateStress;Interpolate stress azimuth and plunges based on the Stress2Grid algorithm by Ziegler & Heidbach (2017);no_research;C++ +https://github.com/mjziebarth/jass.lang;GtkSourceView language file for WC3 JASS scripting language;no_research; +https://github.com/mjziebarth/Mebuex;build_ext with Meson;no_research;Python +https://github.com/mjziebarth/ProjWrapCpp;Wraps some PROJ library C API code into a C++ class;no_research;C++ +https://github.com/mjziebarth/pybalonor;Bayesian Analysis of the Log-Normal distribution in Python;research;C++ +https://github.com/mjziebarth/REHEATFUNQ;Regional aggregate heat flow distributions and heat flow anomaly quantification;research;Jupyter Notebook +https://github.com/mjziebarth/Revise;Yet another revision markup latex package.;no_research;TeX +https://github.com/mjziebarth/seno;Spatially embedded network outline;no_research; +https://github.com/mjziebarth/SHGOFAST;Monkey-patched Cython/C++ code to solve some SciPy SHGO bottleneck issues;no_research;Cython +https://github.com/mjziebarth/SlimTeX;A slim LaTeX editor.;no_research;C++ +https://github.com/mlodel/test_pybind11;;no_research;C++ +https://github.com/moulai/download_NEX-GDDP-CMIP6;A simple script to download the specified NEX-GDDP-CMIP6 file.;no_research;Python +https://github.com/moulai/gcam-core-libs;libs for building gcam on posix system;no_research; +https://github.com/mppalves/CalibValidRothC;;no_research;R +https://github.com/mppalves/CO2CityMap;;no_research;R +https://github.com/mppalves/food-agriculture-policy;Repository created to store food and agriculture policy didactic models developed as course projects;no_research;Jupyter Notebook +https://github.com/mppalves/Game-theory;Game theory model for international trade and tariffs simulation;no_research;Mathematica +https://github.com/mppalves/GSTools;GSTools is a package with auxiliary functions used in may master thesis work;no_research;R +https://github.com/mppalves/lpjmule;;no_research;R +https://github.com/mppalves/NetLogo_Bacterial_Infection_Model;Agent based model of inflammatory process;research;NetLogo +https://github.com/mppalves/PIK-projects;Files related to my Master thesis research;research;Mathematica +https://github.com/mppalves/soilcemulator;;research;R +https://github.com/mppalves/Syngenta_challenge;;no_research;HTML +https://github.com/mscrawford/IBC-grass;Individual-based grassland community assembly model;no_research;C++ +https://github.com/mscrawford/IsleRoyale;Ecological Modelling course materials;no_research;C++ +https://github.com/mscrawford/jointvetch;An individual- and GIS-based simulation of Aeschynomene virginica, or Sensitive joint-vetch, in its tidal marshland habitat of Holts Creek, VA.;no_research;Java +https://github.com/mscrawford/PPA;Perfect Plasticity Approximation (PPA) model of tropical forest succession.;no_research;R +https://github.com/mscrawford/SimNet;Model intercomparison of relationship between community assembly and ecosystem functioning;no_research;HTML +https://github.com/ndormann/attnode_v3_firmware_energy_harvest;;no_research;C++ +https://github.com/ndormann/CatShrek;How to detect and chase away cats! (only with water, don't worry);no_research;Python +https://github.com/ndormann/mcp2515_driver;Yet another adaptation of the mcp251x driver from kernel source that should support one shot mode;no_research;C +https://github.com/ndormann/Noname-Hackathon2019;Project of Pascal, Johannes, Lukas, Noah;no_research;Java +https://github.com/ndormann/PLT-Parser-to-GCode;Java Parser to generate GCode from a old .plt file.;no_research;Java +https://github.com/neale/Adversarial-Autoencoder;An adversarial autoencoder implementation in pytorch;no_research;Python +https://github.com/neale/agent-artist;Using local multimodal LLMs as agent artists;no_research; +https://github.com/neale/avoiding-side-effects;Code for reproducing the results from the paper Avoiding Side Effects in Complex Environments;research;Python +https://github.com/neale/bird_mnist;Classify mnist then try to classify a bird;no_research;Python +https://github.com/neale/cone_detec;He snac, he attac, but most importantly, he detec;no_research;Python +https://github.com/neale/CPPN;CPPN my style. Generate reproducible random images ;no_research;Python +https://github.com/neale/CS-program;Collection of work done thorughout the CS program at OSU;no_research;Python +https://github.com/neale/Dotfiles;The most frustratingly efficient dotfiles anywhere;no_research;Shell +https://github.com/neale/EnCom;Modular RS232 Monitor ;no_research;C +https://github.com/neale/foobar;Solutions to most of the Google Foobar problems;no_research;Python +https://github.com/neale/HyperGAN;Generative Model for Neural Networks;research;Python +https://github.com/neale/Improved-WGAN;WGAN-GP Implemented in Python3 with PyTorch 0.4.1;no_research;Python +https://github.com/neale/neale-io;Flask site to host my personal work and projects;no_research;HTML +https://github.com/neale/neural-canvas;creative deep learning with implicit neural representations;research;Python +https://github.com/neale/neural-data-format;Data compression and retrieval with implicit neural representations;research;Python +https://github.com/neale/nrf-basic;Basic libraries for point to point communication with a receiver and transmitter nrf2401;no_research;C +https://github.com/neale/particle-based-vi_ood;Implementation of particle based VI methods for OOD detection;research;Python +https://github.com/neale/PySATDNN;A tool for solving a 3 node neural network with PySMT;no_research;Python +https://github.com/neale/tensorboard_aggregator-;;no_research;Python +https://github.com/nicobauer/nicobauer;Config files for my GitHub profile.;no_research; +https://github.com/ntaconet/Mobility_Germany;;no_research;R +https://github.com/ntaconet/PersonalWebsite;;no_research; +https://github.com/ochan12/code-snippets;;no_research;Python +https://github.com/ochan12/csv-graph-creator;Create custom matplot images from CSV files;no_research;Python +https://github.com/ochan12/DSM;;no_research;JavaScript +https://github.com/ochan12/genre-recognizer;;no_research;Python +https://github.com/ochan12/lifesteps-api;;no_research;Kotlin +https://github.com/ochan12/locize-server;;no_research;TypeScript +https://github.com/ochan12/Module4-Solution;;no_research;JavaScript +https://github.com/ochan12/my-website;;no_research;TypeScript +https://github.com/ochan12/pybroom;Python app that receives objects and cleans it according to defined fields and characters.;no_research;Python +https://github.com/ochan12/restaurants-around;;no_research;TypeScript +https://github.com/ochan12/restaurants-server;;no_research;JavaScript +https://github.com/ochan12/rovarspraket-translator;;no_research;TypeScript +https://github.com/ochan12/technical-cases;;no_research;TypeScript +https://github.com/ochan12/TimeTracker;;no_research;Kotlin +https://github.com/ochan12/TP;;no_research;Java +https://github.com/ochan12/TPI;;no_research; +https://github.com/owainevans/emacs;;no_research;Emacs Lisp +https://github.com/owainevans/myunit;;no_research;Python +https://github.com/owainevans/summer_birds;;no_research;Python +https://github.com/owainevans/test;;no_research;Python +https://github.com/owainevans/vcx;tools for ipython and vcxx;no_research;Python +https://github.com/owainevans/venturemagics;;no_research;Python +https://github.com/patrickkloesel/break_detection_global;This is a repository for the Break Detection Global Paper (OECD Paper). ;no_research;HTML +https://github.com/patrickkloesel/public;;no_research; +https://github.com/PavelCz/deep-learning-nanodegree;My projects for the Deep Learning Nanodegree at Udacity;no_research;Jupyter Notebook +https://github.com/PavelCz/haskell-tutorial;Resources to learn Haskell for members of my tutorial;no_research;Jupyter Notebook +https://github.com/PavelCz/introduction-to-dl-udacity;Exercises of the Bertelsmann Technology Scholarship AI track;no_research;Jupyter Notebook +https://github.com/PavelCz/JBreakout;;no_research;Java +https://github.com/PavelCz/JSpaceShooter;;no_research;Java +https://github.com/PavelCz/LudumDare-35;;no_research;C# +https://github.com/PavelCz/MiniLD66-prototype;;no_research;C# +https://github.com/PavelCz/pico-8-carts;;no_research;Lua +https://github.com/PavelCz/ray-testbed;;no_research;Python +https://github.com/PavelCz/rl-adversarial-attack;Adversarial attacks on deep reinforcement learning;no_research;Python +https://github.com/PavelCz/starter-hugo-academic;;no_research;TeX +https://github.com/PavelCz/TechChallenge-Clinico;Clinico: Locally hosted webapp to aid nurses with language barrier problems in the triage process;no_research;HTML +https://github.com/PavelCz/VirusDefense;A simple tower defense game using Slick2d. Website:;no_research;Java +https://github.com/PavelCz/VirusDefense-libGDX-port;A simple tower defense game using libGDX. Website:;no_research;Java +https://github.com/pfuehrlich-pik/GitHub-Action-Example;;no_research;R +https://github.com/PhilippVerpoort/blue-green-H2;Data and codes for blue-green hydrogen competition;research;Python +https://github.com/PhilippVerpoort/green-value-chains;;research;Jupyter Notebook +https://github.com/PhilippVerpoort/piw;PIK Interactive Webapp Library;no_research;Python +https://github.com/PhilippVerpoort/piw-example;PIK Interactive Webapp Example;no_research; +https://github.com/PhilippVerpoort/posted;Potsdam Open-Source Techno-Economic Database;research;Python +https://github.com/pik-copan/MayaSim;Simulation of the raise and fall of the ancient Maya civilization on the Yucatan penisula;research;Jupyter Notebook +https://github.com/pik-copan/pycascades;Python framework for simulating tipping cascades on complex networks;research;Jupyter Notebook +https://github.com/pik-copan/pycopanbehave;Python implementation of COPAN:BEHAVE model;research;Python +https://github.com/pik-copan/pycopancore;reference implementation of the copan:CORE World-Earth modelling framework;research;Python +https://github.com/pik-copan/pycopandiscount;Python script to run the copan:DISCOUNT model;research;Python +https://github.com/pik-copan/pycopanpbcc;Python scripts for analyzing planetary boundaries in a conceptual model of the Earth's carbon cycle including geoengineering by terrestrial carbon dioxide removal;research;Python +https://github.com/pik-copan/pydrf;Python scripts for estimating dose response functions and performing surrogate analysis based on temporal network data;research;Jupyter Notebook +https://github.com/pik-copan/pymofa; collection of simple functions to run and evaluate computer models systematically;no_research;Jupyter Notebook +https://github.com/pik-copan/pyregimeshifts;Python scripts for detecting nonlinear regime shifts in multiple paleoclimate time series as in Donges et al., Clim. Past. 11, 709-741 (2015);research;Python +https://github.com/pik-copan/pytippinginteractions;Python scripts for studying dynamics of interacting tipping elements;research;Python +https://github.com/pik-copan/pyunicorn;Unified Complex Network and Recurrence Analysis Toolbox;research;Python +https://github.com/pik-copan/thinkathon2021inunsafewaters;;no_research;Python +https://github.com/pik-gane/motabarnn;python package for torch-based neural network version of MoTaBaR;no_research;Python +https://github.com/pik-gane/pyoptes;Python framework for optimization of epidemic testing strategies;no_research;Python +https://github.com/pik-gane/pyresponsibility;quantify agents' degrees of moral responsibility in complex multi-agent decision situations;no_research;Python +https://github.com/pik-gane/satisfia;Satisficing-based Intelligent Agents;no_research;Python +https://github.com/pik-gane/tricl;TriCl model in C++;no_research;C++ +https://github.com/pik-gane/vodle;We develop an interactive, consensus-oriented group decision app;research;JavaScript +https://github.com/PIK-LPJmL/LandInG;The Land Input Generator (LandInG) contains a collection of scripts to derive basic input datasets for terrestrial ecosystem models from diverse and partially conflicting data sources.;research;R +https://github.com/PIK-LPJmL/LPJmL;Welcome to the central open-source repository of LPJmL at PIK. You are free to download the code under the AGPLv3 license, see LICENSE file. Have fun. Please note that there is absolutely no support outside agreed collaborations. We also don't provide any input data, which is derived from other sources. ;no_research;C +https://github.com/PIK-LPJmL/lpjmlkit;A collection of basic functions to facilitate the work with the DGVM LPJmL hosted at the Potsdam Institute for Climate Impact Research. It provides functions for running LPJmL, as well as reading, processing and writing model-related data such as inputs and outputs or configuration files.;research;R +https://github.com/PIK-LPJmL/LPJmLmdi;LPJmLmdi - model-data integration for the LPJmL dynamic global vegetation model (R package);research;R +https://github.com/PIK-LPJmL/pycoupler;;no_research; +https://github.com/pik-piam/.github;;no_research; +https://github.com/pik-piam/blackmagicc;Generate warming pathways using MAGICC for your MAgPIE runs using reference REMIND emissions;research;R +https://github.com/pik-piam/brick;;research;R +https://github.com/pik-piam/citation;R package | create cff citation file from R package metadata;research;R +https://github.com/pik-piam/cookiecutter-lucode;cookiecutter template for a new R package using lucode2;no_research;Python +https://github.com/pik-piam/coupling-doc;Documentation and instructions for model coupling;no_research; +https://github.com/pik-piam/demystas;R package | Demystifying Automation on Simple Tasks;research;R +https://github.com/pik-piam/discussions;Questions, answers, and discussions about PIAM tools, packages, and workflows;no_research; +https://github.com/pik-piam/edgeTransport;A detailed transport sector model.;research;R +https://github.com/pik-piam/edgeTrpLib;Support Library for EDGE-Transport.;research;R +https://github.com/pik-piam/GDPuc;R package for GDP unit conversion;research;R +https://github.com/pik-piam/gdx;R package | readGDX package for R;research;R +https://github.com/pik-piam/gms;;research;R +https://github.com/pik-piam/goxygen;Documentation package for modular GAMS code;research;R +https://github.com/pik-piam/limes;Contains the LIMES-specific routines for data and model output manipulation.;research;R +https://github.com/pik-piam/lockfile-archive;Includes renv.lock files to document the pik-piam R package environment at different points in time;research;R +https://github.com/pik-piam/lpjclass;Package containing the LPJ-Object-Class together with relevant functions and methods.;research;R +https://github.com/pik-piam/lucode2;A collection of tools which allow to manipulate and analyze code.;research;R +https://github.com/pik-piam/luplot;Some useful functions to plot data such as a map plot function for MAgPIE objects.;research;R +https://github.com/pik-piam/luscale;R package | Landuse Scaling Tools;research;R +https://github.com/pik-piam/lusweave;R package | Landuse Sweave Utilities;research;R +https://github.com/pik-piam/m4fsdp;Output routines for extracting results from the MAgPIE framework (versions 4.x) for the FSDP project;research;R +https://github.com/pik-piam/madrat;R package | May All Data be Reproducible and Transparent (MADRaT);research;R +https://github.com/pik-piam/magclass;R package | Data Class and Tools for Handling Spatial-Temporal Data;research;R +https://github.com/pik-piam/magpie4;R package | MAgPIE outputs R package for MAgPIE version 4.x;research;R +https://github.com/pik-piam/MAgPIENCGains;;research;R +https://github.com/pik-piam/magpiesets;R package | MAgPIE sets for R;research;R +https://github.com/pik-piam/miniPackage;;no_research; +https://github.com/pik-piam/mip;Model intercomparison visualization package;research;R +https://github.com/pik-piam/modelstats;A collection of tools for monitoring and diagnosing models;research;HTML +https://github.com/pik-piam/mrcommons;;research;R +https://github.com/pik-piam/mrdieter;The mrdieter packages contains data preprocessing for the DIETER model. ;research;R +https://github.com/pik-piam/mrdownscale;;research;R +https://github.com/pik-piam/mrdrivers;Create GDP and population scenarios;research;R +https://github.com/pik-piam/mredgebuildings;;research;R +https://github.com/pik-piam/mredgetransport;;research;R +https://github.com/pik-piam/mrfable;Tool for easy handling of FABLE project data (India Foodcrop);research;HTML +https://github.com/pik-piam/mrfactors;;research;R +https://github.com/pik-piam/mrfeed;;research;R +https://github.com/pik-piam/mrfish;calculations connected to fish and aquaculture;research;R +https://github.com/pik-piam/mrland;;research;R +https://github.com/pik-piam/mrmagpie;The package provides cellular magpie related data via the madrat framework.;research;R +https://github.com/pik-piam/mrremind;The mrremind packages contains data preprocessing for the REMIND model.;research;R +https://github.com/pik-piam/mrsoil;Package contains soil organic carbon cycling model based on IPCC Guidelines 2019 for data prepared in the madrat universe. ;research;R +https://github.com/pik-piam/mrtech;;no_research; +https://github.com/pik-piam/mrtransport;;research;R +https://github.com/pik-piam/mrtutorial;Tutorial for mr- world packages, made as part of MAgPIE workshop;research;R +https://github.com/pik-piam/mrvalidation;Package contains routines to prepare data for validation exercises.;research;R +https://github.com/pik-piam/mrvalidnitrogen;Madrat Sublibrary with validation-style reporting of nitrogen budgets;research;R +https://github.com/pik-piam/mrwaste;MADRAT-linked package calculates municipal solid waste projections and environmental impacts, doi.org/10.1088/1748-9326/ab8659;research;R +https://github.com/pik-piam/mrwater;MAgPIE water preprocessing;research;R +https://github.com/pik-piam/mrwaterplots;Plotting functions for water-specific output analysis of mrwater library;research;R +https://github.com/pik-piam/mstools;tool functions that can be used by several madrat-dependent or magpie4 output functions.;research;R +https://github.com/pik-piam/piamenv;;research;R +https://github.com/pik-piam/piamInterfaces;;research;R +https://github.com/pik-piam/piamMappings;;no_research;R +https://github.com/pik-piam/piktests;;research;R +https://github.com/pik-piam/primap;Coordination of primap development;no_research;Jupyter Notebook +https://github.com/pik-piam/project_interfaces;Project specific interfaces to REMIND / MAgPIE.;research;R +https://github.com/pik-piam/quitte;Bits and pieces of code to use with quitte-style data frames;research;R +https://github.com/pik-piam/r2databus;;research;R +https://github.com/pik-piam/regressionworlddata;Model estimates parameters of model functions.;research;R +https://github.com/pik-piam/remind;Contains the REMIND-specific routines for data and model output manipulation.;research;R +https://github.com/pik-piam/remind2;The remind2 package contains the REMIND-specific routines for data and model output manipulation.;research;R +https://github.com/pik-piam/remindPypsa;;research;R +https://github.com/pik-piam/remulator;A collection of R tools for fitting model results.;research;R +https://github.com/pik-piam/rfp;;no_research;R +https://github.com/pik-piam/rmndt;Tools for data.table objects in the REMIND context. (Dis-)Aggregation, magpie conversion, interpolation etc.;research;R +https://github.com/pik-piam/rOpenscmRunner;Run different simple climate models from R using a unified interface;research;R +https://github.com/pik-piam/shinyresults;R package with shiny modules and apps to analyze model results;research;R +https://github.com/pik-piam/trafficlight;The package contains tools for data validation and aggregation of validation results.;research;R +https://github.com/pik-piam/universe;;no_research; +https://github.com/pratik98/Android-Demos;Learning by doing. samples for proof of concepts.;no_research;Java +https://github.com/pratik98/Android-SMS-Gateway;Testing SMS based applications using simple SMS Gateway built using Android.;no_research;Java +https://github.com/pratik98/Data-Science-and-Business-Analytics-19;Class Notebooks and Exercises for Winter Semeter 19-20;no_research;Jupyter Notebook +https://github.com/pratik98/Deep-Learning-HPI-2020;Summer Semester 2020 Course from HPI;no_research;Jupyter Notebook +https://github.com/pratik98/HPI-DistributedDataManagement;Assignments for the Distributed Data Management course for winter term 2019/2020 ;no_research;Java +https://github.com/pratik98/indian-news-articles;;no_research;Jupyter Notebook +https://github.com/pratik98/List-of-awesome-lists;Collection of all the lists.;no_research; +https://github.com/pratik98/Machine-LearningSummer2020;Assignments for Machine Learning Course.;no_research;Jupyter Notebook +https://github.com/pratik98/Mailer;send email from the huge list;no_research;Python +https://github.com/pratik98/MVVM_Poc;Simple implimentation of MVVM Pattern using WPF and C#.NET;no_research;C# +https://github.com/pratik98/OOPConcepts;Small POC programs for object oriented programming concepts;no_research;C# +https://github.com/pratik98/Papers;Collection of Papers i read;no_research; +https://github.com/pratik98/pratik98;;no_research; +https://github.com/pratik98/pratik98.github.com;Personal Website and Blog;no_research;CSS +https://github.com/pratik98/pythonscripts;few python automation scripts from Quora thread ;no_research;Python +https://github.com/pratik98/Reddit-OAuth;Simple Reddit OAuth 2.0 user authentication for Android.;no_research;Java +https://github.com/pratik98/Reddit-Saved-Posts-Offline;Read your saved items from reddit offline.;no_research;Java +https://github.com/pratik98/RSS-Reader-for-Android;This is a simple RSS feeds reader app for android which wrote back in 2011 as my college project.;no_research;Java +https://github.com/pratik98/Runtime-Resource-overlay-Overlay-Package;Adding and Updating android resources using Runtime Resource Overlay. ;no_research;Java +https://github.com/pratik98/Runtime-Resource-overlay-Target-Package;Simple implementation of Sony's Runtime Resource overlay framework for android;no_research;Java +https://github.com/pratik98/Shell-Scripts;Scripts written back in college as a part of operating system course.;no_research;Shell +https://github.com/pratik98/Social-Media-Seminar-19;Code for the Tutorial ;no_research;Jupyter Notebook +https://github.com/pratik98/SocialMediaResearch;R Assignments for Winter Semester 19-20;no_research; +https://github.com/pratik98/Softfile;My first ever web project. ;no_research;HTML +https://github.com/pratik98/WSB-Data-Science-Internship;Data and Code for WSB AMCIS 2022 paper;no_research;Jupyter Notebook +https://github.com/pratik98/XMLToDB;Convert XML metadata into database tables ;no_research;C# +https://github.com/pseudo-rnd-thoughts/Elastic-Resource-Allocation;Research project on Resource-elastic tasks for edge cloud computing;research;Jupyter Notebook +https://github.com/pseudo-rnd-thoughts/Online-Flexible-Resource-Allocation;Flexible resource allocation for edge cloud computing with reinforcement learning;no_research;TeX +https://github.com/pseudo-rnd-thoughts/pseudo-rnd-thoughts;;no_research; +https://github.com/pvjeetze/github-slideshow;A robot powered training repository :robot:;no_research;Ruby +https://github.com/pvjeetze/Heterogeneity-RootWaterUptake;MATLAB code for modelling root water uptake in heterogeneous soil ;research;MATLAB +https://github.com/pweigmann/gwpdata;;no_research;R +https://github.com/pweigmann/harmonic-power-flow;"""Julia-Based Open Source Software Module for Harmonic Power Flow"", Master thesis by Pascal Weigmann, TU Berlin.";research;Python +https://github.com/pweigmann/HarmonicPowerFlow.jl;A simple and fast module to solve the harmonic power flow problem for given distribution grids.;no_research;Julia +https://github.com/PwnerHarry/CLIA;"LaTeX source code and MATLAB implementation for paper ""A Many-Objective Evolutionary Algorithm With Two Interacting Processes: Cascade Clustering and Reference Point Incremental Learning"".";research;TeX +https://github.com/PwnerHarry/DQN;A PyTorch Implementation of DQN;research;Python +https://github.com/PwnerHarry/EPS2PDF;eps to small-sized pdf converter;no_research;TeX +https://github.com/PwnerHarry/META;"Python implementation of ""META-Learning State-based Eligibility Traces for More Sample-Efficient Policy Evaluation""";research;Python +https://github.com/PwnerHarry/SOOPLAT;A convenient PLATform for Single Objective Optimization;research;C++ +https://github.com/PwnerHarry/Stronger_GCN;"Implementations of ""Break the Ceiling: Stronger Multi-scale Deep Graph Convolutional Networks""";research;TeX +https://github.com/PwnerHarry/Viper-Interpreter;A compiler for a subset of Python using different techs under Windows;no_research;M4 +https://github.com/PwnerHarry/WSL2-CUDA;Configuration for WSL2 + Ubuntu + CUDA + CuDNN;no_research;Shell +https://github.com/qgallouedec/deep_rl;Single-file truly minimal implementation of state-of-the-art reinforcement learning algorithms.;no_research;Python +https://github.com/qgallouedec/desinformation;Dataviz project about désinformation;no_research;HTML +https://github.com/qgallouedec/dmc_gym;;no_research;Python +https://github.com/qgallouedec/drl-grasping;Deep Reinforcement Learning for Grasping;no_research;Python +https://github.com/qgallouedec/fake_repo_for_issue_form;;no_research; +https://github.com/qgallouedec/franka_python;Real OpenAI gym interface for Franka Emika Panda robot;no_research;Python +https://github.com/qgallouedec/GAN_and_cGAN;BE 2 GAN and cGAN;no_research;Jupyter Notebook +https://github.com/qgallouedec/gym-continuous-maze;Continuous maze environment integrated with OpenAI/Gym;no_research;Python +https://github.com/qgallouedec/image_classification_instructions;;no_research; +https://github.com/qgallouedec/lge;;no_research;Jupyter Notebook +https://github.com/qgallouedec/Mesh_Computationnal_Geometry;;no_research;C++ +https://github.com/qgallouedec/panda-gym;Set of robotic environments based on PyBullet physics engine and gymnasium.;research;Python +https://github.com/qgallouedec/personal-website;https://qgallouedec.netlify.app;no_research;Jupyter Notebook +https://github.com/qgallouedec/predicting_response_times;Predicting response times of the Paris Fire Brigade vehicles;no_research;Python +https://github.com/qgallouedec/pygazebo_ros;;no_research;Python +https://github.com/qgallouedec/qgallouedec;;no_research; +https://github.com/qgallouedec/rl_transformer;;no_research; +https://github.com/qgallouedec/semantic_segmentation;BE3 Computer vision;research;Python +https://github.com/qxcv/asnets;Source for Action Schema Networks paper (AAAI'18);research;PDDL +https://github.com/qxcv/caffe2keras;Fork of the caffe2keras converter from @MarcBS (UNMAINTAINED);no_research;Python +https://github.com/qxcv/comp2550;My code and reports for the S1, 2015 offering of COMP2550 (R&D Methods) at ANU;no_research;CSS +https://github.com/qxcv/comp2560;My project for the Semester 2, 2015 offering of COMP2560 (Studies in Advanced Computing R&D) at ANU;research;Matlab +https://github.com/qxcv/engn4528-project-public;Public release of ENGN4528 project (vision at ANU) with @KuangyiXing;research;Python +https://github.com/qxcv/hatta-export;Export pages from a Hatta wiki to HTML;no_research;Python +https://github.com/qxcv/joint-regressor;Regressing joints for fun and profit;no_research;Matlab +https://github.com/qxcv/lwsh;Yet another Tinychat replacement for the LessWrong study hall;no_research;JavaScript +https://github.com/qxcv/magical;The MAGICAL benchmark suite for robust imitation learning (NeurIPS 2020);research;Python +https://github.com/qxcv/magical-data;Demonstration data for the MAGICAL imitation learning benchmark suite;no_research; +https://github.com/qxcv/mtil;Multi-task imitation learning algorithms for the MAGICAL benchmark;no_research;Python +https://github.com/qxcv/pose-prediction;;no_research;Python +https://github.com/qxcv/rerank-lite;;no_research;Matlab +https://github.com/qxcv/research-agents;LLM tool for discovering interesting things about a paper by chaining through the papers that cite it;no_research;HTML +https://github.com/qxcv/structuredinference;DMMs for human pose forecasting. Fork of clinicalml/structuredinference (disassociated by Github because it was private for a while);research;Jupyter Notebook +https://github.com/qxcv/vdb-irl;Inverse reinforcement learning experiments from variational discriminator bottleneck (VDB) paper (https://openreview.net/pdf?id=HyxPx3R9tm);no_research;Python +https://github.com/rajammanabrolu/Automated-Story-Generation;;research; +https://github.com/rajammanabrolu/C2PO;Automated Storytelling via Causal, Commonsense Plot Ordering;research;Python +https://github.com/rajammanabrolu/CRD3-extended;Data accompanying the SIGDIAL-2021 paper https://arxiv.org/abs/2105.15054 Telling Stories through Multi-User Dialogue by Modeling Character Relations by Wai Man Si, Prithviraj Ammanabrolu, Mark O. Riedl;research; +https://github.com/rajammanabrolu/humansimulator2016;;no_research;Python +https://github.com/rajammanabrolu/KG-A2C;Goal driven language generation using knowledge graph A2C agents;research;Python +https://github.com/rajammanabrolu/KG-DQN;;research;Python +https://github.com/rajammanabrolu/Q-BERT;Agents that build knowledge graphs and explore textual worlds by asking questions;research;Python +https://github.com/rajammanabrolu/repository;;no_research;Java +https://github.com/rajammanabrolu/StoryRealization;;research;Python +https://github.com/rajammanabrolu/Translator;;no_research;Java +https://github.com/rajammanabrolu/WorldGeneration;Generating Interactive Fiction worlds from story plots;research;Python +https://github.com/rajcscw/google-word2vec-demo;A demo of using google's pre-trained word2vec model;no_research;Python +https://github.com/rajcscw/minimalistic-ml;A collection of basic ML programs;no_research;Jupyter Notebook +https://github.com/rajcscw/nlp-gym;NLPGym - A toolkit to develop RL agents to solve NLP tasks.;research;Python +https://github.com/rajcscw/pytorch-optimize;A simple black-box optimization framework to train your pytorch models for optimizing non-differentiable objectives;research;Python +https://github.com/rajcscw/spsa-optimization;Repository to implement SPSA;no_research;Python +https://github.com/rakshitgondwal/Affixity;;no_research;HTML +https://github.com/rakshitgondwal/autocom;;no_research;Go +https://github.com/rakshitgondwal/Basic-web-server-Go;;no_research;Go +https://github.com/rakshitgondwal/blogs;;no_research; +https://github.com/rakshitgondwal/Calculator-program-java;;no_research;Java +https://github.com/rakshitgondwal/clusterify;Create/Delete Kubernetes Clusters on your Cloud Provider with the Clusterify Operator;no_research;Go +https://github.com/rakshitgondwal/CodeForge;Team of four creating astonishing stuff;no_research; +https://github.com/rakshitgondwal/Daily-Journal;;no_research;EJS +https://github.com/rakshitgondwal/Dice-Roll-Website;;no_research;HTML +https://github.com/rakshitgondwal/docker-compose-practice;;no_research; +https://github.com/rakshitgondwal/docker-node-app;;no_research;JavaScript +https://github.com/rakshitgondwal/Drum-kit-website;;no_research;JavaScript +https://github.com/rakshitgondwal/Emojipedia;;no_research;JavaScript +https://github.com/rakshitgondwal/First-CSS-Website;;no_research;HTML +https://github.com/rakshitgondwal/First-HTML-Website;;no_research;HTML +https://github.com/rakshitgondwal/First-Website-Using-Bootstrap;;no_research;HTML +https://github.com/rakshitgondwal/gha-projects-practice;;no_research; +https://github.com/rakshitgondwal/go-auth-api;;no_research;Go +https://github.com/rakshitgondwal/go-cards;;no_research;Go +https://github.com/rakshitgondwal/gsoc-2023;This repository contains information about my work in the Google Summer of Code 2023. I worked under the CNCF organization for the Keptn Project and my project was to enable Querying Metrics over a Timeframe for the metrics operator.;no_research; +https://github.com/rakshitgondwal/Jeevika;;no_research;HTML +https://github.com/rakshitgondwal/kcd-mumbai-demo;;no_research; +https://github.com/rakshitgondwal/keptn-aggregation-demo;;no_research; +https://github.com/rakshitgondwal/keptn-contributor-meet-demo;;no_research; +https://github.com/rakshitgondwal/keptndemo-1.2.0;;no_research; +https://github.com/rakshitgondwal/keptndemo-latest;;no_research; +https://github.com/rakshitgondwal/klt-timerange-demo;;no_research; +https://github.com/rakshitgondwal/kubebuilder-admission-controller;;no_research;Go +https://github.com/rakshitgondwal/kyverno-task;;no_research; +https://github.com/rakshitgondwal/Leetcode-Practice;;no_research;Java +https://github.com/rakshitgondwal/mongo-k8s;;no_research; +https://github.com/rakshitgondwal/Netflix-Clone;;no_research;HTML +https://github.com/rakshitgondwal/Newsletter-signup-website;;no_research;HTML +https://github.com/rakshitgondwal/portfolio-website;;no_research;JavaScript +https://github.com/rakshitgondwal/prom-tut;;no_research;Python +https://github.com/rakshitgondwal/prometheus-tut;;no_research; +https://github.com/rakshitgondwal/rakshitgondwal;;no_research; +https://github.com/rakshitgondwal/riki-bot;;no_research;Python +https://github.com/rakshitgondwal/scaler-operator;;no_research;Go +https://github.com/rakshitgondwal/scaler-operator-kubebuilder;;no_research;Go +https://github.com/rakshitgondwal/seniority;;no_research;JavaScript +https://github.com/rakshitgondwal/Simon-Game;;no_research;JavaScript +https://github.com/rakshitgondwal/swagger-api-doc;;no_research;Go +https://github.com/rakshitgondwal/ToDo-List;;no_research;JavaScript +https://github.com/rakshitgondwal/validating-admission-controller;;no_research;Go +https://github.com/rakshitgondwal/vitality;SIH project code for Team Vitality;no_research;Jupyter Notebook +https://github.com/rakshitgondwal/zzzz;;no_research;HTML +https://github.com/remindmodel/pre-processing;;no_research;R +https://github.com/remindmodel/remind;REMIND - REgional Model of INvestments and Development;research;GAMS +https://github.com/Renato-Rodrigues/Assembly-voting-combinations;Number of combinations for n companies clustering to n possible different plans;no_research;HTML +https://github.com/Renato-Rodrigues/EU_2040_transformation;2040 greenhouse gas reduction targets and energy transitions in line with the EU Green Deal;research;HTML +https://github.com/Renato-Rodrigues/remind_map;SCript to create visualization of REMIND regions;no_research;HTML +https://github.com/rgieseke/base16-textadept;Base16 themes for the Textadept editor;no_research;Lua +https://github.com/rgieseke/blogtest;Testing a blog with Quarto;no_research;JavaScript +https://github.com/rgieseke/cite;Command line tool to get bibliography e.g. BibTex entries;no_research;Python +https://github.com/rgieseke/energy-emissions-websites;;no_research; +https://github.com/rgieseke/locco;Locco is Docco in Lua.;no_research;Lua +https://github.com/rgieseke/mastodon-feed-embed;Test repo for feed embedding;no_research;HTML +https://github.com/rgieseke/opencoviddata;Code to download Covid-19 data from RKI SurvStat;research;Python +https://github.com/rgieseke/pandas-datapackage-reader;Data Package reader for Pandas;no_research;Python +https://github.com/rgieseke/pyEasybus;Python Interface for Easybus Devices.;no_research;Python +https://github.com/rgieseke/pyMassstream;Python Interface for Massstream Devices.;no_research;Python +https://github.com/rgieseke/pySartorius;Python Interface for Sartorius Scales.;no_research;Python +https://github.com/rgieseke/scintillua;Git mirror of Mitchell's Scintillua lexers;no_research;Lua +https://github.com/rgieseke/shortcountrynames;Data Package with short country names;no_research;Python +https://github.com/rgieseke/ta-bibtex;BibTeX module for Textadept.;no_research;Lua +https://github.com/rgieseke/ta-coffeescript;CoffeeScript module for Textadept.;no_research;Lua +https://github.com/rgieseke/ta-common;Some modifications for the Textadept editor. ;no_research;Lua +https://github.com/rgieseke/ta-markdown;Markdown module for Textadept.;no_research;Lua +https://github.com/rgieseke/ta-moonscript;A MoonScript module for the Textadept editor - written in MoonScript;no_research;Lua +https://github.com/rgieseke/textadept-go;A Go module for the Textadept editor;no_research;Lua +https://github.com/rgieseke/textadept-lexers;Lexers for Textadept/Scintillua.;no_research;Lua +https://github.com/rgieseke/textadept-mirror;Git mirror of Mitchell's Textadept editor;no_research; +https://github.com/rgieseke/textadept-orgmode;;no_research;Lua +https://github.com/rgieseke/textadept-portable;A portable launcher for the Textadept editor.;no_research;Shell +https://github.com/rgieseke/textadept-python;Python module for Textadept.;no_research;Python +https://github.com/rgieseke/textredux;Text-based interfaces for Textadept;no_research;Lua +https://github.com/rizar/actor-critic-public;"The source code for ""An Actor Critic Algorithm for Structured Prediction""";research;Jupyter Notebook +https://github.com/rizar/adadelta;Investigating AdaDelta;no_research;Python +https://github.com/rizar/attention-lvcsr;End-to-End Attention-Based Large Vocabulary Speech Recognition;research;Python +https://github.com/rizar/blocks-benchmarks;Speed benchmarks for blocks;no_research;Python +https://github.com/rizar/CLOSURE;Systematic generalization test for CLEVR;research;Python +https://github.com/rizar/config;My config files;no_research;Vim script +https://github.com/rizar/digits;Spoken digits recognition;no_research;Matlab +https://github.com/rizar/groundhog-private;A private copy of groundhog;no_research;Python +https://github.com/rizar/ift6266h16;My course work for IFT6266h16;no_research;Python +https://github.com/rizar/LabChecker;Automatic system to check labs on raster graphics.;no_research;Java +https://github.com/rizar/matrix;Java matrix library.;no_research;Java +https://github.com/rizar/NMT;;no_research;Python +https://github.com/rizar/rizar-3d;My small project in computer graphics.;no_research;C++ +https://github.com/rizar/rossvs;support vector shapes for ros;no_research;C++ +https://github.com/rizar/scan-grad-speed;Investigations of theano scan gradient speed;no_research;Python +https://github.com/rizar/svs;Topic in Robotics Project;no_research;C++ +https://github.com/rizar/svsreport;report;no_research;TeX +https://github.com/rizar/systematic-generalization-sqoop;"Code for ""Systematic Generalization: What Is Required and Can It Be Learned""";research;Python +https://github.com/rizar/three-file-tic-tac-toe;A simplified starting template for the tic-tac-toe example from the react tutorial;no_research;JavaScript +https://github.com/rizar/tle-mnist;Task Loss Estimation for MNIST-Derived Toy Problems;no_research;Python +https://github.com/rizar/win-them-all;Programming competitions calendar.;no_research;Python +https://github.com/rmiddelanis/harvey_scaling;;no_research;Python +https://github.com/rmiddelanis/master-thesis;An Evaluation of Layer Transferabilty for Temporal Convolutional Networks;no_research;Python +https://github.com/rmiddelanis/rmiddelanis;Config files for my GitHub profile.;no_research; +https://github.com/rmiddelanis/sandy_paper;;research;Jupyter Notebook +https://github.com/robertpietzcker/testCSV;;no_research; +https://github.com/Rocamonde/catevap;Cellular automata simulator for evaluating autonomous traffic policies;research;Python +https://github.com/Rocamonde/lion-language;High level, idiomatic scripting language for agnostic telemetry programming with the `savannah` project.;no_research;Python +https://github.com/Rocamonde/marimba;Library for training deep neural networks for the classification of astronomical time series data.;no_research;Python +https://github.com/Rocamonde/Rocamonde;Config files for my GitHub profile.;no_research; +https://github.com/Rocamonde/savannah-framework;Telemetry framework for advanced real-time data harvesting and monitoring.;research;Python +https://github.com/rockt/ChemSpot;ChemSpot is a named entity recognition tool for identifying mentions of chemicals in natural language texts, including trivial names, drugs, abbreviations, molecular formulas and IUPAC entities. Since the different classes of relevant entities have rather different naming characteristics, ChemSpot uses a hybrid approach combining a Conditional Random Field with a dictionary. ChemSpot is released under the Common Public License 1.0.;research;Java +https://github.com/rockt/dl4nlp;;no_research;Jupyter Notebook +https://github.com/rockt/public-talks;;no_research;Jupyter Notebook +https://github.com/rockt/SETH;SNP Extraction Tool for Human Variations;no_research;Java +https://github.com/rockt/simplexnlp;Simple extensible lightweight NLP framework;no_research;Scala +https://github.com/rockt/sprawl;;no_research;Scala +https://github.com/rodrigodelazcano/AerialRobotics;;no_research;Python +https://github.com/rodrigodelazcano/AI_Planning_Grocery;;no_research;Python +https://github.com/rodrigodelazcano/Asymmetric-Self-Play;Reinforcement Learning for Industrial Manipulation;no_research;Python +https://github.com/rodrigodelazcano/d4rl-minari-dataset-generation;Scripts to recreate the D4RL datasets with Minari;research;Python +https://github.com/rodrigodelazcano/ENPM661;;no_research;Jupyter Notebook +https://github.com/rodrigodelazcano/ENPM673;;no_research; +https://github.com/rodrigodelazcano/Robot-Learning;;no_research;Python +https://github.com/rodrigodelazcano/rodrigodelazcano;;no_research; +https://github.com/rodrigodelazcano/validate-mujoco-bindings-gym-robotics;Benchmark for the Gym Robotics environments with the new Python MuJoCo bindings;no_research;Python +https://github.com/rolandgvc/Algorithmic-Box;My algorithms for Coursera's Algorithmic Toolbox (part of the Algorithms and Data Structures Specialization);no_research;C++ +https://github.com/rolandgvc/applied-dl-sdc;Line Detection Project (with Keras);no_research;Jupyter Notebook +https://github.com/rolandgvc/deep-learning-templates;Modular Deep Learning Project Templates;no_research;Python +https://github.com/rolandgvc/Dynamic-Memory;University Project;no_research;C +https://github.com/rolandgvc/flaxvision;A selection of neural network models ported from torchvision for JAX & Flax.;no_research;Python +https://github.com/rolandgvc/hello-anchor;Playing with ideas in Anchor;no_research;TypeScript +https://github.com/rolandgvc/nexhack;solana hackathon entry;no_research;TypeScript +https://github.com/rolandgvc/node-course2-webserver;;no_research;JavaScript +https://github.com/rolandgvc/opencv-python;Open CV practice playground in Python;no_research;Jupyter Notebook +https://github.com/rolandgvc/opencv-webinar;Materials for Udacity's Study Jam Webinar;no_research;Jupyter Notebook +https://github.com/rolandgvc/python-gym;;no_research;Python +https://github.com/rolandgvc/sol-escrow-anchor;Solana escrow program written with Anchor.;no_research;Rust +https://github.com/rolandgvc/sol-escrow-rust;Solana escrow program written in vanilla Rust;no_research;Rust +https://github.com/rolandgvc/stanford-berkeley-ai;Repository of taken AI graduate courses from Stanford and UC Berkeley with annotated notes and assignment solutions.;no_research;Python +https://github.com/rolandgvc/To-Do-jQuery;Simple To Do app made with jQuery;no_research;CSS +https://github.com/rolandgvc/Traffic-Simulator;Traffic Simulation program written in Java;no_research;Java +https://github.com/rolandgvc/udacity-projects;Repository of completed Udacity Nanodegree projects;no_research;Jupyter Notebook +https://github.com/rtaori/Black-Box-Audio;Targeted Adversarial Examples for Black Box Audio Systems;research;Python +https://github.com/rtaori/data_feedback;"Code for the paper ""Data Feedback Loops: Model-driven Amplification of Dataset Biases""";research;Jupyter Notebook +https://github.com/rtaori/hurricane-rl;Deep Reinforcement Learning for Hurricane Path Prediction;no_research;Python +https://github.com/rtaori/interstellar-scaling-laws;;no_research; +https://github.com/rtaori/LZW-Text-Compression;My implementation of a LZW dictionary-based text compression algorithm.;no_research;Java +https://github.com/rtaori/Messenger-Client;Messenger chat application, client side.;no_research;Java +https://github.com/rtaori/Messenger-Server;Messenger chat application, server side.;no_research;Java +https://github.com/saleml/baby-ai-game-tests;;no_research;Python +https://github.com/saleml/continuous-gfn;;no_research;Jupyter Notebook +https://github.com/saleml/IFT6135H18;Repo for our assignments for the https://ift6135h18.wordpress.com/ class (MILA - DIRO - UDEM - Pr. Aaron Courville);no_research;Jupyter Notebook +https://github.com/saleml/IFT6269-2018F;Homeworks/project for the Probabilistic Graphical Models class given at Universite de Montreal in Fall 2018;no_research;Jupyter Notebook +https://github.com/saleml/mcdeup;;no_research;Jupyter Notebook +https://github.com/saleml/pgm-rws;name to be changed later if needed;no_research;Jupyter Notebook +https://github.com/sanderland/grouphug;Multi-task modelling extensions for huggingface transformers;no_research;Python +https://github.com/sanderland/gutsygit;Makes git usage extremely fast by making some gutsy assumptions.;no_research;Python +https://github.com/sanderland/katrain;Improve your Baduk skills by training with KataGo!;no_research;Python +https://github.com/sanderland/katrain-bots;Bots running on OGS based on katrain;no_research;Jupyter Notebook +https://github.com/sanderland/pysgf;Small and simple SGF parser for python;no_research;Python +https://github.com/sanderland/SelfplayLab;Implementation of the alphago zero algorithm with some small games for experimenting with reinforcement learning;no_research;Jupyter Notebook +https://github.com/sanderland/tsumego;Ten Thousand Tsumego App;no_research;Python +https://github.com/sawcordwell/HSK-Vocab;HSK (Hanyu Shuiping Kaoshi) Word Lists;no_research; +https://github.com/sawcordwell/MDPs.jl;Julia package for working with Markov decision processes (MDPs);research;Julia +https://github.com/sawcordwell/pymdptoolbox;Markov Decision Process (MDP) Toolbox for Python;research;Python +https://github.com/sawcordwell/SpatialGraphs.jl;;no_research;Julia +https://github.com/ScheiklP/lap_gym;Meta-repository of the LapGym project;research; +https://github.com/ScheiklP/ScheiklP;;no_research; +https://github.com/ScheiklP/sofa_env;Reinforcement learning environments for robot-assisted laparoscopic surgery;research;Python +https://github.com/ScheiklP/sofa_godot;The SOFA-Godot Plugin - Create SOFA scenes in Godot!;research;GDScript +https://github.com/ScheiklP/sofa_zoo;Reinforcement learning scripts for sofa_env environments.;research;Python +https://github.com/ScheiklP/SrsTyper;A learning command line tool to practice typing.;no_research;Python +https://github.com/sduslu/data-derp;;no_research;Jupyter Notebook +https://github.com/sduslu/docker-react;;no_research;JavaScript +https://github.com/sduslu/multi-docker;;no_research;JavaScript +https://github.com/sduslu/twu-biblioteca-svenja;;no_research;Java +https://github.com/SebastianFra/Aviation_Demand_Projections;Open-Source Model to analyse aviation demand in a post-pandemic world;no_research;R +https://github.com/SebastianFra/SEACARTO;Gravity model of maritime trade featuring narratives of antagonism;no_research;Python +https://github.com/SebastianFra/SEAMAPS;;no_research;Julia +https://github.com/semla/check-api-keys;;no_research;JavaScript +https://github.com/semla/meteo-next-react;My first experiment with React and Nextjs;no_research;TypeScript +https://github.com/semla/notebooks;;no_research;Jupyter Notebook +https://github.com/sgillen/408i;Quick and dirty code to drive a robot that follows a robot that follows a ball.;no_research;Python +https://github.com/sgillen/apg;Experiments with Analytic Policy Gradients;no_research;Jupyter Notebook +https://github.com/sgillen/aq_bars;Interfacing a Novint Falcon with a LynxMotion AL5D arm for haptic teleoperation. (It's a fist bumping robot);no_research;C++ +https://github.com/sgillen/bball;;no_research;Jupyter Notebook +https://github.com/sgillen/better_benchmarks;;no_research;Jupyter Notebook +https://github.com/sgillen/contact;How do contact dynamics affect learning locomotion policies;no_research;Jupyter Notebook +https://github.com/sgillen/fractal_mesh;Code to analyze policies trained with a reinforcement learning method that encourages low fractional dimension trajectories.;research;Jupyter Notebook +https://github.com/sgillen/fractal_rl;Code for CORL 2020 paper: Explicitly Encouraging Low Fractional Dimensional Trajectories Via Reinforcement Learning.;research;Jupyter Notebook +https://github.com/sgillen/fractal_rl_scratch;;research;Jupyter Notebook +https://github.com/sgillen/gan_art;Exploring art from Generative Adversarial Networks.;research;Python +https://github.com/sgillen/init.el;my emacs init file;no_research;Emacs Lisp +https://github.com/sgillen/julia_jl;Julia fractals in Julia Lang;no_research;Jupyter Notebook +https://github.com/sgillen/LC-Simulation;Matlab scripts and Mathematica notebooks to simulate nematic liquid crystals. ;no_research;Mathematica +https://github.com/sgillen/lorenz;;no_research;Jupyter Notebook +https://github.com/sgillen/matlab_ars;Augmented Random Search for Reinforcement Learning in Matlab;research;MATLAB +https://github.com/sgillen/matlab_gym_bridge;Train your matlab reinforcement learning environments with python;no_research;Jupyter Notebook +https://github.com/sgillen/misc;Miscellaneous code;no_research;Jupyter Notebook +https://github.com/sgillen/policy_refinement;;no_research;Jupyter Notebook +https://github.com/sgillen/seagul;A utility library for research in robotics and deep reinforcement learning. ;no_research;Python +https://github.com/sgillen/seajul;Some Julia Code;no_research;Jupyter Notebook +https://github.com/sgillen/sensel-visualizer;Visualizer for the Sensel Morph (https://sensel.com), this one displays the raw force data rather than contacts, it will also save the visualization as a .mp4 and an npy/mat file. You should take a look at the top of visualizer.py for hints on how to use it. ;no_research;Python +https://github.com/sgillen/sgillen_resume;My resumes latex ;no_research;TeX +https://github.com/sgillen/ssac;switched soft actor critic;no_research;Jupyter Notebook +https://github.com/sgillen/switching_control;Switching between policies obtained with ARS.;no_research;Jupyter Notebook +https://github.com/sgillen/walker_sim;Matlab Simulation for studying planar walking robots.;no_research;MATLAB +https://github.com/shwang/alignmentstudy;variants of Inverse Reinforcement Learning;no_research;Python +https://github.com/shwang/count_pile_name_freq;;no_research;Jupyter Notebook +https://github.com/shwang/github-actions-for-packages;;no_research;JavaScript +https://github.com/shwang/goalstructure;;no_research;Python +https://github.com/shwang/mc_scripts;Tooling;no_research;Python +https://github.com/shwang/MOTD-swapper;;no_research;Roff +https://github.com/shwang/NNG;building off of pomonam/NoisyNaturalGradient.;research;Python +https://github.com/shwang/packet-tools;;no_research;Go +https://github.com/shwang/pedestrian_prediction;"realtime, confidence-varying trajectory prediction for ""Probabilistically Safe Robot Planning with Confidence-Based Human Predictions"". RSS '18";research;Python +https://github.com/shwang/VectorFieldsStudy;;no_research;ActionScript +https://github.com/shwang/VillageDivinatorPlugin;output village coordinates;no_research;Java +https://github.com/SiddarGu/434CSAdvisingApp;CS Department Advising App for CMSC434;no_research;HTML +https://github.com/SiddarGu/BFI;The 2022 version, including both critics' and directors' polls;no_research;HTML +https://github.com/SiddarGu/DnD;;no_research;Jupyter Notebook +https://github.com/SiddarGu/Flutter-ChatGPT;;no_research;Dart +https://github.com/SiddarGu/Flutter-TheDay;;no_research;C++ +https://github.com/SiddarGu/Flutter-Tracker;;no_research;C++ +https://github.com/SiddarGu/minigrid-doc;Code for Gym documentation website ;no_research; +https://github.com/SiddarGu/NotesOnDataStructures;;no_research;Java +https://github.com/SiddarGu/Old-Website;Feng's Web Page;no_research; +https://github.com/SiddarGu/Performance-of-FCs-in-the-UK;;no_research;Jupyter Notebook +https://github.com/SiddarGu/Question-Generation;;no_research;Jupyter Notebook +https://github.com/SiddarGu/React-Native-App-Demo;;no_research; +https://github.com/SiddarGu/Satisfactory-Material-Calculator;An application to calculate materials needed in the game Satisfactory;no_research;Python +https://github.com/SiddarGu/SiddarGu;Config files for my GitHub profile.;no_research; +https://github.com/SiddarGu/SnakeGame;Snake Game Java Implementation;no_research;Java +https://github.com/SiddarGu/Sudoku;Using Java to solve a Sudoku;no_research;Java +https://github.com/SiddarGu/TheDay;;no_research;Dart +https://github.com/SiddarGu/Vlr.gg-Comprehensive-Data;;no_research;Jupyter Notebook +https://github.com/SiddarGu/Web-Page-Entry;;no_research;JavaScript +https://github.com/SiddarGu/Wordle-Solver;;no_research;Python +https://github.com/sidney-tio/Outlook-msg-reader;Extracting email information from outlook files (.msg) to pandas for further analysis. ;no_research;Python +https://github.com/sidney-tio/predict-bp;Trying out PyTorch Lightning with a Blood Pressure predictor from PPG;no_research;Python +https://github.com/sidney-tio/rl-playground;;no_research;Python +https://github.com/sidney-tio/sidney-tio;Config files for my GitHub profile.;no_research; +https://github.com/sidney-tio/titanickaggl;;no_research; +https://github.com/sidney-tio/WPFB-viz;;no_research;Python +https://github.com/simoninithomas/AI_NANODEGREE-Computer-Vision-Capstone-Project-Facial-Keypoint-Detection-and-Real-time-Filtering;A CNN that make facial keypoint detection and real time filtering;no_research;Jupyter Notebook +https://github.com/simoninithomas/awesome-ai-tools-for-game-dev;A curated list of awesome AI tools for game developers;no_research; +https://github.com/simoninithomas/Baselines_icm;[Work in Progress] ICM plugin for OpenAI Baselines;research;HTML +https://github.com/simoninithomas/CatDCGAN;A DCGAN that generate Cat pictures 🐱‍💻;no_research;Jupyter Notebook +https://github.com/simoninithomas/cifar-10-classifier-pytorch;A simple cifar-10 classifier with PyTorch;no_research;Jupyter Notebook +https://github.com/simoninithomas/deep-rl-course;;no_research; +https://github.com/simoninithomas/deep_q_learning;A DQL implementation with keras;no_research;Jupyter Notebook +https://github.com/simoninithomas/Deep_reinforcement_learning_Course;Implementations from the free course Deep Reinforcement Learning with Tensorflow and PyTorch;no_research;Jupyter Notebook +https://github.com/simoninithomas/DGAN-Implementations;Some DGAN (Deep Generative Adversarial Networks) implementations to generate human faces;no_research;Jupyter Notebook +https://github.com/simoninithomas/DLFN_Face_generator;A Generative Adversarial Network that generate human faces;no_research;Jupyter Notebook +https://github.com/simoninithomas/DLFN_First_neural_network;Deep Learning Foundations Nanodegree. Udacity Project 1: Your first neural network;no_research;HTML +https://github.com/simoninithomas/DLFN_Generate_The_Simpsons_Scripts;An RNN that generates new scripts for the Simpsons' tv show;no_research;HTML +https://github.com/simoninithomas/DLFN_Image_classification;In this project, you'll classify images from the CIFAR-10 dataset. The dataset consists of airplanes, dogs, cats, and other objects. The dataset will need to be preprocessed, then train a convolutional neural network on all the samples. You'll normalize the images, one-hot encode the labels, build a convolutional layer, max pool layer, and fully connected layer. At then end, you'll see their predictions on the sample images.;no_research; +https://github.com/simoninithomas/DLFN_Language_Translation;A Seq-to-seq model that translates English to French;no_research;HTML +https://github.com/simoninithomas/Dog-Breed-Classifier;Convolutional Neural Network that recognizes dog breeds;no_research;Jupyter Notebook +https://github.com/simoninithomas/GAN_implementations;Some GAN (Generative Adversarial Networks) implementations to generate MNIST images;no_research;Jupyter Notebook +https://github.com/simoninithomas/jammo_the_robot;;no_research; +https://github.com/simoninithomas/LittleCoffeeShop;"Little Coffee Shop is an app that helps you to order in a coffee shop called ""Little Coffee Shop"".";no_research;Java +https://github.com/simoninithomas/ml-agents-snowball-fight;A multi-agent environment using Unity ML-Agents Toolkit;no_research; +https://github.com/simoninithomas/MLAgents-Tanks;A multi-agent environment using Unity ML-Agents Toolkit where two agents compete in a 1vs1 tank fight game;no_research; +https://github.com/simoninithomas/model-card-template;Model cards template for SB3 and HF Hub;no_research; +https://github.com/simoninithomas/MoviesHuntNano;Movies Hunt is an Android app that helps user to find the next movie to watch.;no_research;Java +https://github.com/simoninithomas/News-Crawler-Parse-Backend;This is a crawler made with Scrapy.py to crawl french news articles and send them in your Parse.com backend;no_research;Python +https://github.com/simoninithomas/NewsAppRV;NewsAppRV is a demo app made as an example for the article RecyclerView made easy.;no_research;Java +https://github.com/simoninithomas/NewsSwipe;This version is for educational purposes only. The goal is to learn to create android applications with network. I create this app with the help of the excellent course : Udacity Android basics : networking;no_research;Java +https://github.com/simoninithomas/NewsSwipeWebsiteV1.0;First version of NewsSwipe website december 2015;no_research;CSS +https://github.com/simoninithomas/NihongoHanasuKotoGaDekimasu;Android app to learn some basic Japanese vocabulary. Created with the help of the Udacity's course : Android basics, Multiscreen apps;no_research;Java +https://github.com/simoninithomas/PlayBot;PlayBot is an AI that propose games based on user tastes;no_research;JavaScript +https://github.com/simoninithomas/PlayBot_BackEnd;Playbot API in NodeJS;no_research;JavaScript +https://github.com/simoninithomas/PlayBot_website;Website for a fake project : Playbot a bot that proposes games based on user tastes;no_research;HTML +https://github.com/simoninithomas/Policy-Gradient-Doom--;Policy Gradient based agent that tries to survive in an hostile environement by collecting health. ;no_research;Jupyter Notebook +https://github.com/simoninithomas/Policy_gradients_CartPole;A Policy Gradient Learning with CartPole-v0 for Siraj Raval's challenge;research;Jupyter Notebook +https://github.com/simoninithomas/save_thursday_lunch;;no_research; +https://github.com/simoninithomas/save_wednesday;;no_research; +https://github.com/simoninithomas/simonini_thomas_website;First version on my personal website;no_research;CSS +https://github.com/simoninithomas/simonini_thomas_website_new;My new personal website;no_research;JavaScript +https://github.com/simoninithomas/SimpleLinearRegression_PhiladelphiaRateCrime_HousePricePrediction;This Machine Learning model helps us to predict of houses prices in Philadelphia region based on crime rate.;no_research;Jupyter Notebook +https://github.com/simoninithomas/sonictest;;no_research; +https://github.com/simoninithomas/squad_v1.1_for_question_generation;;no_research;Python +https://github.com/simoninithomas/StockHawk;An Android App that displays stock prices;no_research;Java +https://github.com/simoninithomas/style-transfer-pytorch;A Style Transfer agent that applies La Joconde's style to any picture [PROTOTYPE];no_research;Jupyter Notebook +https://github.com/simoninithomas/test;;no_research; +https://github.com/simoninithomas/test2;;no_research; +https://github.com/simoninithomas/test3;;no_research; +https://github.com/simoninithomas/Test_doom_dqn;;no_research;Python +https://github.com/simoninithomas/the_mayan_adventure;The Mayan Adventure is an open-source reinforcement learning environment for Unity ML-Agents. In this environment, you train your agent (Indie) to find the golden statue in this dangerous environment full of traps.;research;ShaderLab +https://github.com/simoninithomas/Time-series-prediction-and-text-generation;Built RNNs that can generate sequences based on input data - with a focus on two applications: used real market data in order to predict future Apple stock prices using an RNN model. The second one will be trained on Sir Arthur Conan Doyle's classic novel Sherlock Holmes and generates wacky sentences based on it that may - or may not - become the next great Sherlock Holmes novel.;no_research;Jupyter Notebook +https://github.com/simoninithomas/unity_ml_agents_course;Learn to create agents in Unity ML using Deep Reinforcement Learning with Tensorflow.;no_research; +https://github.com/simoninithomas/Where_is_my_cat;A series of YOLO experimentations using DarkFlow;no_research; +https://github.com/sosorior/hello-world;;no_research;HTML +https://github.com/sparisi/autoenc;Autoencoders in Tensorflow and Keras;no_research;Python +https://github.com/sparisi/cbet;Change-Based Exploration Transfer;no_research;Python +https://github.com/sparisi/gym_toy;Toy problems for OpenAI Gym;no_research;Python +https://github.com/sparisi/mips;Minimal Policy Search Toolbox;no_research;MATLAB +https://github.com/sparisi/pvr_habitat;Pre-Trained Visual Representations for Control;research;Python +https://github.com/sparisi/td-reg;TD-Regularized Actor-Critic Methods;no_research;MATLAB +https://github.com/sparisi/tensorl;Simple and self-contained TensorFlow implementation of reinforcement learning algorithms for continuous control, integrated with OpenAI Gym and other physics engines.;no_research;Python +https://github.com/sparisi/visit-value-explore;;no_research;MATLAB +https://github.com/stenzelf/biospheremetrics;This repository contains code for an R package to analyze outputs;research;R +https://github.com/stuhlmueller/abstract;Invent abstract functions using anti-unification.;no_research;Scheme +https://github.com/stuhlmueller/active-learner;;no_research;JavaScript +https://github.com/stuhlmueller/ask-reddit;;no_research;Python +https://github.com/stuhlmueller/bayesnet-compiler;Compilation of probabilistic programs to Bayes nets.;no_research;Scheme +https://github.com/stuhlmueller/board;A tiny framework for solving simple multi-agent games.;no_research;Scheme +https://github.com/stuhlmueller/church-oed;Stuff from long ago;no_research;Scheme +https://github.com/stuhlmueller/cosh;Dynamic programming inference by continuation hashing.;no_research;Scheme +https://github.com/stuhlmueller/dialog;;no_research;Python +https://github.com/stuhlmueller/engines;A Scheme library wrapper for various Church inference engines.;no_research;Scheme +https://github.com/stuhlmueller/fast-claims;;no_research;Python +https://github.com/stuhlmueller/gpt.el;A simple Emacs package for calling instruction-following language models;no_research;Emacs Lisp +https://github.com/stuhlmueller/i3;Learning stochastic inverses for amortized inference in Bayesian networks.;no_research;Python +https://github.com/stuhlmueller/isosmc;WebPPL library for specifying sequences of programs for SMC;no_research;JavaScript +https://github.com/stuhlmueller/jschurch;A Church implementation that compiles to Javascript.;no_research;Scheme +https://github.com/stuhlmueller/lightmcmc;Basic Python implementation of the Church MCMC algorithm.;no_research;Python +https://github.com/stuhlmueller/logistician;Prototype computational experiments locally and deploy them to the cloud at scale;no_research;Python +https://github.com/stuhlmueller/mcnets;Adaptive Markov chain networks;no_research;Python +https://github.com/stuhlmueller/neural-nets;;no_research;Python +https://github.com/stuhlmueller/notebooks;My research-related IPython notebooks.;no_research; +https://github.com/stuhlmueller/play;Exploring elicitation and inference of long-term preferences given snap judgments and other side-information;no_research;CSS +https://github.com/stuhlmueller/poke;An interactive environment for probabilistic programming.;no_research;Python +https://github.com/stuhlmueller/pyreject;A tiny library for rejection query inference in Python.;no_research;Python +https://github.com/stuhlmueller/python-tools;Code snippets used in more than one Python project.;no_research;Python +https://github.com/stuhlmueller/sampleme;Stochastic self-sampling app for web and mobile;no_research;JavaScript +https://github.com/stuhlmueller/scheme-listings;Scheme syntax highlighting for the LaTeX listings package.;no_research;TeX +https://github.com/stuhlmueller/scheme-tools;Code snippets used in more than one Scheme project.;no_research;Scheme +https://github.com/stuhlmueller/scheme-transforms;Continuation-passing style and closure conversion transforms for r6rs scheme.;no_research;Scheme +https://github.com/stuhlmueller/scholar-summaries;;no_research;Python +https://github.com/stuhlmueller/sine;Experimental Church implementation that cleanly separates inference and evaluation.;no_research;Scheme +https://github.com/stuhlmueller/smartpages;SmartPages;no_research;JavaScript +https://github.com/stuhlmueller/webppl-dp;Dynamic programming utilities for webppl;no_research;JavaScript +https://github.com/stuhlmueller/webppl-intercache;;no_research;Jupyter Notebook +https://github.com/stuhlmueller/webppl-json;Utilities for reading and writing JSON files from webppl;no_research;JavaScript +https://github.com/stuhlmueller/webppl-timeit;Measure execution time of webppl functions;no_research;JavaScript +https://github.com/SwamyDev/AMARL;Argumentative Muli-Agent Reinforcement Learning;no_research;Python +https://github.com/SwamyDev/baseline-marl;;no_research;Python +https://github.com/SwamyDev/CppTrainingKatas;Simpe C++ code katas;no_research;C++ +https://github.com/SwamyDev/datums-warehouse;Data warehouse that provides time series data via REST API;no_research;Python +https://github.com/SwamyDev/dogma-engine;This is a 2D -Engine based on XNA, that has been developed during the Masters course of DIT's Digital Games programm. It has also been used to implement a first rough version of Pontification.;no_research;C# +https://github.com/SwamyDev/DSSM;"Implementation of the DSSM algorithm described in ""Fast State Switching With Evidence Integration for Human Decision Making""";no_research;R +https://github.com/SwamyDev/GameJamUtilities;Unity project implementing common game functionalities that pop up time and again during game jams;no_research;C# +https://github.com/SwamyDev/gym-datums;Gym environments focused around time series.;no_research;Python +https://github.com/SwamyDev/gym-quickcheck;Gym environments that allow for coarse but fast testing of AI agents.;research;Python +https://github.com/SwamyDev/LLVMBuilder;Docker image based on ubuntu containing the latest clang version default support of Ubuntu and CMake.;no_research; +https://github.com/SwamyDev/ML-TimeShifters;Unity project used to test reinforcement learning agents on game jam games.;no_research;C# +https://github.com/SwamyDev/ModernEasyCuda;"An elevated C++ 14 implementation of ""An Even Easier Introduction to CUDA"" by Mark Harris";no_research;C++ +https://github.com/SwamyDev/Mote;WIP point cloud viewer using fleck;no_research;Python +https://github.com/SwamyDev/q_network;Framework for quantum key distribution;no_research;Python +https://github.com/SwamyDev/reinforcement;Python module implementing reinforcement learning algorithms,;research;Python +https://github.com/SwamyDev/Speckle;WIP;no_research;C++ +https://github.com/SwamyDev/udacity-deep-rl-navigation;Udacity Reinforcement Learning Nanodegree Project Submissions;no_research;Python +https://github.com/SwamyDev/zotero-assist;;no_research;Python +https://github.com/theDebugger811/academic-kickstart;;no_research;Shell +https://github.com/theDebugger811/human-trajectory-forecasting-papers;Collection of Papers in Trajectory Prediction categorised according to the high-level structure;no_research; +https://github.com/theDebugger811/Hybird-Analysis;Form Nal-Nbk easily;no_research;C++ +https://github.com/theDebugger811/Image_processing_fingers;IM-MAT-THON code submission;no_research;Matlab +https://github.com/theDebugger811/upload_check;Just checking uploading;no_research;C++ +https://github.com/thejat/active-curricula-for-efficient-reinforcement-learning;"Code for paper "" Faster Reinforcement Learning Using Active Simulators"" (2017)";research;Jupyter Notebook +https://github.com/thejat/bandits-with-stochastic-impairments;Code accompanying the paper 'Bandits with Stochastic Impairments' (2018);research;Python +https://github.com/thejat/cml-demo-fall2023;;no_research;Python +https://github.com/thejat/combining-machine-learning-with-decision-making;Machine Learning and the Traveling Repairman Problem;no_research;Matlab +https://github.com/thejat/competition-with-costs-and-loyalties;;no_research;Jupyter Notebook +https://github.com/thejat/dl-notebooks;;no_research;Jupyter Notebook +https://github.com/thejat/dynamic-network-growth-models;;research;Jupyter Notebook +https://github.com/thejat/facial-political-recognition;;research;Jupyter Notebook +https://github.com/thejat/learning-realistic-buyer-models;Code for the paper 'An Online Algorithm for Learning Buyer Behavior under Realistic Pricing Restrictions';research;Python +https://github.com/thejat/learning-to-partition-using-pairwise-compatibilities;"Code for the paper "" Learning to Partition Using Pairwise Compatibilities""";research;Python +https://github.com/thejat/machine-learning-snippets;Code for some ML workflows;no_research;Python +https://github.com/thejat/managing-adoption-under-network-effects;;no_research;Jupyter Notebook +https://github.com/thejat/ml-notebooks;;no_research;Jupyter Notebook +https://github.com/thejat/mlops-code-examples;;no_research;Python +https://github.com/thejat/mlops-notebooks;;no_research;HTML +https://github.com/thejat/multiproducts-recommendation-system;;no_research;Python +https://github.com/thejat/Pay2Explore;;no_research;Jupyter Notebook +https://github.com/thejat/planout;;research;JavaScript +https://github.com/thejat/profit-optimization-ride-sharing;"Code for the paper "" Impact of Detour-Aware Policies on Maximizing Profit in Ridesharing""";research;Jupyter Notebook +https://github.com/thejat/scalable-data-driven-assortment-planning;"Code accompanying paper titled ""Optimizing Revenue over Data-driven Assortments"" (2021)";research;Python +https://github.com/thejat/sequential-individual-rationality-and-fairness;;no_research;Jupyter Notebook +https://github.com/thejat/supervised-learning-with-side-knowledge;Code associated with http://arxiv.org/pdf/1405.7764;research;Matlab +https://github.com/thejat/Thompson-Sampling-for-a-Fatigue-aware-Online-Recommendation-System;;research;Jupyter Notebook +https://github.com/Tiiiger/benchmark_llm_summarization;;research; +https://github.com/Tiiiger/bert_score;BERT score for text generation;no_research;Jupyter Notebook +https://github.com/Tiiiger/mai_demo;random code collection for visuals;no_research;Python +https://github.com/Tiiiger/NN-Dialogue;Intended to implement papers on neural dialogue generation;no_research;Python +https://github.com/Tiiiger/QPyTorch;Low Precision Arithmetic Simulation in PyTorch;research;Python +https://github.com/Tiiiger/SGC;"official implementation for the paper ""Simplifying Graph Convolutional Networks""";research;Python +https://github.com/Tiiiger/templm;"Code release for ""TempLM: Distilling Language Models into Template-Based Generators""";research;Python +https://github.com/Tiiiger/temp_assets;;no_research; +https://github.com/tillkolster/Gamma;;no_research;TeX +https://github.com/tillkolster/Rayleigh;Protokoll;no_research;TeX +https://github.com/timorl/bonesaw;Experiments with mannequin;no_research;Python +https://github.com/timorl/gitPsPort;A port of the __git_ps1 function for the fish shell;no_research;Shell +https://github.com/timorl/git_example;;no_research;C++ +https://github.com/timorl/impactOffsetting;;no_research;TeX +https://github.com/timorl/neurohex;A web game based on the great board game Neuroshima Hex.;no_research;C++ +https://github.com/timorl/projekt-Scrabble;;no_research;Java +https://github.com/timorl/rozbiory;;no_research;C++ +https://github.com/timorl/safety-gridworlds-gym;Simple gridworlds for AI safety research, implemented with the OpenAI gym interface.;no_research;Python +https://github.com/timorl/tiyl;;no_research;C++ +https://github.com/tobirohrer/8anu-data-analysis;;no_research; +https://github.com/tobirohrer/brewing;;no_research;Jupyter Notebook +https://github.com/tobirohrer/building-energy-storage-simulation;An open source building energy storage environment for reinforcement learning.;no_research;Python +https://github.com/tobirohrer/content-aware-link-shortener;A content aware link shortener;no_research;JavaScript +https://github.com/tobirohrer/cv;;no_research;Jupyter Notebook +https://github.com/tobirohrer/dummy-repo-git-issue-template;a repo to test the functionality of git issue templates;no_research; +https://github.com/tobirohrer/eda;;no_research;HTML +https://github.com/tobirohrer/fake-face-gan;free exercise for computer vision curse.;no_research;TeX +https://github.com/tobirohrer/gan-pretraining-ae;;research;Jupyter Notebook +https://github.com/tobirohrer/geese-detection;;no_research;Jupyter Notebook +https://github.com/tobirohrer/industry-challenge;;no_research;Python +https://github.com/tobirohrer/industry-challenge-github;;no_research; +https://github.com/tobirohrer/kaggle;;no_research;Jupyter Notebook +https://github.com/tobirohrer/python-project-template;a repository which will serve as template for future python projects;no_research;Python +https://github.com/tobirohrer/reinforcement-learning-heat-pump;;research;Jupyter Notebook +https://github.com/tobirohrer/rl;;no_research;Jupyter Notebook +https://github.com/tobirohrer/smARtgestures;;no_research;Jupyter Notebook +https://github.com/tobirohrer/study-master;;no_research;TeX +https://github.com/tobirohrer/tensorflowDemo;;no_research;Jupyter Notebook +https://github.com/tobirohrer/webmining;;no_research;Jupyter Notebook +https://github.com/tobirohrer/website-lawyer;;no_research;JavaScript +https://github.com/ToBraun/RECFLOW;;research;Jupyter Notebook +https://github.com/ToBraun/RECLAC;RECLAC Python package;research;Jupyter Notebook +https://github.com/ToBraun/SRC-surrogates;;no_research;Jupyter Notebook +https://github.com/tom-doerr/7_tage_inzidenz_landkreis_muenchen;;no_research;Python +https://github.com/tom-doerr/acm_metric_tracker;;no_research;Shell +https://github.com/tom-doerr/adv_bio_defense;;no_research;Python +https://github.com/tom-doerr/aielab_statistics;;no_research;Python +https://github.com/tom-doerr/ai_data_analyser;Analyse tabular data using OpenAI Codex;no_research;Python +https://github.com/tom-doerr/ai_photo_rater;;no_research;Python +https://github.com/tom-doerr/application_dashboard;;no_research;Python +https://github.com/tom-doerr/audobi;;no_research;Shell +https://github.com/tom-doerr/autodev_suite;;no_research; +https://github.com/tom-doerr/bark_simulator_docker;Contains a dockerfile for building the bark_simulator (https://github.com/bark-simulator/bark);no_research;Dockerfile +https://github.com/tom-doerr/bins;;no_research;Shell +https://github.com/tom-doerr/carla_docker_build;;no_research;Dockerfile +https://github.com/tom-doerr/carla_rl_weights;This repository contains checkpoint-files for the Sentdex/Carla-RL repository.;no_research; +https://github.com/tom-doerr/chatgpt_commit_message_hook;Enhance your git workflow using AI-generated commit messages from ChatGPT. Seamless integration for a well-documented commit log.;no_research;Python +https://github.com/tom-doerr/chat_gpt_coder;;no_research;Python +https://github.com/tom-doerr/chat_gpt_shell;;no_research; +https://github.com/tom-doerr/chinese_lunar_new_year;;no_research;Python +https://github.com/tom-doerr/clip_rl;;no_research;Python +https://github.com/tom-doerr/codex-readme;Revolutionize your project documentation with the Codex-README generator, utilizing OpenAI's Codex for intelligent README creation.;no_research;Python +https://github.com/tom-doerr/codex.fish;Supercharge your command line with OpenAI Codex integration. Get AI-powered coding assistance right in your fish shell.;no_research;Python +https://github.com/tom-doerr/code_weaver_ai;;no_research;Python +https://github.com/tom-doerr/cofix;;no_research;Python +https://github.com/tom-doerr/commonroad-docker;;no_research;Dockerfile +https://github.com/tom-doerr/commonroad_batch_processing;;no_research;Jupyter Notebook +https://github.com/tom-doerr/crafter_test;;no_research;Python +https://github.com/tom-doerr/csv_to_db;;no_research; +https://github.com/tom-doerr/dalle_flow_streamlit;;no_research;Python +https://github.com/tom-doerr/dotfiles;Contains my configuration files;no_research;Shell +https://github.com/tom-doerr/download_images_train_classifier;;no_research;Python +https://github.com/tom-doerr/dummy1;;no_research; +https://github.com/tom-doerr/FAKEBOB_fork_2;;research;Python +https://github.com/tom-doerr/fakebob_offsets;;research;Python +https://github.com/tom-doerr/fix;Boost your command line with AI-powered error resolution using OpenAI's Codex. Enjoy a smoother workflow with Fix! ;no_research;Python +https://github.com/tom-doerr/get-config-files;Script that clones/pulls my bash, tmux and vim configuration files from Github.;no_research;Shell +https://github.com/tom-doerr/get_reddit_karma;;no_research;Python +https://github.com/tom-doerr/get_stargazers;;no_research;Python +https://github.com/tom-doerr/get_total_stars;;no_research;Python +https://github.com/tom-doerr/github_fork_info;;no_research;Python +https://github.com/tom-doerr/github_repo_stats_data;;no_research;HTML +https://github.com/tom-doerr/github_stats;;no_research;Python +https://github.com/tom-doerr/github_stats_visdom;;no_research;Python +https://github.com/tom-doerr/gpt_coder;;no_research;Python +https://github.com/tom-doerr/gpt_minus_one;Stealth Mode for ChatGPT - Keep your AI-generated text under the radar with our obfuscation tool designed for ChatGPT.;no_research;Python +https://github.com/tom-doerr/gpt_terminal;;no_research;Python +https://github.com/tom-doerr/i3_workspace_toggle;;no_research;Shell +https://github.com/tom-doerr/internal_wiki;;no_research; +https://github.com/tom-doerr/Intrinsic-Image-Popularity;;research;Shell +https://github.com/tom-doerr/intuicoder;;no_research; +https://github.com/tom-doerr/ipython_codex;;no_research; +https://github.com/tom-doerr/keyboard_config;;no_research;Shell +https://github.com/tom-doerr/language_model_rl;;no_research;Python +https://github.com/tom-doerr/list_repo_stars;;no_research;Python +https://github.com/tom-doerr/lm_rl;;no_research;Python +https://github.com/tom-doerr/log_stars;;no_research;Python +https://github.com/tom-doerr/mediapipe_parallel_demo;;no_research;Python +https://github.com/tom-doerr/meta_neural_networks;;no_research;Python +https://github.com/tom-doerr/mnist_codex;;no_research;Python +https://github.com/tom-doerr/mui_nextjs;;no_research;JavaScript +https://github.com/tom-doerr/next_js_experimentation;;no_research;JavaScript +https://github.com/tom-doerr/next_js_test;;no_research; +https://github.com/tom-doerr/notebooks;;no_research; +https://github.com/tom-doerr/notes;;no_research; +https://github.com/tom-doerr/point_e_streamlit;;no_research;Python +https://github.com/tom-doerr/port_test;;no_research;Python +https://github.com/tom-doerr/pull_up_counter;;no_research;C++ +https://github.com/tom-doerr/quantum_computing_for_computer_scientists_programming_drills;;no_research;Python +https://github.com/tomMcGrath/assignments;assignments;no_research;C +https://github.com/tomMcGrath/bayesian_feeding;;no_research;Jupyter Notebook +https://github.com/tomMcGrath/cellSize;;no_research;Python +https://github.com/tomMcGrath/feeding-behaviour;;research;Jupyter Notebook +https://github.com/tomMcGrath/feeding_analysis;"Open-sourced code for the paper ""A mathematical model of feeding in rodents predicts food intake and offers novel insight into feeding behavior"".";research;Jupyter Notebook +https://github.com/tomMcGrath/heteroplasmy;Stochastic simulation of mitochondrial heteroplasmy dynamics;no_research;Python +https://github.com/tomMcGrath/pyro_tutorial;Notebooks containing working for the Pyro tutorials (http://pyro.ai/examples/index.html);no_research;Jupyter Notebook +https://github.com/tomMcGrath/rationalnews;Systems & Signals group project for rationally-reported news;no_research;Python +https://github.com/tomMcGrath/reinforcement;;no_research;Python +https://github.com/tomMcGrath/utils;Contains various helpful utilities;no_research; +https://github.com/toshikwa/alfred-aws-icons;Alfred Workflow for quickly pasting AWS architecture icons onto PowerPoint.;no_research;Go +https://github.com/toshikwa/discor.pytorch;PyTorch implementation of Distribution Correction(DisCor) based on Soft Actor-Critic.;research;Python +https://github.com/toshikwa/dmm-schedule-checker;DMM schedule checker continuously monitors the schedule of your favorite teachers, and notifies via LINE whenever new slots are available.;no_research;Go +https://github.com/toshikwa/fqf-iqn-qrdqn.pytorch;PyTorch implementation of FQF, IQN and QR-DQN.;research;Python +https://github.com/toshikwa/gail-airl-ppo.pytorch;PyTorch implementation of GAIL and AIRL based on PPO.;research;Python +https://github.com/toshikwa/gec-app;This project contains frontend/backend application code and infrastructure for grammatical error correction.;no_research;Python +https://github.com/toshikwa/rl-tutorials;;no_research;Jupyter Notebook +https://github.com/toshikwa/rljax;A collection of RL algorithms written in JAX.;no_research;Python +https://github.com/toshikwa/rltorch;A simple framework for distributed reinforcement learning in PyTorch.;no_research;Python +https://github.com/toshikwa/sac-discrete.pytorch;PyTorch implementation of SAC-Discrete.;research;Python +https://github.com/toshikwa/sagemaker-tutorial;Amazon SageMaker tutorial;no_research;Jupyter Notebook +https://github.com/toshikwa/simple-rl.pytorch;Simple implementation of model-free RL algorithms written in PyTorch.;no_research;Python +https://github.com/toshikwa/slac-discrete.pytorch;PyTorch implementation of Stochastic Latent Actor-Critic(SLAC) extended for discrete action settings.;research;Python +https://github.com/toshikwa/slac.pytorch;PyTorch implementation of Stochastic Latent Actor-Critic(SLAC).;research;Python +https://github.com/toshikwa/soft-actor-critic.pytorch;PyTorch implementation of Soft Actor-Critic(SAC).;research;Python +https://github.com/toshikwa/ssm-enforcement-tool;"This project contains a set of infrastructure implemented in Terraform to monitor your ""not-managed-by-SSM"" instances accross all regions.";no_research;Go +https://github.com/toshikwa/vae.pytorch;PyTorch Implementation of Deep Feature Consistent Variational Autoencoder.;research;Python +https://github.com/toshikwa/wappo.pytorch;PyTorch implementation of Wasserstein Adversarial Proximal Policy Optimization(WAPPO).;research;Python +https://github.com/tscheypidi/mrorganic;;research;R +https://github.com/tschlemm/tschlemm;Config files for my GitHub profile.;no_research; +https://github.com/vartika271987/FABLE-India-Tutorials;Tutorials for working with various pik-piam packages for FABLE India activities;no_research;HTML +https://github.com/vartika271987/hello-world;This is my first step with Git;no_research;Stata +https://github.com/vitusbenson/atmospheric_variability_seasonal_forecasts;;no_research;Python +https://github.com/vitusbenson/earthnet-pytorch-template;;no_research;Python +https://github.com/vitusbenson/earthnet-singularity;;no_research; +https://github.com/vitusbenson/noisecascades;;no_research;Python +https://github.com/vitusbenson/pytorchsingularity;;no_research; +https://github.com/vitusbenson/tropical_rainforest_resilience_nongaussian;;research;Python +https://github.com/vwxyzjn/a2c_is_a_special_case_of_ppo;A2C is a special case of PPO!;research;Python +https://github.com/vwxyzjn/Abstract_Algebra_Finite_Group_Generator;A brute force program that enumerates all possible permutations of binary operations on a given set.;no_research;Python +https://github.com/vwxyzjn/action-guidance;;no_research;Python +https://github.com/vwxyzjn/admin;;no_research;HTML +https://github.com/vwxyzjn/assignment1-demo;;no_research;JavaScript +https://github.com/vwxyzjn/aws-sagemaker-example;;no_research;Jupyter Notebook +https://github.com/vwxyzjn/benchmark-ci;;no_research;Python +https://github.com/vwxyzjn/Blog;My personal blog built by Nuxt.js and Bootstrap;no_research;JavaScript +https://github.com/vwxyzjn/cleanba;CleanRL's implementation of DeepMind's Podracer Sebulba Architecture for Distributed DRL ;research;Python +https://github.com/vwxyzjn/cleangpt;;no_research;Python +https://github.com/vwxyzjn/cleanrl;High-quality single file implementation of Deep Reinforcement Learning algorithms with research-friendly features (PPO, DQN, C51, DDPG, TD3, SAC, PPG);research;Python +https://github.com/vwxyzjn/cloudbase-python-app;;no_research;Dockerfile +https://github.com/vwxyzjn/cocalc_docker_python3;;no_research; +https://github.com/vwxyzjn/Costa_Tornado_Blog;;no_research;HTML +https://github.com/vwxyzjn/cover_letters;;no_research;TeX +https://github.com/vwxyzjn/CS583;;no_research;Python +https://github.com/vwxyzjn/CS583FinalProject;;no_research;Python +https://github.com/vwxyzjn/CS618;;no_research;Jupyter Notebook +https://github.com/vwxyzjn/docker_queue;;no_research;Vue +https://github.com/vwxyzjn/draw.io;;no_research; +https://github.com/vwxyzjn/dvc-registry;;no_research; +https://github.com/vwxyzjn/elivel;;no_research; +https://github.com/vwxyzjn/embedding_projector;;no_research;Python +https://github.com/vwxyzjn/entity-ppo-demo;;no_research;Python +https://github.com/vwxyzjn/envpool-cleanrl;;research;Python +https://github.com/vwxyzjn/envpool-xla-cleanrl;;no_research;Python +https://github.com/vwxyzjn/envpool_bug;;no_research;Python +https://github.com/vwxyzjn/fuckzhxhs;本网页因被火爆分享被微信判定为恶意诱导分享,请于浏览器中打开。;no_research;HTML +https://github.com/vwxyzjn/fucommencement;;no_research;Vue +https://github.com/vwxyzjn/fucommencement-backend;;no_research;Go +https://github.com/vwxyzjn/genetics-algorithm;;no_research;JavaScript +https://github.com/vwxyzjn/gym-microrts-paper;The source code for the gym-microrts paper.;research;Python +https://github.com/vwxyzjn/gym-microrts-static-files;;no_research; +https://github.com/vwxyzjn/gym-pysc2;Gym wrapper for pysc2;no_research;Python +https://github.com/vwxyzjn/gym_minigrid;;no_research;Python +https://github.com/vwxyzjn/hello_cargo;;no_research;Rust +https://github.com/vwxyzjn/histraffic;;no_research;HTML +https://github.com/vwxyzjn/info_collection;;no_research;HTML +https://github.com/vwxyzjn/invalid-action-masking;Source Code for A Closer Look at Invalid Action Masking in Policy Gradient Algorithms;research;Python +https://github.com/vwxyzjn/jupyter_disqus;Add Disqus to your Jupyter notebook.;no_research;Python +https://github.com/vwxyzjn/launcha;Launcha is a simple Docker-based cloud job launcher.;no_research;Python +https://github.com/vwxyzjn/launcha-sb3-example;;no_research;Python +https://github.com/vwxyzjn/lm-human-preference-details;;research;Python +https://github.com/vwxyzjn/LP_optimization_python;Linear Programming for Optimal Scheduling by Using Gurobipy;no_research;TeX +https://github.com/vwxyzjn/microrts-sb3;;no_research;Python +https://github.com/vwxyzjn/minimal-adam-difference;;no_research;Python +https://github.com/wbarfuss/CognitiveLevels;Python implementation to create the figures used in the publication 'Dynamical systems as a level of cognitive analysis of multi-agent learning - Algorithmic foundations of temporal-difference learning dynamics';research;Python +https://github.com/wbarfuss/cyexploit;cython / python implementation of the COPAN:Exploit model;research;Python +https://github.com/wbarfuss/DetRL;Python implementation of the deterministic limit of temporal difference reinforcement learning;research;Jupyter Notebook +https://github.com/wbarfuss/eca;Event Coincidence Analysis;no_research;Python +https://github.com/wbarfuss/EcoPG;Python implementation of the Ecological Public Good model;research;Python +https://github.com/wbarfuss/intrinsic-fluctuations-cooperation;All code to reproduce the results of https://arxiv.org/abs/2209.01013;research;Mathematica +https://github.com/wbarfuss/jbtest;;no_research;TeX +https://github.com/wbarfuss/MARLDynamics;Modeling multi-agent reinforcement learning as dynamical systems;no_research;Jupyter Notebook +https://github.com/wbarfuss/netlogo-exploit;A netlogo implementation of PIK COPANS Exploit model;research;NetLogo +https://github.com/wbarfuss/Paradigms;Code for paradigms project;research;Jupyter Notebook +https://github.com/wbarfuss/POLD;Partially Observable multi-agent temporal-difference Learning Dynamics in the deterministic infinite memory limit;research;Jupyter Notebook +https://github.com/wbarfuss/pyCRLD;Collective Reinforcement Learning Dynamics in Python;research;Jupyter Notebook +https://github.com/wbarfuss/Taxploit;;no_research;Python +https://github.com/wbarfuss/test-nbdev-vscode;test nbdev with vscode ;no_research;Jupyter Notebook +https://github.com/white-alistair/ConservativeDynamicalSystems.jl;;no_research;Julia +https://github.com/white-alistair/Exercise7.jl;Example solution for Exercise 7 of the course Modelling and Machine Learning of Dynamical Systems in Julia at TUM;no_research;Jupyter Notebook +https://github.com/white-alistair/Lecture2.jl;;no_research;Julia +https://github.com/white-alistair/ManifoldProjection.jl;;no_research;Julia +https://github.com/white-alistair/MemoryLeak.jl;;no_research;Julia +https://github.com/white-alistair/NeuralDiffEqTools.jl;;no_research;Julia +https://github.com/white-alistair/RemoteTestPkg.jl;;no_research;Julia +https://github.com/white-alistair/TestPkg.jl;;no_research;Julia +https://github.com/whitehacker/Devasc_Skills;I am going to present the practical tasks of the Netacad DevAsc Skills-Based exam. ;no_research; +https://github.com/whitehacker/docker;;no_research; +https://github.com/whitehacker/foo;;no_research;HTML +https://github.com/whitehacker/frontend;All front-end codes goes here. ;no_research;JavaScript +https://github.com/whitehacker/isd.pub;;no_research;PHP +https://github.com/whitehacker/issues;;no_research; +https://github.com/whitehacker/iswp;Students can access the source code for the class work. ;no_research;PHP +https://github.com/whitehacker/itcollege;This Repo is intended to upload the web development class work. ;no_research; +https://github.com/whitehacker/itcsf;;no_research;JavaScript +https://github.com/whitehacker/itdep;This repo will store all our class code and technical documents. ;no_research;HTML +https://github.com/whitehacker/itwp;Students can download the class work and code from this repository. ;no_research;Java +https://github.com/whitehacker/kmu.msc;;no_research; +https://github.com/whitehacker/kriptokitty;;no_research;Python +https://github.com/whitehacker/kriptokitty_heroku;;no_research;Python +https://github.com/whitehacker/MoHE;;no_research;PHP +https://github.com/whitehacker/msc;This Repository is intended to provide the class work for MS.c students.;no_research;PHP +https://github.com/whitehacker/portfolio;This is my portfolio;no_research;PHP +https://github.com/whitehacker/rasa;This repository is used to create a plug-in for Archi that allows you to instantiate a solution architecture from a reference architecture.;no_research;Java +https://github.com/whitehacker/taltech;;no_research;Python +https://github.com/whitehacker/ted.mob;;no_research;JavaScript +https://github.com/whitehacker/ted.mon;;no_research;CSS +https://github.com/whitehacker/teddev;;no_research;PHP +https://github.com/whitehacker/tests;;no_research; +https://github.com/whitehacker/TextSentimentClassifier;A Flask app for text sentiment analysis based on ChatGPT.;no_research;HTML +https://github.com/whitehacker/ttc.dev;;no_research;PHP +https://github.com/whitehacker/ttc.pub;;no_research;PHP +https://github.com/whitehacker/webhook;;no_research; +https://github.com/whuiskamp/Paleo_SAM_proxies;Matlab scripts for work on Paleo-SAM recons using proxy data;no_research;MATLAB +https://github.com/whuiskamp/POEM_PALMOD;Scrips for preparing LGM simulations using POEM model;no_research;Python +https://github.com/whuiskamp/POEM_SLC;Tool for implementing dynamic sea level and land-sea mask changes in a coupled Earth System Model;no_research;Python +https://github.com/whuiskamp/SAM_pseudoproxy;Scripts for work on theoretical reconstruction skill of SAM using pseudoproxies;no_research;MATLAB +https://github.com/winglian/alchemist;responsive images progressive jpegs;no_research;JavaScript +https://github.com/winglian/appstrap;AppStrap;no_research;PHP +https://github.com/winglian/axolotl;;no_research; +https://github.com/winglian/cilantro;Local Docker Development Environment;no_research;Ruby +https://github.com/winglian/google-authenticator;PHP Google Authenticator;no_research;PHP +https://github.com/winglian/Heroku-PHP;Get started using PHP on Heroku;no_research;PHP +https://github.com/winglian/Koozie;Koozie is a javascript client to Thismoment's APIs.;no_research;JavaScript +https://github.com/winglian/llemmings;Pipelines for AI workflows;no_research; +https://github.com/winglian/middleware-adapter;Laravel Middleware Adapters for HttpKernelInterface Middlewares;no_research;PHP +https://github.com/winglian/personas-rlhf;;no_research; +https://github.com/winglian/schema_future;;no_research;Python +https://github.com/winglian/serverless-apigw-cors-contenthandler;;no_research;JavaScript +https://github.com/winglian/SSTable2S3;Backup your Cassandra SSTables to S3;no_research;Python +https://github.com/winglian/worker-vllm-new;;no_research;Python +https://github.com/wleoncio/devkit;Simple functions to help R package development;no_research;R +https://github.com/wleoncio/MacroCalcAndroid;An android app to calculate carb percentage given macronutrient weight distribution;no_research;Kotlin +https://github.com/wleoncio/mechanic;;no_research;Python +https://github.com/wleoncio/nutrition;Useful Functions for People on a Diet;no_research;R +https://github.com/wleoncio/pomodoro;My pomodoro timer for Linux;no_research;Shell +https://github.com/wleoncio/simExam;Generate test data from IRT. Particularly useful for test equating.;no_research;R +https://github.com/wleoncio/syncconfig;Some configuration files;no_research;Shell +https://github.com/wleoncio/wleoncio;;no_research; +https://github.com/wleoncio/workoutPlan;workoutPlan;no_research;Python +https://github.com/wleoncio/workoutTimer;A simple workout timer for Darebee workouts;no_research;Python +https://github.com/YannDubs/DebugJupyterBook;Playing Around with JupyterBook;no_research;JavaScript +https://github.com/YannDubs/disentangling-vae;Experiments for understanding disentanglement in VAE latent representations;research;Python +https://github.com/YannDubs/FourRussiansRNA;Faster algorithms for RNA-folding using the Four-Russians method;research;C++ +https://github.com/YannDubs/GameOfThrones-Reference;Database for game of thrones made for a CPSC 304 project;no_research;JavaScript +https://github.com/YannDubs/Hash-Embeddings;PyTorch implementation of Hash Embeddings (NIPS 2017). Submission to the NIPS Implementation Challenge.;research;Python +https://github.com/YannDubs/helm_instruct;;no_research;Jupyter Notebook +https://github.com/YannDubs/Homework-STAT540;Viewing STAT540 homework;no_research; +https://github.com/YannDubs/Infootmation; Visualise european soccer player's data;no_research;JavaScript +https://github.com/YannDubs/Invariant-Self-Supervised-Learning;"Pytorch code for ""Improving Self-Supervised Learning by Characterizing Idealized Representations""";research;Python +https://github.com/YannDubs/lossyless;"Generic image compressor for machine learning. Pytorch code for our paper ""Lossy compression for lossless prediction"".";research;Python +https://github.com/YannDubs/machineLearningCode;Some of the machine learning functions I've implemented: for learning purpose;no_research;Matlab +https://github.com/YannDubs/Mini_Decodable_Information_Bottleneck;Minimum viable code for the Decodable Information Bottleneck paper. Pytorch Implementation.;research;Python +https://github.com/YannDubs/miRNAseq-Analysis;Analyze single-cell miRNA sequencing data from HL-60 cells along a 7-day time-course of ATRA treatment.;no_research;R +https://github.com/YannDubs/modellingBacterias;Useless project that tries to model the life of different bacterias in a petri dish: for learning purpose;no_research;C++ +https://github.com/YannDubs/Neural-Process-Family;Code for the Neural Processes website and replication of 4 papers on NPs. Pytorch implementation. ;research;Jupyter Notebook +https://github.com/YannDubs/npf;Experiments for comparing and understanding different neural processes architectures.;no_research; +https://github.com/YannDubs/optimizationCode;Some of the optimisation functions I've implemented: for learning purpose;no_research;Matlab +https://github.com/YannDubs/Overlayed-Datasets;Code for generating datasets consisting of overlayed images.;no_research;Jupyter Notebook +https://github.com/YannDubs/QuoraQuestion;Siamese LSTM for Kaggle competition: Quora Question Pairs;no_research;Python +https://github.com/YannDubs/RAW-Embedings;Novel word embeddings based on a simple and intuitive rolling average. Still in dev mode.;research;Jupyter Notebook +https://github.com/YannDubs/Semi-Supervised-Neural-Processes;;no_research;Jupyter Notebook +https://github.com/YannDubs/sigterm-bug;;no_research;Python +https://github.com/YannDubs/simulationPopulationGenetics;A general modelisation of Wright Fisher in a context of total biological abstraction. And a specific modelisation of the evolution of the sickle cell anemia in Congo, Cameroon & Gaboon ;research;C++ +https://github.com/YannDubs/specialized-attention-mini;Mini Version of Specialized Attention;no_research;Python +https://github.com/YannDubs/SSL-Risk-Decomposition;"Benchmark and analysis of 165 pretrained SSL models. Code for ""Evaluating Self-Supervised Learning via Risk Decomposition"".";research;Jupyter Notebook +https://github.com/YannDubs/TicTacToePyTorch;Tic tac toe dataset and PyTorch baseline.;no_research;Jupyter Notebook +https://github.com/YannDubs/website_old;Yet another blog with focus on machine learning. Home of an intuitive machine learning glossary / cheat sheet.;no_research;HTML +https://github.com/yasserglez/arachne;Search engine for files shared via FTP and similar protocols;no_research;Python +https://github.com/yasserglez/capstone-project;Data Science Specialization Capstone Project;no_research;R +https://github.com/yasserglez/cec2005benchmark;Benchmark for the CEC 2005 Special Session on Real-Parameter Optimization;no_research;C +https://github.com/yasserglez/configurator;Calculation of optimal configuration processes;no_research;Python +https://github.com/yasserglez/copulaedas;Estimation of Distribution Algorithms Based on Copulas;no_research;R +https://github.com/yasserglez/devdataprod-project;Developing Data Products Course Project;no_research;HTML +https://github.com/yasserglez/diglib;Personal digital document management software;no_research;Python +https://github.com/yasserglez/dml;C library for dependence modeling using C-vines, D-vines and R-vines;no_research;C +https://github.com/yasserglez/dotfiles;My configuration files;no_research;Emacs Lisp +https://github.com/yasserglez/ExData_Plotting2;Exploratory Data Analysis Assignment 1;no_research;R +https://github.com/yasserglez/getdata-project;Getting and Cleaning Data Course Project;no_research;R +https://github.com/yasserglez/kaggle;Code used in Kaggle competitions;no_research;Jupyter Notebook +https://github.com/yasserglez/lr4ir-matlab;LR4IR Research Environment in MATLAB;no_research;Matlab +https://github.com/yasserglez/metaheuristics;Implementation of a group of metaheuristics in C#;no_research;C# +https://github.com/yasserglez/monkeys-typing;'Introduction to Computational Linguistics' Assignment;no_research;TeX +https://github.com/yasserglez/ngram_profile;Text classification based on character n-grams;no_research;Python +https://github.com/yasserglez/oreilly_data_science_salary;Shiny app for the O'Reilly ‘2015 Data Science Salary Survey’ models;no_research;R +https://github.com/yasserglez/pagerank-hadoop;PageRank implementation in Hadoop;no_research;Java +https://github.com/yasserglez/predmachlearn-project;Practical Machine Learning Course Project;no_research;HTML +https://github.com/yasserglez/programming-problems;Solutions to programming problems;no_research;Python +https://github.com/yasserglez/pyenscript;A simple Python wrapper for the Evernote ENScript.exe executable;no_research;Python +https://github.com/yasserglez/pytiger2c;A compiler for the Tiger programming language written in Python;no_research;Python +https://github.com/yasserglez/regmods-project;Regression Models Course Project;no_research; +https://github.com/yasserglez/RepData_PeerAssessment2;Reproducible Research Assignment 2;no_research;HTML +https://github.com/yasserglez/statinference-project;Statistical Inference Course Project;no_research; +https://github.com/yasserglez/tagfs;TagFS is a tag-based distributed filesystem;no_research;Python +https://github.com/yasserglez/veda-matlab;Basic MATLAB/Octave implementation of CVEDA and DVEDA;no_research;Matlab +https://github.com/yasserglez/vines;Multivariate Dependence Modeling with Vines;no_research;R +https://github.com/zach-nervana/atom-config;my atom configuration;no_research; +https://github.com/zach-nervana/evren-bot;;no_research;Python +https://github.com/zach-nervana/throw_away_cpio_sharding;;no_research;Python +https://github.com/zeionara/advanced-ml;Solutions for labs from an ITMO course for magisters;no_research;Python +https://github.com/zeionara/agk;Code for recommender systems evaluation;no_research;Swift +https://github.com/zeionara/ahri;Exploratory project for apllying github actions to implement ml pipelines;no_research;R +https://github.com/zeionara/ahsheet;A minimalistic wrapper for google api services which implements some common intermediate-level functionality which may be useful for wide range of projects.;no_research;Swift +https://github.com/zeionara/alacritty-config;Configuration files for alacritty;no_research;Shell +https://github.com/zeionara/algorithms;;no_research;C +https://github.com/zeionara/algorythms_and_data_structures;Labs for 'algorythms and data structures' discipline;no_research;C++ +https://github.com/zeionara/ampligraph-demo;Results of executing ampligraph colab tutorial;no_research;Python +https://github.com/zeionara/appall;Tool for horizontally juxtaposing text in terminal;no_research;Python +https://github.com/zeionara/archeron;Arch Linux installation instructions;no_research;Shell +https://github.com/zeionara/asmwin;Asm multiplicator;no_research;Assembly +https://github.com/zeionara/authemeral;Insomnia plugin for automatic token generation for requests using authentication service;no_research;JavaScript +https://github.com/zeionara/baneks-web;Web application for anecdotes reading;no_research;HTML +https://github.com/zeionara/barbershop;First kursach for 'databases' discipline;no_research;Python +https://github.com/zeionara/barge;Simple yet powerful tool for parsing arguments in bash scripts;no_research;Shell +https://github.com/zeionara/bash-tools;Useful aliases and scripts for bash which simplify routine operations;no_research;Shell +https://github.com/zeionara/beep;A simple package for making signal when exiting from a block;no_research;Python +https://github.com/zeionara/calendar-claimer;A simple cmd tool for adding events to the google calendar;no_research;Python +https://github.com/zeionara/cartex;SPARQL query optimizer which allows to split complex queries based on iterating over cartesian products of graph component sets;no_research;Elixir +https://github.com/zeionara/circle-ci-hello-world;Hello world for the circle ci and functions framework;no_research;JavaScript +https://github.com/zeionara/clusterizer;My first attempts to clusterize texts;no_research;Python +https://github.com/zeionara/coda;Web app for presenting cli features;no_research;TypeScript +https://github.com/zeionara/cold;An experimental tool for improving recommender systems by considering more data about source annotations;no_research;Python +https://github.com/zeionara/college;Configuration files for redragon legend chroma mouse;no_research; +https://github.com/zeionara/colorful-prompt;Project that allows you to set up a better prompt which arguably is more beatiful than the default one and provides you more information about your environment.;no_research;Shell +https://github.com/zeionara/conky;Conky config files;no_research; +https://github.com/zeionara/countdown;A simple tool for visualizing remaining time for an event;no_research;Vue +https://github.com/zeionara/cuco;Project for making it easier to write configuration files which may be automatically converted into a set of alternative system setups;no_research;Python +https://github.com/zeionara/decay;A simple client-server application which factorizes numbers;no_research;Python +https://github.com/zeionara/docker-tools;Useful aliases and scripts for docker which simplify routine operations;no_research;Shell +https://github.com/zeionara/dsgen;A legacy project which still allows to generate reliable passwords, adorable nicknames and beautiful pictures;no_research; +https://github.com/zeionara/duolingo-farmer;An exploratory project for finding out cunning ways of gaining xp on duolingo;no_research;Shell +https://github.com/zeionara/envy;A miniature tool for flattening configuration files;no_research;Swift +https://github.com/zeionara/errand;Evaluation of random number generation functions performance;no_research;Python +https://github.com/zeionara/excellent;A tiny program for analyzing exam passing results;no_research;Swift +https://github.com/zeionara/explanator;Searcher for words definition;no_research;Python +https://github.com/zeionara/fact-ru-eval2stanford;Convert fact-ru-eval dataset to the stanford ner format;no_research;Python +https://github.com/zeionara/fastai-text-classification;First attempts to utilize s4tf framework for solving text-classification problem using a pretrained fastai model;no_research;Jupyter Notebook +https://github.com/zeionara/fermale;An exploratory project for testing ways in which fermionic systems can be applied to solve machine learning problems;no_research;Python +https://github.com/zeionara/formal_languages_and_grammars;Homeworks for 'formal languages and grammars' discipline;no_research;C++ +https://github.com/zeionara/fpubasics;There is a project, which demonstrates base functional of FPU;no_research;Assembly +https://github.com/zeionara/fuck;A tiny program for uncensoring russian texts;no_research;Python +https://github.com/zeionara/gallery;A small website working under laravel with collection of my favourite pieces of art ;no_research;PHP +https://github.com/zeionara/git-tools;Useful aliases and scripts for git which simplify routine operations;no_research;Shell +https://github.com/zeionara/goloss;A small tool which performs automatic adjustments of the sound level on your device to keep in down even when something loud happens;no_research;Go +https://github.com/zeionara/google-sheets-notifier;A simple app for generating telegram notifications on google sheets change events;no_research;Python +https://github.com/zeionara/graggy;Knowledge graph generation tool for embeddings models evaluation;no_research;TypeScript +https://github.com/zeionara/grapex;An experimental library for implementing knowledge graph embedding models using `elixir`;no_research;Elixir +https://github.com/zeionara/hairdressers;Kursach for 'modeling' discipline;no_research;HTML +https://github.com/zeionara/ifmo;My studying files;no_research;Assembly +https://github.com/zeionara/iglu-starter-kit;An updated iglu challenge configuration;no_research;Python +https://github.com/zeionara/imagination;Converter from text to set of images;no_research;TypeScript +https://github.com/zeionara/input-tools;A collection of scripts for automating tedious input devices interactions;no_research;Shell +https://github.com/zeionara/jswing;There is a project, which demonstrates base functional of the Java Swing API, JMX and Client-Server interaction;no_research;Java +https://github.com/zeionara/key_value_searcher;;no_research;PHP +https://github.com/zeionara/kitchen;Practice-2017 project;no_research;JavaScript +https://github.com/zeionara/kubetools;Useful aliases and scripts for kubernetes which simplify routine operations;no_research;Shell +https://github.com/zeionara/kute;Assets for testing and experimenting with kubernetes;no_research;Swift +https://github.com/zeionara/leastsquares;Simple example of counting approximation by least squares using JavaFX;no_research;Java +https://github.com/zeionara/less;Experiments with the latest language processing models and lang-chain package;no_research;Python +https://github.com/zeionara/level;Data formatting tool which allows to structure information stored as tables or in plain text using language models;no_research;Python +https://github.com/zeionara/main-timer;A legacy project for time management based on adobe flash which allows to setup multiple sequential timers;no_research; +https://github.com/zeionara/marude;An http api client which allows to automatically convert russian short texts into speech using vk cloud;research;Python +https://github.com/zeionara/maya;Youtube cli interface for downloading media;no_research;Python +https://github.com/zeionara/meager;Graph embeddings measurer - a tool for computing metrics for testing knowledge graph embedding models;no_research;C++ +https://github.com/zeionara/microcoding;Kursach for 'computers organisation' discipline;no_research;C++ +https://github.com/zeionara/misca;A small tool for fetching upcoming showtimes from Mirage cinema theater website;no_research;Python +https://github.com/zeionara/ml-in-r;Learning how to do basic ml tasks using R language;no_research;R +https://github.com/zeionara/mlook;Web app for movie info aggregation;no_research;Python +https://github.com/zeionara/movies_chest_bot_;Telegram bot helping with searching for movies;no_research;Python +https://github.com/zeionara/much;A small utility for crawling text from 2ch;no_research;Python +https://github.com/zeionara/mutant;Experiments with the latest tensorflow and huggingface libraries;no_research;Python +https://github.com/zeionara/neeko;User and project name generator, which makes nicknames following given rules;no_research;Ballerina +https://github.com/zeionara/nerd-fonts;Fonts for developers containing non-standard characters;no_research;Shell +https://github.com/zeionara/nest;A library containing some basic functions for approximate computation of mathematical values;no_research;Swift +https://github.com/zeionara/new;Project initialization scripts;no_research;Shell +https://github.com/zeionara/nickhunter;A small website working on django for generating and exploring nicknames;no_research;Python +https://github.com/zeionara/nvim-configs;Configuration files for setting up neovim;no_research;Lua +https://github.com/ZikangXiong/diff-spec;Differentiable Symbolic Specification;research;Python +https://github.com/ZikangXiong/docker-template-for-paper-replication;Template for packing a dependency-free and reusable code repository. ;no_research;Shell +https://github.com/ZikangXiong/GNN-Robust;;no_research;Python +https://github.com/ZikangXiong/hd-map-encoding;;no_research; +https://github.com/ZikangXiong/ma-drone;;no_research;Python +https://github.com/ZikangXiong/MFNLC;[IROS 22'] Model-free Neural Lyapunov Control;research;Python +https://github.com/ZikangXiong/mobrob;Mobile Robot Control via Goal-Conditioned Reinforcement Learning;research;Python +https://github.com/ZikangXiong/rl-detect-and-denoise-defense;[ECML 22'] Defending Observation Attacks in Deep Reinforcement Learning via Detection and Denoising;research;Python +https://github.com/ZikangXiong/RobotDesign;;research;C++ +https://github.com/ZikangXiong/STL-Mobile-Robot;Turn STL formulas into maps and planed paths, control robots with DRL controllers.;no_research;Python +https://github.com/ZikangXiong/ToyRLAlgorithms;;no_research;Python +https://github.com/ZikangXiong/two-d-nav-gym;Pure-python-based, lightweight 2d-navigation environments.;no_research;Python +https://github.com/ZikangXiong/VRL_CodeReview;[PLDI 19'] An Inductive Synthesis Framework for Verifiable Reinforcement Learning;no_research;Python +https://github.com/zitterbewegung/arduinotemp.js;Example of an Explora board putting the current temperature in javascript.;no_research;JavaScript +https://github.com/zitterbewegung/awesome-computational-topology;Resources and Software for Computational Topology;no_research; +https://github.com/zitterbewegung/Belmod;A smart contract system that generates smart contracts using the Rosette Language and Z3;no_research;Racket +https://github.com/zitterbewegung/bottlepy-user-auth;Basic python module to manage user's authentication with bottle;no_research;Python +https://github.com/zitterbewegung/Cooking-with-Ether;A cookbook of common and possibly uncommon things you can do with solidity.;no_research; +https://github.com/zitterbewegung/cs398;Project for cs 398;no_research;Java +https://github.com/zitterbewegung/cs424;Homework for cs 424;no_research;Java +https://github.com/zitterbewegung/cs424project4group6;Project 4 Radio Ga Ga (Last fm visualization);no_research;Ruby +https://github.com/zitterbewegung/DDiagram2PD_code;Here we take a d-diagram as input and we return a PD-code.;no_research;Jupyter Notebook +https://github.com/zitterbewegung/django-blockchained;Starter project to use django with web3 to interact with the ethereum network.;no_research;Python +https://github.com/zitterbewegung/dmc-hackathon;Processed data / models for the dmc hackathon;no_research;Jupyter Notebook +https://github.com/zitterbewegung/gitspiration;Idea storage system;no_research; +https://github.com/zitterbewegung/IsekaiVN;This is a visual novel that does not exist.;no_research; +https://github.com/zitterbewegung/lambda-magma-experiments;A Simply Typed Lambda Calculus with a Distributive Groupoid. Independent Research Project;no_research;Mathematica +https://github.com/zitterbewegung/learning-the-little-prover;Me working through everything in the little prover;no_research;Common Lisp +https://github.com/zitterbewegung/llmsh;A large language model as your terminal shell.;no_research;Python +https://github.com/zitterbewegung/mms2text;An twilio chatbot that when given a picture it outputs a guess of the image contents (a concept) using Clarfai.;no_research;Python +https://github.com/zitterbewegung/my-personal-configs;Repository of all of my configuration files so from nothing my new environment can be created.;no_research;Emacs Lisp +https://github.com/zitterbewegung/mynotebooks;Collection of juypter notebooks I have.;no_research;Jupyter Notebook +https://github.com/zitterbewegung/recipict;Take a picture and get a recipe!;no_research;JavaScript +https://github.com/zitterbewegung/recipict2;Reimplementation of take a picture and get a recipe by using on device image recognition;no_research;JavaScript +https://github.com/zitterbewegung/Redtxt;Allows you to encrypt texts on your phone. Released under the gnu gpl.;no_research;Java +https://github.com/zitterbewegung/s2-geometry-library;Automatically exported from code.google.com/p/s2-geometry-library;no_research;C++ +https://github.com/zitterbewegung/saturday;A natural language chatbot accessible using SMS augmented with tools using langchain.;no_research;Python +https://github.com/adamretter/akkajaure;Generic Object Pools built on Akka;no_research;Scala +https://github.com/adamretter/appbundler;;no_research;Java +https://github.com/adamretter/asymmetrical-locking;Various patterns for asymmetrical locking;no_research;Java +https://github.com/adamretter/bintray-export;bintray-export;no_research;Java +https://github.com/adamretter/blogxq;A simple Blog application written in XQuery 1.0;no_research;JavaScript +https://github.com/adamretter/ci-dynamic-parallel-jobs-example;An example of executing parallel jobs dynamically;no_research; +https://github.com/adamretter/ctd-omega-service-cats-effect;;no_research;Scala +https://github.com/adamretter/ctd-omega-service-loader-example;;no_research;Scala +https://github.com/adamretter/data.devon.gov.uk;RESTXQ API for data.devon.gov.uk;no_research;XQuery +https://github.com/adamretter/exist-puppet;Puppet manifests for eXist-db;no_research;HTML +https://github.com/adamretter/expath-package-archetype;Maven Archetype for EXPath Packages;no_research;XQuery +https://github.com/adamretter/is-it-dead-yet;;no_research;HTML +https://github.com/adamretter/java-hash-benchmark;Quick and dirty benchmark of some Java hash functions;no_research;Java +https://github.com/adamretter/jenkins-scala-plugin;Scala plugin for Jenkins;no_research;Java +https://github.com/adamretter/lizbert;Lizbert Platform Game in HTML5;no_research;JavaScript +https://github.com/adamretter/logging-log4j2;Fork of http://git-wip-us.apache.org/repos/asf/logging-log4j2.git;no_research;Java +https://github.com/adamretter/markupuk2020;Code from my webinar - XQuery is the Plumber's Toolkit;no_research;XQuery +https://github.com/adbar/adbar;;no_research; +https://github.com/adbar/coronakorpus;Material zum Aufbau eines deutschsprachigen COVID-19-Webkorpus / Building a corpus in German dedicated to coronavirus;research; +https://github.com/adbar/corpus-visualizer;Explore, visualize and publish corpora as CSS/XHTML documents;no_research;CSS +https://github.com/adbar/courlan;Clean, filter and sample URLs to optimize data collection – includes spam, content type and language filters;research;Python +https://github.com/adbar/equipe-crawler;Automatically exported from code.google.com/p/equipe-crawler;no_research;Perl +https://github.com/adbar/flux-toolchain;Filtering and Language-identification for URL Crawling Seeds (FLUCS) a.k.a. FLUX-Toolchain;research;Perl +https://github.com/adbar/geokelone;integrates spatial and textual data processing tools into a modular software package which features preprocessing, geocoding, disambiguation and visualization;research;Python +https://github.com/adbar/German-NLP;Curated list of open-access/open-source/off-the-shelf resources and tools developed with a particular focus on German;no_research; +https://github.com/adbar/german-reddit;Extraction of a German Reddit Corpus;research;Python +https://github.com/adbar/gps-corpus-builder;Automatically exported from code.google.com/p/gps-corpus-builder;no_research;Perl +https://github.com/adbar/htmldate;Fast and robust date extraction from web pages, with Python or on the command-line;research;Python +https://github.com/adbar/jlcl-style;Experiments to modernize the LaTeX class of the JLCL;no_research;TeX +https://github.com/adbar/laclos;LAnguage-CLassified OpenSubtitles;research;Python +https://github.com/adbar/microblog-explorer;Perform crawls of social networks (identi.ca, reddit, friendfeed) to gather internal and external links and identify their language;research;Python +https://github.com/adbar/shoten;;no_research;Python +https://github.com/adbar/simplemma;Simple multilingual lemmatizer for Python, especially useful for speed and efficiency;research;Python +https://github.com/adbar/toponyms;Old prototype for toponym extraction in historical texts written in German;no_research; +https://github.com/adbar/trafilatura;Python & command-line tool to gather text on the Web: web crawling/scraping, extraction of text, metadata, comments;no_research;Python +https://github.com/adbar/trafilatura_gui;;no_research;Python +https://github.com/adbar/tweets-tools;Diverse tools used with Twitter data;no_research;Python +https://github.com/adbar/url-compressor;A fast pattern-based URL compression for lists of links;no_research;Pascal +https://github.com/adbar/valency-oriented-chunker;A one-pass FSA valency-oriented chunker for German (proof of concept);research;Perl +https://github.com/adbar/vardial-experiments;Experiments conducted on the occasion of the VarDial shared tasks;research;Python +https://github.com/adbar/zeitcrawler;Automatically exported from code.google.com/p/zeitcrawler;no_research;Java +https://github.com/adriantoine/alfred-asana;Asana search for Alfred;no_research;JavaScript +https://github.com/adriantoine/ava-enzyme-demo;Example project with AVA + React + Enzyme;no_research;JavaScript +https://github.com/adriantoine/ava-jsx-test-helpers-demo;Example project with React + jsx-test-helpers + AVA;no_research;JavaScript +https://github.com/adriantoine/ava-unexpected-react-demo;Example project with React + unexpected-react + AVA;no_research;JavaScript +https://github.com/adriantoine/babel-plugin-webpack-alias-examples;Examples for babel-plugin-webpack-alias;no_research;JavaScript +https://github.com/adriantoine/blog;;no_research;TypeScript +https://github.com/adriantoine/bloql;Blog engine powered by React using Relay and GraphQL to interact with data;no_research;JavaScript +https://github.com/adriantoine/bloql-examples;Examples to demonstrate bloql blog engline;no_research;JavaScript +https://github.com/adriantoine/bloql-markdown-file-database;Markdown file database for bloql blog engine;no_research;JavaScript +https://github.com/adriantoine/depensitor;WIP;no_research;JavaScript +https://github.com/adriantoine/docker-yarn;A docker container with node and yarn pre-installed without using npm installer;no_research; +https://github.com/adriantoine/enzyme-to-json;Snapshot test your Enzyme wrappers;no_research;JavaScript +https://github.com/adriantoine/eslint-codeframe-formatter;ESLint formatter using babel code frame;no_research;JavaScript +https://github.com/adriantoine/eslint-config-xo-preact;ESLint shareable config for Preact to be used with eslint-config-xo;no_research;JavaScript +https://github.com/adriantoine/gatsby-starter-default-typescript;The most simple gatsby starter;no_research;CSS +https://github.com/adriantoine/generator-elm-electron;Generate an Electron application using Elm as a front end;no_research;JavaScript +https://github.com/adriantoine/hex-to-hsl;Convert a hex color string to an hsl array;no_research;JavaScript +https://github.com/adriantoine/indiestack;;no_research;TypeScript +https://github.com/adriantoine/inside-babel-stages;Inside Babel stages: discover more about the features you've already installed;no_research; +https://github.com/adriantoine/kewler;Simple functional and immutable color manipulation library;no_research;JavaScript +https://github.com/adriantoine/old-adriantoine.com;My personal website sources http://adriantoine.com/;no_research;TypeScript +https://github.com/adriantoine/preact-assert-equal-jsx;assertEqualJSX for Preact;no_research;JavaScript +https://github.com/adriantoine/preact-enroute;Small preact router (preact port of https://github.com/tj/react-enroute);no_research;JavaScript +https://github.com/adriantoine/react-circular;Higher Order Component to position elements in a circular pattern;no_research;JavaScript +https://github.com/adriantoine/snowpack-typescript-bug;;no_research;TypeScript +https://github.com/adriantoine/writing-blog;Personal writing blog;no_research;TypeScript +https://github.com/AgnieszkaFalenska/GeBNLP2021;;no_research;Python +https://github.com/AgnieszkaFalenska/IMSnPars;IMS Neural Dependency Parser;research;Python +https://github.com/AlainCouthures/declarative4all;XQuery and XForms implementations written in Javascript;no_research;JavaScript +https://github.com/AlainCouthures/Fleur;Fleur is an extended DOM implementation;no_research;JavaScript +https://github.com/AlainCouthures/xsltforms;XForms to XHTML+Javascript (AJAX) conversion based on a unique XSL transformation. Suitable server-side (PHP) or client-side (Google Chrome, Edge, Internet Explorer, Mozilla FireFox, Opera, Safari) browser treatment where an XSLT 1.0 engine is available;no_research;HTML +https://github.com/alessandroenea/opener-docker;Docker image for the OpeNER project;no_research; +https://github.com/alexmilowski/allegrograph-docker;A simple configuration for running AllegroGraph via Docker;no_research;Makefile +https://github.com/alexmilowski/bunny;"A simple task operation library to ""hop"" from state to state.";no_research;Python +https://github.com/alexmilowski/data-science;Code snippets for data acquisition and organization in data science.;no_research;HTML +https://github.com/alexmilowski/db-component;;no_research;JavaScript +https://github.com/alexmilowski/docker;Various Docker Recipes;no_research;Shell +https://github.com/alexmilowski/duckpond;A semantic pond for content delivery.;no_research;Python +https://github.com/alexmilowski/emr;Elastic Map Reduce Samples;no_research;Python +https://github.com/alexmilowski/epub-examples;Examples of EPUB;no_research; +https://github.com/alexmilowski/flask-openwhisk;An experimental integration of Flask on OpenWhisk;no_research;Python +https://github.com/alexmilowski/flask-serverless;A demonstration of deploying flask on serverless (FaaS);no_research;JavaScript +https://github.com/alexmilowski/goodies;A goodie bag of various specifications written by me (Alex Miłowski);no_research;Python +https://github.com/alexmilowski/green-turtle;An RDFa 1.1. implementation for browsers.;no_research;JavaScript +https://github.com/alexmilowski/http-functions;A neutral layer for integration with various serverless platforms (e.g. AWS Lambda, OpenWhisk, etc.);no_research; +https://github.com/alexmilowski/iolab;UC Berkeley IO Lab Examples and Homework;no_research;Python +https://github.com/alexmilowski/jhmm;jHMM is a library and application for handling Hidden Markov Models that is written in Java. ;no_research; +https://github.com/alexmilowski/k8s-auth;A simple authorization proxy for forwarding principals;no_research;Python +https://github.com/alexmilowski/k8s-next;A set of utilities for K8s workflows;no_research;Python +https://github.com/alexmilowski/k8s-s3-spark;Some documentation and examples of building spark with S3 support for use in Kubernetes;no_research;Python +https://github.com/alexmilowski/k8s-tools;;no_research; +https://github.com/alexmilowski/littleflow;A flow language;no_research;CSS +https://github.com/alexmilowski/loon;An experiment in Property Graphs, NLP, and Blogs;no_research;Python +https://github.com/alexmilowski/mark5;A CommonMark to HTML5 conversion utility.;no_research;Python +https://github.com/alexmilowski/marklogic;A variety of public resources for the MarkLogic database;no_research; +https://github.com/alexmilowski/meditari;A semantic hybridization annotation system for Web resources.;no_research;JavaScript +https://github.com/alexmilowski/mesonet;The source behind mesonet.info;no_research; +https://github.com/alexmilowski/milowski;;no_research; +https://github.com/alexmilowski/milowski-journal;The source to my journal.;no_research;JavaScript +https://github.com/alexmilowski/nlp-ner-redis;NLP Named Entity Recognition with Redis;no_research; +https://github.com/alexmilowski/opennex;;no_research;Python +https://github.com/alexmilowski/poster;The Poster Browser Extension;no_research; +https://github.com/alexmilowski/pygobo;Property Graphs for Open Biological and Biomedical Ontologies in Python;research;Python +https://github.com/alexmilowski/pyox;A simple REST client library for Hadoop / Knox in Python;no_research;Python +https://github.com/alexmilowski/pypropgraph;Python Property Graph Library;no_research;Python +https://github.com/alexmilowski/redis-aqi;A demonstration of the geospatial features of Redis to interpolate an AQI (Air Quality Index) from sensor data.;no_research;Python +https://github.com/alexmilowski/redis-k8s-scratch;Random Redis K8s Stuff;no_research;Python +https://github.com/alexmilowski/redis-modules-docker;A simple utility for building docker images for Redis with various module support.;no_research;Python +https://github.com/alexmilowski/rope;Redis Operator;no_research;Python +https://github.com/alexmilowski/rqse;Queued Service Events for Redis;no_research;Python +https://github.com/alexmilowski/schema.js;An in-browser RDF schema documentation generation tool.;no_research;JavaScript +https://github.com/alexmilowski/service-proxy;"A simple ""proxy aware"" proxy for a service";no_research;Python +https://github.com/alexmilowski/sparql-jsonld;A simple JSON-LD service interface to a SPARQL endpoint;no_research;Python +https://github.com/alexmilowski/xproclet;An XProc-enabled Restlet Server;no_research;Java +https://github.com/alexmilowski/yamlblog;A simple YAML-based blog entry format.;no_research;Python +https://github.com/anoff/advent-of-code-2017;polyglot solutions for the 2017 advent of code challenge;no_research;C +https://github.com/anoff/AIDN-Recognizer;;no_research;HTML +https://github.com/anoff/AIND-CNN;Udacity AI Nanodegree on CNN;no_research;Jupyter Notebook +https://github.com/anoff/AIND-CNN-dogbreed;Dogbreed project for udacity AIND;no_research;Jupyter Notebook +https://github.com/anoff/AIND-CV-FacialKeypoints;;no_research;HTML +https://github.com/anoff/AIND-isolation;My version of the udacity AI nanodegree isolation project;no_research;Python +https://github.com/anoff/AIND-opencv;Notebook to follow alongs udacity AI nanodegree on computer vision with opencv;no_research;Jupyter Notebook +https://github.com/anoff/AIND-planning;see udacity original repo;no_research;Python +https://github.com/anoff/aind-rnn;udacity artificial intelligence recurrent neural net project;no_research;HTML +https://github.com/anoff/alfred-github;Alfred 3 workflow to find to projects in github;no_research;JavaScript +https://github.com/anoff/antora-arc42;First antora repo with an arc42 template;no_research;Shell +https://github.com/anoff/antora-arc42-mediaman;lvl1 component;no_research; +https://github.com/anoff/antora-arc42-ui;antora UI bundle for the arc42 template;no_research;CSS +https://github.com/anoff/antora-ui-bootstrap;a bootstrap UI for antora site generator;no_research;CSS +https://github.com/anoff/aoc-2022;my advent of code 2022 in python;no_research;Python +https://github.com/anoff/asciidoctor-plantuml-antora;;no_research; +https://github.com/anoff/autoscaling-ci-agents-on-aks;codebase for my blogpost XYZ;no_research;Python +https://github.com/anoff/azure-fns-demo;Demo for nodeJS deployment on azure functions ⚡️ ;no_research; +https://github.com/anoff/azure-keyvault-secretstore;Easily use Azure KeyVault to manage secrets in Function Apps;no_research;JavaScript +https://github.com/anoff/blockchain-playground;some python analysis on the btx blockchain;no_research;Python +https://github.com/anoff/blog;anoff's blog;no_research;TeX +https://github.com/anoff/bluetooth-rest;node based REST API to manage bluetooth devices and send serial commands;no_research; +https://github.com/anoff/cryptobooks;keep track of your cryptocurrencies stored on multiple hot/cold wallets📈📚;no_research;JavaScript +https://github.com/anoff/cz-conventional-kawaii;Allow emojified commit messages and clean changelogs 🐼📄;no_research;JavaScript +https://github.com/anoff/dancingemojis;visualize audio using emojis - because that's what I learned at jsconf.eu 2017;no_research;JavaScript +https://github.com/anoff/deep-emoji-gan;being creative with AI and emojis 🙂 🤖;no_research;Jupyter Notebook +https://github.com/anoff/demo-one;My first attempt at writing a C++ based graphics demo;no_research;C++ +https://github.com/anoff/devradar-static;a fork-friendly repo for your personal devradar;no_research; +https://github.com/anoff/devradar-web;devradar homepage;no_research;HTML +https://github.com/anoff/docker-compose-influxdb-grafana;The ultimate stack for your self-hosted, internet accessible monitoring suite;no_research;Shell +https://github.com/anoff/dotfiles;my OSX dotfiles;no_research;Shell +https://github.com/anoff/extra-btc;extrapolate bitcoin market trends with fancy graphs and lambda functions 📈ƛ🐦;no_research;Python +https://github.com/anoff/gitlab-issue-status;Web App to show gitlab issues over multiple milestones;no_research;JavaScript +https://github.com/anoff/gitlab-milestones;view gitlab milestones;no_research;JavaScript +https://github.com/anoff/go-fun;azure fun(ctions) with go;no_research;Go +https://github.com/anoff/gofollow;a take at using Go on the twitter API;no_research;Go +https://github.com/anoff/home;🏠 configs and setups for various things at home;no_research; +https://github.com/anoff/hubot-lovebot;spreading random love (random http://thecodinglove.com/ images);no_research;CoffeeScript +https://github.com/anoff/hyper-monokai-light;monokai theme with white background 💖 for hyper.js⚡️;no_research;JavaScript +https://github.com/anoff/is-opposed-angle;check if two angles are in opposite direction;no_research;JavaScript +https://github.com/anoff/is-same-angle;check if two angles are pointing in the (almost) same direction;no_research;JavaScript +https://github.com/anoff/kuruka;in-browser game inspired by race the sun using THREE.js;no_research;HTML +https://github.com/anoff/led-matrix;playground for WS2812b LED matrix;no_research;C++ +https://github.com/anoff/meteor-ng1-boilerplate;my boilerplate for an angular1 meteor app using material;no_research;JavaScript +https://github.com/anoff/microllaborators;microllaborators 👩‍👦‍👦🔮🔬👩‍🏫 - the revolution in teaching;no_research;Max +https://github.com/anoff/mobcards;cardgames made for smartphones;no_research;JavaScript +https://github.com/anoff/nd101;udacity deep learning nanodegree foundation;no_research;Jupyter Notebook +https://github.com/anoff/node-ci-dummy;A node dummy project that gets built from Gitlab CI being hosted on Github;no_research;JavaScript +https://github.com/anoff/node-vue-websockets;demo how to integrate node backend with vue frontend and websockets;no_research;JavaScript +https://github.com/anoff/panda-fun;playing around with python 3d game engine;no_research; +https://github.com/anoff/phaser-happybird;my first take on phaser;no_research;JavaScript +https://github.com/anoff/phaser-microlight;traffic light / vehicle behavior simulation based on phaser;no_research;JavaScript +https://github.com/anoff/plantbuddy;nodeMCU based moisture monitoring for plants 🌱 with a serverless backend;no_research;Vue +https://github.com/anoff/pres-ava;lightning talk on avajs for stuttgartjs-meetup 12/2016;no_research;CSS +https://github.com/anoff/pres-nodebots-2017-03-09;presentation held on nodebots during the @nodemeetup Stuttgart;no_research;JavaScript +https://github.com/anoff/pres-yarn;presentation of first experiences with yarn;no_research;CSS +https://github.com/anoff/probr;room climate surveillance kit;no_research;C++ +https://github.com/anoff/py-desktop-automation-playground;;no_research; +https://github.com/anoff/remote-code;live-reload for ssh connected devices 🐪 ;no_research;JavaScript +https://github.com/anoff/revealmd-test;;no_research; +https://github.com/anoff/ric;robotic interactive companion - stuttgart hackathon 2018;no_research;JavaScript +https://github.com/anoff/robby5;autonomous robot car 🤖🚗;no_research;JavaScript +https://github.com/anoff/serial-io;serialport interface for batch style commands;no_research;JavaScript +https://github.com/anoff/simple-decisions;;no_research;Vue +https://github.com/anoff/skikitlearn;data anyltics on gps ski tracks ⛷📈;no_research;Python +https://github.com/ariporad/2048-cpp;A clone of 2048 in C++;no_research;C++ +https://github.com/ariporad/a-block-cli;The CLI for A Block (Commit message validation);no_research;JavaScript +https://github.com/ariporad/a-block-cli-old;This repository is old. It has been moved to;no_research;JavaScript +https://github.com/ariporad/ablock;Commit message validation for github;no_research;JavaScript +https://github.com/ariporad/ActivityGraph;;no_research; +https://github.com/ariporad/AFFC;[WIP] Automatic Scoring for the Olin West Hall Foosball Table;no_research;C++ +https://github.com/ariporad/ai-2048;;no_research; +https://github.com/ariporad/alfred-molar-mass-calculator;Calculate the Molar Mass of Molecules;research;JavaScript +https://github.com/ariporad/ArduinoKit;A framework for controlling Arduinos with Swift or Objective-C. WARNING: WORK IN PROGRESS;no_research;Objective-C +https://github.com/ariporad/auto-load-dir;A simple module to auto load modules from a dir.;no_research;JavaScript +https://github.com/ariporad/babel-preset-features;babel-features as a babel preset;no_research;JavaScript +https://github.com/ariporad/birding;Birding AaaVG (Activity as a Video Game);no_research;JavaScript +https://github.com/ariporad/blueberry;;no_research; +https://github.com/ariporad/comprobo-vision-project;;no_research;Jupyter Notebook +https://github.com/ariporad/Cone-Cell-Model;A 3D model of a cone cell for SAAS Science 8 w/ Lauren Allen;no_research;JavaScript +https://github.com/ariporad/dotfiles;My Dotfiles;no_research;Python +https://github.com/ariporad/Elements.js;[UNMAINTAINED] A Javascript File That Lets You Refer to An Element By Name.;no_research;JavaScript +https://github.com/ariporad/enseack;ENSEACK 2023;no_research;C++ +https://github.com/ariporad/eslint-config-ariporad;;no_research;JavaScript +https://github.com/ariporad/FAI;Coursework from Brandeis's COSI 101A: Fundamentals of Artificial Intelligence with Dr. Jordan Pollack, Spring 2021;no_research;Jupyter Notebook +https://github.com/ariporad/FAME-OS;;no_research;C +https://github.com/ariporad/fix-gh-notifications;My github notifications are broken. This is a repo which can send me notifications so I can troubleshoot.;no_research; +https://github.com/ariporad/generator-boilerplate-generator-test-boilerplate;A boilerplate for testing generator-boilerplate-generator;no_research;HTML +https://github.com/ariporad/generator-boilerplate-generator-test-output;A known good output for generator-boilerplate-generator using generator-boilerplate-generator-test-boilerplate as a boilerplate;no_research; +https://github.com/ariporad/generator-semantic-release-plugin;A generator for a semantic release plugin.;no_research;JavaScript +https://github.com/ariporad/git-demo;;no_research; +https://github.com/ariporad/git-demo-2;;no_research; +https://github.com/ariporad/grandmaster;;no_research;C++ +https://github.com/ariporad/gulp-test-exit-1-on-empty-rejected-promise;Testing if gulp exits non-zero when promises are rejected with various values.;no_research;JavaScript +https://github.com/ariporad/hanbot;A Bot for the Olin College of Engineering Class of 2024 Discord;no_research;TypeScript +https://github.com/ariporad/HOT;Coursework from Rob Martello's History of Technology (HOT) in Fall 2020 at Olin College;no_research; +https://github.com/ariporad/hubot-next;Another Satisfied Customer;no_research;CoffeeScript +https://github.com/ariporad/is-ascii;Test if a string is 100% ascii;no_research;JavaScript +https://github.com/ariporad/ISIM;Coursework from Olin's Introduction to Sensors, Instrumentation, and Measurement (ISIM) in Spring 2021;no_research;TeX +https://github.com/ariporad/karel;Karel the Dog for JS;no_research;JavaScript +https://github.com/ariporad/laserscan;;no_research;C++ +https://github.com/ariporad/markdown-cornell;;no_research;JavaScript +https://github.com/ariporad/MilkDuds;A library for creating and managing duds for test's in Node.js. Framework antagonistic. VERY MUCH A WORK IN PROGRESS.;no_research;JavaScript +https://github.com/ariporad/ModSim;Coursework from Olin's Modeling and Simulation of the Physical World course.;no_research;MATLAB +https://github.com/ariporad/ModSim-Project-3;Project 3 from Olin's Modeling and Simulation of the Physical World course.;no_research;MATLAB +https://github.com/ariporad/ModSim-Solar-House;Project 2 from Olin's Modeling and Simulation of the Physical World course. An iterative model of a passively-heated Solar House written in MATLAB.;no_research;MATLAB +https://github.com/ariporad/modular-redux;Build completely modular applications with redux;no_research;JavaScript +https://github.com/ariporad/module-boilerplate;A simple node module boilerplate;no_research;JavaScript +https://github.com/ariporad/mr-dealer;[WIP] A simple multiplayer poker app;no_research;TypeScript +https://github.com/ariporad/my-super-tiny-compiler;An experiment in building a very simple compiler.;no_research;TypeScript +https://github.com/ariporad/node-boilerplate;A Boilerplate for Node.js designed specifically for me!;no_research;JavaScript +https://github.com/ariporad/node-module-boilerplate;A boilerplate node module;no_research;JavaScript +https://github.com/ariporad/old-simple-landing-page;My Website;no_research;HTML +https://github.com/ariporad/olin.link;A URL Shortener for Olin;no_research;TypeScript +https://github.com/ariporad/pacman.py;[WIP;no_research;Python +https://github.com/ariporad/PIE-MiniProject-3;;no_research;Jupyter Notebook +https://github.com/ariporad/PIE-MiniProject2;;no_research;Jupyter Notebook +https://github.com/ariporad/Products-and-Markets;Coursework from Olin's Introduction to Sensors, Instrumentation, and Measurement (ISIM) in Spring 2021;no_research; +https://github.com/ariporad/promisify-supertest;SuperTest + Promises;no_research;JavaScript +https://github.com/ariporad/QEA;Coursework for Olin's Quantitative Engineering Analysis;no_research;MATLAB +https://github.com/ariporad/react-spa-boilerplate-server;The server for my React SPA boilerplate.;no_research;JavaScript +https://github.com/asafigan/bevy-snake;A snake clone;no_research;Rust +https://github.com/asafigan/bevy_jam_2;You are a wizard that loves combining and mixing his spells.;no_research;Rust +https://github.com/asafigan/conways-snowflake;Symmetrical Conway's Game of Life Universes ;no_research;Rust +https://github.com/asafigan/EulerStuff;ProjectEulerCode;no_research;JavaScript +https://github.com/asafigan/game-off-2021;Cordyceps: defend against zombie bugs;no_research;GDScript +https://github.com/asafigan/impl-iter-tuple-kind-of;;no_research;Rust +https://github.com/asafigan/jest-upgrade-issue;Reproduction of 10x slowdown on jest upgrade;no_research;TypeScript +https://github.com/asafigan/memory-game-prototype;;no_research;Rust +https://github.com/asafigan/pdfium_rs;A Rust wrapper around PDFium allowing you to render PDFs from Rust;no_research;Rust +https://github.com/asafigan/rust-project-euler;euler problems in rust;no_research;Rust +https://github.com/asafigan/study-of-sky-boxes;Mapping sky boxes onto object in the environment.;no_research;JavaScript +https://github.com/asafigan/webrtc-tron;;no_research;Vue +https://github.com/axellelecroq/corresphumboldtlite;Discover the correspondence of Alexander von Humboldt with data visualisations in your browser.;research;Python +https://github.com/axellelecroq/Dachboden_app;;no_research;Dart +https://github.com/axellelecroq/digital-edition-bestiaire;"Digital edition of the medieval manuscript ""Vie de Saints"" by Richard de Fournival";research;HTML +https://github.com/axellelecroq/humboldtlite;;no_research;Python +https://github.com/axellelecroq/leonore-dataviz;Data visualisations about the recipients of the french Legion of Honour (Leonore database).;no_research;Python +https://github.com/axellelecroq/masterthesis_tnah;Repository for my master thesis at the École nationale des chartes;no_research;TeX +https://github.com/axellelecroq/pantheonisees; Flask web app presenting the people buried in the Pantheon (Paris).;no_research;Python +https://github.com/BarryThePenguin/advent-of-code;;no_research;TypeScript +https://github.com/BarryThePenguin/BarryThePenguin;;no_research; +https://github.com/BarryThePenguin/butter;Twitter client for Bukkit;no_research;Java +https://github.com/BarryThePenguin/digital-sky;;no_research; +https://github.com/BarryThePenguin/dotfiles;;no_research;Shell +https://github.com/BarryThePenguin/gillyreads.com;;no_research;Handlebars +https://github.com/BarryThePenguin/gulp-tasks;A collection of gulp tasks I use on different projects;no_research;JavaScript +https://github.com/BarryThePenguin/hcard;;no_research;JavaScript +https://github.com/BarryThePenguin/invoice-generator;;no_research;Elm +https://github.com/BarryThePenguin/isnickysicky.today;;no_research;HTML +https://github.com/BarryThePenguin/jonno.dev;;no_research;TypeScript +https://github.com/BarryThePenguin/knowledge; :bulb: document everything;no_research;HTML +https://github.com/BarryThePenguin/nextjs-otel-high-cardinality;;no_research;TypeScript +https://github.com/BarryThePenguin/postcss-typography;A postcss plugin for typography.js;no_research;JavaScript +https://github.com/BarryThePenguin/premark;;no_research;JavaScript +https://github.com/BarryThePenguin/remark-cli-help;Add cli help output to a README with remark.;no_research;JavaScript +https://github.com/BarryThePenguin/securityheaders;;no_research;TypeScript +https://github.com/BarryThePenguin/simple-desktop-images;;no_research;TypeScript +https://github.com/BarryThePenguin/test;test repository for SparkleShare;no_research; +https://github.com/BarryThePenguin/yellowbernard.com.au;;no_research;TypeScript +https://github.com/BartJongejan/Bracmat;Programming language for symbolic computation with unusual combination of pattern matching features: Tree patterns, associative patterns and expressions embedded in patterns.;no_research;C +https://github.com/BartJongejan/tinylemmatizer;Simple lemmatizer for inclusion in Python programs that uses the same lemmatization rules as CSTlemma.;no_research;C +https://github.com/benhowes/benhowes;;no_research; +https://github.com/benhowes/deploy-test;testing ;no_research;HTML +https://github.com/benhowes/extract-extract;Simplify your usual extract order without a subscription;no_research;JavaScript +https://github.com/benhowes/Placeholders;openscad scripted custom place-holders;no_research;Python +https://github.com/benhowes/threeacresfarm;The website for me dads farm;no_research;HTML +https://github.com/benhowes/tsp-ga-solver;An example solution to the interview challenge formerly set by Zoetrope Labs (see challenge_brief.md);no_research;Python +https://github.com/benhowes/VHDL-mu0;implementation of a very simple processor in VHDL;no_research;VHDL +https://github.com/benhowes/vsot;VSOT - Django/jinja template formatter;no_research;Python +https://github.com/brihaye/exist-db;;no_research; +https://github.com/cajosc/home;Home of my $HOME;no_research;Emacs Lisp +https://github.com/cajosc/phpinfo;;no_research;PHP +https://github.com/Carnubak/accounting-notebook;;no_research;JavaScript +https://github.com/Carnubak/code-quality-refactoring;Contenido para el curso de Acamica sobre Code Quality and Refactoring;no_research; +https://github.com/Carnubak/FCC-API-timestamp;FreeCodeCamp's timestamp API repository;no_research;JavaScript +https://github.com/Carnubak/FCC-Backend;FreeCodeCamp Backend Challenges;no_research;JavaScript +https://github.com/Carnubak/jest-mock-req-res;Jest mocks for Express Request and Response objects. Inspired by mock-req-res.;no_research;TypeScript +https://github.com/cgcgbcbc/2015THUstCSRF;2015 Tsinghua University Software Testing course CSRF attack and xss attack host.;no_research;HTML +https://github.com/cgcgbcbc/anvil-mod;Minecraft free anvil mod;no_research;Java +https://github.com/cgcgbcbc/benchexec-docker;Benchexec dockerfile;no_research; +https://github.com/cgcgbcbc/CategoryDemo;Private property in class extension;no_research;Objective-C +https://github.com/cgcgbcbc/ceagle-absref-config;;no_research; +https://github.com/cgcgbcbc/ceagle-absref-docker;;no_research;Shell +https://github.com/cgcgbcbc/CourseRecommend;;no_research;Java +https://github.com/cgcgbcbc/django-test-example;;no_research;Python +https://github.com/cgcgbcbc/edx-xqueue-api;node bindings of edx xqueue api;no_research;JavaScript +https://github.com/cgcgbcbc/flask-k8s-example;;no_research;Python +https://github.com/cgcgbcbc/git-show-pr;git plugin for showing Github pull request;no_research;Go +https://github.com/cgcgbcbc/github-no-team-member;List members without team in given github org.;no_research;JavaScript +https://github.com/cgcgbcbc/gorender;gorender - render go template on the fly;no_research;Go +https://github.com/cgcgbcbc/gotunet;Go client for Tsinghua University Network(TUNet);no_research;Go +https://github.com/cgcgbcbc/gulp-chroot;;no_research;JavaScript +https://github.com/cgcgbcbc/jquery-minMenu;a minimum menu plugin for jquery;no_research;JavaScript +https://github.com/cgcgbcbc/qrnav;;no_research; +https://github.com/cgcgbcbc/rx-onchange-subscriber;;no_research;Java +https://github.com/cgcgbcbc/spark;;no_research;Shell +https://github.com/cgcgbcbc/spark_kmeans_homework;;no_research;Scala +https://github.com/cgcgbcbc/TaskTickerMac;A countdown timer show in mac status bar;no_research;Objective-C +https://github.com/cgcgbcbc/thuse-2015-unittest-example;An example project of frontend testing;no_research;JavaScript +https://github.com/cgcgbcbc/tsinghua-transportation-competition-indoor-navigation;;no_research;Java +https://github.com/cgcgbcbc/umeng2github;Tools for import umeng error report to github issue;no_research;Go +https://github.com/chaeron/Advent-of-Code-2020;Solutions for the 2020 Advent of Code puzzles (using javascript and NodeJS);no_research;JavaScript +https://github.com/chaeron/thermostat;Raspberry Pi Thermostat ;no_research;Python +https://github.com/ChristianMurphy/apache-category-a-spdx;Apache Category A SPDX codes;no_research;JavaScript +https://github.com/ChristianMurphy/apache-category-b-spdx;Apache Category B SPDX codes;no_research;JavaScript +https://github.com/ChristianMurphy/apache-category-x-spdx;Apache Category X SPDX codes;no_research;JavaScript +https://github.com/ChristianMurphy/apereo.foundation;Community based redesign of Apereo website;no_research;HTML +https://github.com/ChristianMurphy/babel-plugin-transform-dynamic-imports-to-static-imports;A transform to translate dynamic imports to static imports;no_research;JavaScript +https://github.com/ChristianMurphy/babel-plugin-transform-fold-constant-expressions;optimize javascript code with constant expression folding.;no_research;JavaScript +https://github.com/ChristianMurphy/chemical-inventory;An android application to log chemicals in a lab;no_research;Java +https://github.com/ChristianMurphy/classify-poetry;recognize type poetry in a given text excerpt;no_research;JavaScript +https://github.com/ChristianMurphy/compile-to-graal;Discover what languages can run on the Graal VM platform;no_research; +https://github.com/ChristianMurphy/compile-to-web;Discover what languages can be compiled to Web Assembly;no_research;Ruby +https://github.com/ChristianMurphy/contented-ui;Browsable user experience for uPortal;no_research;HTML +https://github.com/ChristianMurphy/easy-clear-cache;Browser addons to quickly clear cache;no_research;JavaScript +https://github.com/ChristianMurphy/electrolysis;Convert between video formats;no_research;JavaScript +https://github.com/ChristianMurphy/eslint-plugin-tree-sitter;Linting rules for tree sitter;no_research;JavaScript +https://github.com/ChristianMurphy/file-util-git-history;Get a file's git history;no_research;JavaScript +https://github.com/ChristianMurphy/giff;a video to gif tool, using node webkit and ffmpeg;no_research;CSS +https://github.com/ChristianMurphy/gutenberg-book-normalize;Normalize project Gutenberg books to a format easier for statistical models and machine learning to consume;no_research;JavaScript +https://github.com/claudius108/css2xslfo;;no_research;Java +https://github.com/claudius108/datatypes-exist-java-lib;;no_research;Java +https://github.com/claudius108/digital-publishing-exist-java-lib;;no_research;Java +https://github.com/claudius108/digital-publishing-java-lib;;no_research;Java +https://github.com/claudius108/dW;;no_research;JavaScript +https://github.com/claudius108/edib;;no_research;JavaScript +https://github.com/claudius108/expath-crypto-exist-demos-xar;EXPath package (xar) for eXist, with demonstrations for the EXPath cryptographic module.;no_research; +https://github.com/claudius108/expath-datatypes-spec;;no_research;HTML +https://github.com/claudius108/expath-digital-publishing-spec;;no_research;HTML +https://github.com/claudius108/expath-exist;;no_research; +https://github.com/claudius108/expath-exist-demos;;no_research;XQuery +https://github.com/claudius108/expath-ft-client-exist-demos-xar;EXPath package (xar) for eXist, with demonstrations for the EXPath file transfer client module.;no_research; +https://github.com/claudius108/expath-ft-client-spec;;no_research;HTML +https://github.com/claudius108/expath-image-spec;;no_research;HTML +https://github.com/claudius108/expath-location-spec;;no_research;HTML +https://github.com/claudius108/expath-pdf-exist-demos-xar;EXPath package (xar) for eXist, with demonstrations for the EXPath PDF module.;no_research; +https://github.com/claudius108/expath-pdf-exist-lib-xar;eXist DB wrapper for EXPath pdf library.;no_research; +https://github.com/claudius108/expath-pdf-spec;;no_research;HTML +https://github.com/claudius108/expath-specs;;no_research;HTML +https://github.com/claudius108/expath-time-spec;;no_research;HTML +https://github.com/claudius108/expath-user-agent-spec;;no_research;HTML +https://github.com/claudius108/expath-xars;Resources for building EXPath packages (xar-s).;no_research;XQuery +https://github.com/claudius108/exprocxq;;no_research;XQuery +https://github.com/claudius108/exsltforms;;no_research;JavaScript +https://github.com/claudius108/extxsltforms;;no_research;JavaScript +https://github.com/claudius108/ft-client-exist-java-lib;;no_research;Java +https://github.com/claudius108/ft-client-java-lib;;no_research;Java +https://github.com/claudius108/geolocation-java-lib;;no_research;Java +https://github.com/claudius108/getos;;no_research;Java +https://github.com/claudius108/image-java-lib;;no_research; +https://github.com/claudius108/kert;;no_research;JavaScript +https://github.com/claudius108/kuberam;;no_research;Java +https://github.com/claudius108/kuberam-expath-plugin;;no_research;HTML +https://github.com/claudius108/kuberam-i18n-plugin;;no_research;Java +https://github.com/claudius108/kuberam-scrum-board;;no_research;XSLT +https://github.com/claudius108/kuberam-xml-plugin;;no_research;Java +https://github.com/claudius108/kyer;;no_research;XSLT +https://github.com/claudius108/languagetoolro;;no_research; +https://github.com/claudius108/location-exist-java-lib;;no_research;Java +https://github.com/claudius108/maven-plugins;;no_research; +https://github.com/claudius108/maven-plugins-abstract;;no_research;Java +https://github.com/claudius108/names;;no_research;XQuery +https://github.com/claudius108/nerwsc;;no_research;XQuery +https://github.com/claudius108/nlp-java-lib;Java library for natural language processing;no_research;Java +https://github.com/claudius108/oxygen-addon-builder-plugin;;no_research;Java +https://github.com/claudius108/oxygen-webview-plugin;;no_research;Java +https://github.com/claudius108/pdf-exist-java-lib;;no_research;Java +https://github.com/claudius108/pdf-java-lib;;no_research;Java +https://github.com/claudius108/sarit-transliteration-exist-module-xar;;no_research; +https://github.com/claudius108/simpath;;no_research;XSLT +https://github.com/claudius108/structured-subjects-annotator;;no_research;JavaScript +https://github.com/claudius108/teian;;no_research;HTML +https://github.com/claudius108/time-java-lib;;no_research; +https://github.com/claudius108/user-agent-java-lib;;no_research; +https://github.com/claudius108/wsc-patched;;no_research;CSS +https://github.com/claudius108/xml-datatypes-java-lib;;no_research;Java +https://github.com/clickr/hello-heroku;;no_research; +https://github.com/clickr/myApp;Demo app for ionicframework;no_research; +https://github.com/coltekin/childes-tr;Turkish child/chil-directed speech corpora on CHILDES (for corrections and additional annotations);no_research;Python +https://github.com/coltekin/dsl2016-source;DSL shared task participation - sources;research;Python +https://github.com/coltekin/emoji2018;The source code for the Tübingen-Oslo team in SemEval-2018 Multilingual Emoji Prediction shared task.;research;Python +https://github.com/coltekin/fc;;no_research;Python +https://github.com/coltekin/germeval2020task1;Code used for GermEval 2020 shared task 1;no_research;Python +https://github.com/coltekin/gk-treebank;A grammar-book treebank of Turkish;research;Python +https://github.com/coltekin/identifying-depression;;no_research;Python +https://github.com/coltekin/mcomplexity;;no_research;Python +https://github.com/coltekin/mlc2018;Code used for MLC 2018 workshop paper;no_research;Python +https://github.com/coltekin/ParlaMint-TR;Samples / development files for ParlaMint-TR;no_research;Python +https://github.com/coltekin/scrape-trnews;A (n experimental) crawler for creating a Turkish news corpus;no_research;Python +https://github.com/coltekin/seg;An application implementing a few incremental segmentation algorithms;no_research;C +https://github.com/coltekin/segmentation-talk;A talk on segmentation;no_research;TeX +https://github.com/coltekin/snlp-notes;Notes for the course Statistical Language Processing , ISCL, University of Tübingen;no_research;TeX +https://github.com/coltekin/test;;no_research; +https://github.com/coltekin/TRmorph;A finite-state morphological analyzer for Turkish;no_research;Python +https://github.com/coltekin/turkish-nlp-resources;Corpora, tools and resources for Turkish NLP;no_research; +https://github.com/coltekin/ud-docs-tr;Just for testing;no_research; +https://github.com/cplutte/bts-docu;;no_research; +https://github.com/Cutuchiqueno/base16-monokai-themes;created or modified base16-monokai color themes for the programs I use;no_research; +https://github.com/Cutuchiqueno/dotfiles;my personal dotfiles managed with yadm;no_research;Shell +https://github.com/Cutuchiqueno/exec_paper;test;no_research;HTML +https://github.com/Cutuchiqueno/output;personal presentations, articles, posts which are open for discussion;no_research;JavaScript +https://github.com/Cutuchiqueno/project_skeletons;projekt skeletons with template and makefiles for different project types and languages;no_research;CSS +https://github.com/DavidFichtmueller/charters;Charters of the TDWG Functional Subcommittees;no_research; +https://github.com/DavidFichtmueller/TETTRIs-given-name-analysis;TETTRIs WP3, task 3.2: preparatory work to analyse gender balance amongst groups of taxonomic experts;no_research;PHP +https://github.com/dizzzz/asocat;A set of custom Ant tasks;no_research;Java +https://github.com/dizzzz/daisydiff;Automatically exported from code.google.com/p/daisydiff;no_research;Java +https://github.com/dizzzz/eXist-Mondial;A showcase of the Mondial database.;no_research;XQuery +https://github.com/dizzzz/exist-splunk-app;A Splunk> app to monitor eXist-db;no_research; +https://github.com/dizzzz/existdb-trigger-test;Simple project to show that DocumentTrigger works;no_research;Java +https://github.com/dizzzz/jing-trang;Automatically exported from code.google.com/p/jing-trang;no_research;Java +https://github.com/dizzzz/myartifact;My eXist-db artefact;no_research;Java +https://github.com/dizzzz/tegenlicht040;Portal of tegenlicht040.nl ;no_research;HTML +https://github.com/dizzzz/XmlPerformance;A tool set to measure performance of XML libraries;no_research;Java +https://github.com/drengur/hello-world;Testing 123;no_research; +https://github.com/duncdrum/2016-June-datadump;Annual datadump of the RBMS Controlled Vocabularies for June 2016;no_research;HTML +https://github.com/duncdrum/bats-compose;temporary sandbox for bats integration tests with maven;no_research;Shell +https://github.com/duncdrum/cbdb-data;China Biographical Database (CBDB) data for use with exist-db.;research; +https://github.com/duncdrum/CBETA-ngram;;no_research; +https://github.com/duncdrum/d3ia;xml varations on d3.js in action example code;no_research;JavaScript +https://github.com/duncdrum/distroless-exist;Multi-arch distroless images for use with exist-db;no_research;Shell +https://github.com/duncdrum/dushuzhixing;md FTW;no_research; +https://github.com/duncdrum/exist-docker;experimental docker exist-db repo;no_research;Shell +https://github.com/duncdrum/exist-docs;prototype for exist-db documentation app;no_research;CSS +https://github.com/duncdrum/gh-345-test;gh-345-test;no_research;XQuery +https://github.com/duncdrum/gha-test;test repo for various gha quirks;no_research; +https://github.com/duncdrum/Greek-Manus;eXist Database for Greek Manuscripts in Sweden;no_research;XSLT +https://github.com/duncdrum/Lidar;;no_research; +https://github.com/duncdrum/mysec;mysec working repo;no_research;XQuery +https://github.com/duncdrum/mysec-tmpl;showcase;no_research;XQuery +https://github.com/duncdrum/newsec;newsec reference test;no_research;XQuery +https://github.com/fgeorges/calabash-basex-steps;Library of XProc steps (including extensions) to talk to BaseX from Calabash.;no_research;Java +https://github.com/fgeorges/company-marklogic;Company backend for MarkLogic functions.;no_research;Emacs Lisp +https://github.com/fgeorges/cxan;CXAN website and client;no_research;XProc +https://github.com/fgeorges/dashboard-template;;no_research;HTML +https://github.com/fgeorges/docbook-pkg;Package builder for DocBook;no_research;Shell +https://github.com/fgeorges/emacs-flib;A potpourri of Emacs code and libraries of mine;no_research;Emacs Lisp +https://github.com/fgeorges/emacs-init;;no_research;Emacs Lisp +https://github.com/fgeorges/expath-file-java;Implementation of the EXPath File module for Java and Java processors.;no_research;Java +https://github.com/fgeorges/expath-http-client-java;Implementation of the EXPath HTTP Client for Java and Saxon;no_research;Java +https://github.com/fgeorges/expath-http-client-ml;EXPath HTTP Client implementation for MarkLogic;no_research;XQuery +https://github.com/fgeorges/expath-ml-console;EXPath Console for MarkLogic;no_research;JavaScript +https://github.com/fgeorges/expath-pkg-java;Implementation of the EXPath Packaging System for Java, Saxon and Calabash;no_research;Java +https://github.com/fgeorges/functx-pkg;Package builder for the FunctX library.;no_research;Makefile +https://github.com/fgeorges/fxsl-pkg;Package builder for the FXSL library.;no_research;XSLT +https://github.com/fgeorges/graphew;;no_research;Python +https://github.com/fgeorges/imagine;Example application to manage pictures;no_research; +https://github.com/fgeorges/ml-console-web;The website of the ML Console;no_research;HTML +https://github.com/fgeorges/ml-invoker;Invoker lib for MarkLogic;research;XQuery +https://github.com/fgeorges/mlproj;Project and environment manager for MarkLogic.;no_research;JavaScript +https://github.com/fgeorges/mlproj-core;Core implementation of mlproj, everything not TUI-related;no_research;JavaScript +https://github.com/fgeorges/mlproj-web;The content of mlproj.org;no_research;JavaScript +https://github.com/fgeorges/pipx;PipX is a portable library of XProc pipelines and steps, written in standard XProc 1.0.;no_research;XSLT +https://github.com/fgeorges/serialize-xml;XSLT stylesheets to serialize XML to text or HTML.;no_research;XSLT +https://github.com/fgeorges/servlex;Servlex, an implementation of the EXPath Webapp framework;no_research;Java +https://github.com/fgeorges/shacl-rec-examples;Examples from the SHACL Recommendation;no_research;HTML +https://github.com/fgeorges/star-wars-dataset;Sample dataset for test purposes;no_research;JavaScript +https://github.com/fgeorges/wiki;Personal wiki content;no_research; +https://github.com/fgeorges/xproject;XProject, a project handling framework for XML technologies;no_research;XQuery +https://github.com/fgeorges/xproject-oxygen;oXygen support for XProject;no_research;Java +https://github.com/floatdrop/2q;;no_research;Go +https://github.com/floatdrop/after-event;Execute function after event is emitted and on any proceeding call;no_research;JavaScript +https://github.com/floatdrop/aoc;;no_research;Rust +https://github.com/floatdrop/Aux;:no_entry_sign: Project is deprecated;no_research;JavaScript +https://github.com/floatdrop/Auxilium;Front end to Aux'es;no_research;JavaScript +https://github.com/floatdrop/ava-in-node-0.10;;no_research;JavaScript +https://github.com/floatdrop/bem-deps;;no_research;JavaScript +https://github.com/floatdrop/bem-object;Data abstraction for gulp-bem;no_research;JavaScript +https://github.com/floatdrop/bem-pack;Pack node-style source files from a stream of path's into a browser bundle;no_research;JavaScript +https://github.com/floatdrop/bemjson-to-html;BEMJSON to HTML serializer;no_research;JavaScript +https://github.com/floatdrop/bh-property-helpers;Helpers for BH methods generation;no_research;JavaScript +https://github.com/floatdrop/cacha;Cache on file-system;no_research;JavaScript +https://github.com/floatdrop/chnpm;npm configuration switcher;no_research;JavaScript +https://github.com/floatdrop/configs-overload;Load configs file with ease;no_research;JavaScript +https://github.com/floatdrop/connect-once;Connect once and memorize connection for next usages;no_research;JavaScript +https://github.com/floatdrop/create-error-class;Create Error classes;no_research;JavaScript +https://github.com/floatdrop/CV;Curriculum vitae;no_research;JavaScript +https://github.com/floatdrop/dag;Directed acyclic graph for JavaScript;no_research;JavaScript +https://github.com/floatdrop/debug-http;Debug HTTP/HTTPS requests in Node.js;no_research;JavaScript +https://github.com/floatdrop/dependencies-diff;Merge dependencies and their versions;no_research;JavaScript +https://github.com/floatdrop/deps-graph;Builds graph by BEM deps;no_research;JavaScript +https://github.com/floatdrop/deps-normalize;Dependencies normalization for gulp-bem;no_research;JavaScript +https://github.com/floatdrop/dns-graceful-stack-switch;Monkey patch DNS lookup method for node.js.;no_research;JavaScript +https://github.com/floatdrop/each-done;each-async + async-done = each-done;no_research;JavaScript +https://github.com/floatdrop/enb-browserify;Browserify tech for ENB;no_research;JavaScript +https://github.com/floatdrop/express-cocaine-service;Get cocaine services as properties in request;no_research;JavaScript +https://github.com/floatdrop/express-dinja;Dependency injection for Express applications;no_research;JavaScript +https://github.com/floatdrop/express-mongo-db;Get db connection in request object;no_research;JavaScript +https://github.com/floatdrop/express-mongoose-db;Middleware for mongoose connect method;no_research;JavaScript +https://github.com/floatdrop/express-public-ip;Filter private addresses from req.ips;no_research;JavaScript +https://github.com/floatdrop/express-real-ip;Use X-Real-IP header for ip address in express;no_research;JavaScript +https://github.com/floatdrop/express-render-jsx;Render jsx files from express;no_research;JavaScript +https://github.com/floatdrop/express-request-id;Middleware for setting unique request id;no_research;JavaScript +https://github.com/floatdrop/express-stackman;Enrich Express error handler which inserts source code within stack frames;no_research;CSS +https://github.com/floatdrop/express-vs-fist;;no_research;JavaScript +https://github.com/floatdrop/facebook-calendar;facebook-calendar with React and JSPM;no_research;JavaScript +https://github.com/floatdrop/fifo;;no_research;Go +https://github.com/floatdrop/flatit;Another flatten implementation for arrays;no_research;JavaScript +https://github.com/fmondora/artworks;;no_research; +https://github.com/fmondora/farmbot;;no_research;JavaScript +https://github.com/fmondora/makkina;;no_research;JavaScript +https://github.com/fmondora/mbillbot;;no_research;JavaScript +https://github.com/fmondora/opacity0;;no_research;JavaScript +https://github.com/fmondora/peerpraise;;no_research;JavaScript +https://github.com/fmondora/react-firebase-auth0-todo;;no_research;JavaScript +https://github.com/fmondora/scratchpad;Rails Scratchpad;no_research;Ruby +https://github.com/fmondora/starter-node-bot;;no_research;JavaScript +https://github.com/fmondora/Studio-Digitale---Dott.-Tamarrini;;no_research; +https://github.com/fmondora/test-makkina;;no_research;JavaScript +https://github.com/forresst/amunet;Amunet : markdown metadata hidden;no_research;JavaScript +https://github.com/forresst/dgeni-i18n;WIP for i18n with Dgeni;no_research;JavaScript +https://github.com/forresst/divide-lines;Divide the lines of a string in a lines object;no_research;TypeScript +https://github.com/forresst/forresst.github.com;Mon blog;no_research;HTML +https://github.com/forresst/generator-nm-forresst;Generator yeoman for forresst;no_research;JavaScript +https://github.com/forresst/ityti_fr-FR;Mon ityti en français;no_research; +https://github.com/forresst/jquery-mobile-fr_FR;jQuery Mobile : Documentation en français;no_research;JavaScript +https://github.com/forresst/markdown-magic-package-json;Add the `package.json` properties to markdown files via markdown-magic;no_research;JavaScript +https://github.com/forresst/qwik-docs-fr;Qwik docs - Translations in french ;no_research;TypeScript +https://github.com/forresst/slice-location;String slices by line and column indexes;no_research;JavaScript +https://github.com/FrederikeNeuber/jeanpaulanalytics;Analyses with a corpus of letters from Jean Paul's family, friends and colleagues;no_research;XSLT +https://github.com/FrederikeNeuber/jeanpaultoday;Twitter repository for the bot @jeanpaultoday, which tweets beginnings of letters by Jean Paul's correspondence on a daily base.;no_research; +https://github.com/FrederikeNeuber/lewald-correspondence-metadata;Metadata of Fanny Lewald's correspondences in CMIF-format;research; +https://github.com/FrederikeNeuber/stgd-prototype-edition;Prototype edition ;research; +https://github.com/FrederikeNeuber/typoo;RDF/OWL based ontology to describe microtypography (in digital scholarly editions);research; +https://github.com/funkyfuture/apache-log-filter;A Python 3 library to retrieve web server accesses filtered by sets of filters.;no_research;Python +https://github.com/funkyfuture/cerberus-collections;Extensions for Cerberus, a lightweight and extensible data validation library for Python;no_research;Python +https://github.com/funkyfuture/compose-dump;Dump and restore Docker Compose-projects;no_research;Python +https://github.com/funkyfuture/deck-chores;A job scheduler for Docker containers, configured via labels.;no_research;Python +https://github.com/funkyfuture/docker-rpi-radicale;A Radicale image for the Raspberry Pi.;no_research;Python +https://github.com/funkyfuture/docker-rpi-syncthing;Docker image with Syncthing for Raspberry Pis;no_research;Shell +https://github.com/funkyfuture/inxs;A Python framework for XML transformations without boilerplate.;no_research;Python +https://github.com/funkyfuture/m4p0-rs-metadata-import;;no_research;Python +https://github.com/funkyfuture/neomodel;;no_research;Python +https://github.com/funkyfuture/todo.txt-pylib;An easy to extend Python 3 library to parse, manipulate, query and render tasks in the todo.txt-format in a pythonic manner.;no_research;Python +https://github.com/funkyfuture/workflows-tests;;no_research; +https://github.com/galanisd/elrc-tools-rest;;no_research; +https://github.com/galanisd/lds-edc;;no_research; +https://github.com/galanisd/omtd-simple-workflows;Provides scripts and code for executing some text mining workflows within a docker container.;no_research;Java +https://github.com/galanisd/omtd-workflow-examples;Workflow examples;no_research;Groovy +https://github.com/galanisd/scripts;Various scripts.;no_research;Shell +https://github.com/gev/chat;;no_research;Haskell +https://github.com/gev/chatd;;no_research;Haskell +https://github.com/gev/eXid;;no_research;Java +https://github.com/gev/eXlab;Varios xquery helpers;no_research; +https://github.com/gev/eXrar;RAR module for eXist-db http://exist-db/org;no_research;Java +https://github.com/gev/fenomen;;no_research; +https://github.com/gev/gd32_blink;;no_research;C +https://github.com/gev/gd32_blink-1;;no_research;C +https://github.com/gev/hommyn-daemon-bin;;no_research; +https://github.com/gev/ip;;no_research;JavaScript +https://github.com/gev/mvn-repo;;no_research; +https://github.com/gev/reacthome-broker;;no_research; +https://github.com/gev/reacthome-mobile;;no_research;Dart +https://github.com/gev/reacthome-rbus;;no_research;Haskell +https://github.com/gev/reacthome-studio;;no_research;JavaScript +https://github.com/gev/redux-one;Kills redux boilerplate hell ;no_research; +https://github.com/gev/regexp;;no_research;JavaScript +https://github.com/gev/struct;;no_research;C +https://github.com/gev/tas5760;;no_research;C +https://github.com/gev/tau;;no_research;JavaScript +https://github.com/gev/XQWebsocketModule;;no_research;Java +https://github.com/gremid/bruemmer;;no_research;HTML +https://github.com/gremid/chat;A web-based chat-server with a scriptable client.;no_research;JavaScript +https://github.com/gremid/clj-xml;Clojure XML library based on StAX;no_research;Clojure +https://github.com/gremid/combo-resource;YUI-compatible utilities for creating resource combos, e.g. CSS/JavaScript rollups.;no_research;Java +https://github.com/gremid/existdb-maven-plugin;Support for developing eXist-db/XAR applications, allowing to roundtrip between the application running in a database instance and its sources as a Maven module in the filesystem.;no_research;Java +https://github.com/gremid/goddag4j;;no_research;Java +https://github.com/gremid/gutenberg-pos;Applies part-of-speech (POS) tagging to a sample of Project Gutenberg texts.;no_research;Java +https://github.com/gremid/idrovora;A pump station for your XProc pipelines;research;Clojure +https://github.com/gremid/julesratte;Clojure MediaWiki client;no_research;Clojure +https://github.com/gremid/lmnl4j;;no_research;Java +https://github.com/gremid/lucene-query;Parser for Apache Lucene Classic Queries;no_research;Clojure +https://github.com/gremid/markup-utils;Markup Utilities;no_research;Java +https://github.com/gremid/oss-archetype;Personal Maven Archetype for OSS Projects;no_research;Java +https://github.com/gremid/schema-test;Testing GitHub Actions for ODD Processing;no_research;HTML +https://github.com/gremid/sfst-transduce;Python bindings for SFST focusing on transducer usage;no_research;C++ +https://github.com/gremid/tei-stylesheets-action;Run TEI stylesheets for document conversion, i. e. generating RELAX NG schemas from ODD sources;no_research;Python +https://github.com/gremid/textplus-wd-lexemes;Presentation for Text+ Task Area Lexical Resources – DWDS/Wikidata;no_research;Clojure +https://github.com/gremid/ujwa;UJWA – XML processing experiments for the Uwe Johnson-Werkausgabe;research;Clojure +https://github.com/gremid/wikipedia-categories;Evaluate Containment Subgraphs of Wikipedia Categories via RDF/TTL Dumps;no_research;JavaScript +https://github.com/gremid/xml-utils;Java/XML Utilities;no_research;Java +https://github.com/grobian666/BAK-TestTopic;;no_research; +https://github.com/grobian666/BMBF;;no_research; +https://github.com/grobian666/Didyma-3D;;no_research; +https://github.com/grobian666/DigitalerRessourcenManager;GUI für die Annotation von Bildern;no_research; +https://github.com/haoess/dta-tools;"Tools used in the project ""Deutsches Textarchiv""";no_research;XSLT +https://github.com/haoess/hidden-kosmos;Hidden Kosmos — Reconstructing Alexander von Humboldt's »Kosmos-Lectures«;no_research;HTML +https://github.com/haoess/perl-acme-postmodern-perl;Postmodern Perl solves all problems;no_research;Perl +https://github.com/haoess/perl-acme-very-modern-perl;Use the most modern of Perl!;no_research;Perl +https://github.com/haoess/pitaval2tei;Converts plain text files from the „Der neue Pitaval“ to TEI P5 XML;no_research;Perl +https://github.com/helmuthb/android-app-portfolio;Project 0 for Android Nanodegree - project portfolio;no_research;Java +https://github.com/helmuthb/AppEngine-Quickstart;Hello World in App Engine;no_research;Python +https://github.com/helmuthb/BakingApp;"Udacity Nanodegree project ""Baking App""";no_research;Java +https://github.com/helmuthb/BlockchainAPI;Simple REST API for a simple blockchain;no_research;JavaScript +https://github.com/helmuthb/browser-sync-test;;no_research;JavaScript +https://github.com/helmuthb/capstone-project;Capstone Project for Android Nanodegree;no_research;Java +https://github.com/helmuthb/cfp-node;Call for Proposals - Node-based;no_research;JavaScript +https://github.com/helmuthb/Charts-Sample;Samples for charts: Gantt-charts, simple tables;no_research;JavaScript +https://github.com/helmuthb/codestack;Course repo for codeplace;no_research;Ruby +https://github.com/helmuthb/data-oriented-programming;Data Oriented Programming (lecture winter term 2019);no_research;Jupyter Notebook +https://github.com/helmuthb/datascience-thesis;Code for my master thesis - working on Object Detection & Segmentation;research;Python +https://github.com/helmuthb/devfest-at-site;Code for www.devfest.at;no_research;Python +https://github.com/helmuthb/devfest-cfp;Call for Papers module for DevFest;no_research;Python +https://github.com/helmuthb/devfestsched;Android companion app for DveFest Vienna;no_research;Java +https://github.com/helmuthb/dlvc2020;Deep Learning for Visual Computing - 2020 lecture;no_research;Jupyter Notebook +https://github.com/helmuthb/dmp-exercise1;Exercise project for DMP - Data Management Plan;no_research;TeX +https://github.com/helmuthb/dmp-tools-actionable;Option 4 – Make DMP tools machine-actionable (Group 3);no_research;Python +https://github.com/helmuthb/docker-samba;Simple Docker image with Samba server;no_research;Shell +https://github.com/helmuthb/experiment-design-mediaeval;Experiment Design: Media-Evaluation, lecture winter term 2019;research;TeX +https://github.com/helmuthb/ExperimentDesign;Exercise 1 for Experiment Design for Data Science;no_research; +https://github.com/helmuthb/forschungsmethoden;;no_research;TeX +https://github.com/helmuthb/fullstack-nanodegree-container;Replacement for the Vagrant-based VM used in Udacity Full-Stack Nanodegree;no_research;Dockerfile +https://github.com/helmuthb/GradleProject;Udacity project for Gradle;no_research;Java +https://github.com/helmuthb/Group1_GPU_CA_SS2020;Group 1 of GPU Computing Architectures Summer Term 2020;no_research;C++ +https://github.com/helmuthb/Header;Project for Chrome Hackathon (GTUG Vienna);no_research;JavaScript +https://github.com/helmuthb/helloweb;Hello World for Flask;no_research;Python +https://github.com/helmuthb/helmuth.at;My blog;no_research;CSS +https://github.com/helmuthb/infovis;Information Visualization exercise for TU Wien;no_research;JavaScript +https://github.com/helmuthb/ionic-first-app;First ionic app based on ionic-academy;no_research;CSS +https://github.com/helmuthb/ionic-todo;Sample ToDo app powered by ionic;no_research;CSS +https://github.com/helmuthb/Java-EE-Samples;Samples from the Java EE Course;no_research;Java +https://github.com/helmuthb/mathprog;Mathematical Programming;no_research;C++ +https://github.com/helmuthb/mobilenet_v2_ssdlite_keras;MobileNet v2 on Keras / TF 2.3;no_research; +https://github.com/helmuthb/ND004-P1;Nanodegree Full Stack Web Developer - P1: Movie Trailer Website;no_research;Python +https://github.com/helmuthb/ND004-P2;Nanodegree Full Stack Web Developer - P2. Tournament Results;no_research;Python +https://github.com/helmuthb/ND004-P3;Nanodegree Full Stack Web Developer - P3: Item Catalog;no_research;Python +https://github.com/helmuthb/ND004-P4;Nanodegree Full Stack Web Developer - P4: Conference Organizing App;no_research;Python +https://github.com/helmuthb/ND004-P5;Nanodegree Full Stack Web Developer - P5: Linux Server Configuration;no_research; +https://github.com/helmuthb/objectdetection-js;Object Detection in TensorFlow.js;no_research; +https://github.com/helmuthb/PopularMovies;Udacity Android Nanodegree project;no_research;Java +https://github.com/helmuthb/postgis;PostGIS container image with pre-created databases and users;no_research;Shell +https://github.com/helmuthb/python-helloworld;Repo for the Cloud Native Scholarship course;no_research;Python +https://github.com/helmuthb/recsys;Recommender Systems - SS2019;no_research;Jupyter Notebook +https://github.com/helmuthb/rsnapshot-docker;rsnapshot for Docker;no_research;Shell +https://github.com/helmuthb/sandwich-club;Sandwich Club project (Udacity);no_research;Java +https://github.com/helmuthb/semantic-systems;Introduction to Semantic Systems (2019);no_research;Jupyter Notebook +https://github.com/helmuthb/SimpleBlockchain;This is a simplified block chain, without any provisions for consensus;no_research;JavaScript +https://github.com/helmuthb/SNL-GMS-Common;;no_research;Java +https://github.com/helmuthb/speaker.at;Front-end for CfP system;no_research;JavaScript +https://github.com/helmuthb/SPEML-2020;Security, Privacy, Encryption in Machine Learning - lecture summer term 2020;no_research;Jupyter Notebook +https://github.com/helmuthb/StarRegistry;Udacity Blockchain Nanodegree project;no_research;JavaScript +https://github.com/helmuthb/stukdo;Training repo for stuk.io ToDo-app;no_research;Ruby +https://github.com/helmuthb/test;Temporary test repository;no_research; +https://github.com/hemed/ub;Universitetsbiblioteket;no_research;Java +https://github.com/hemed/virzt-search;;no_research;Java +https://github.com/HughP/academic-kickstart;;no_research;Shell +https://github.com/HughP/amphetype;Automatically exported from code.google.com/p/amphetype;no_research;Python +https://github.com/HughP/Apache-log-visualization;Some background research on what to use for a log visualization.;no_research; +https://github.com/HughP/apl-keyboard-layouts;Automatically exported from code.google.com/p/apl-keyboard-layouts;no_research; +https://github.com/HughP/arabic-keyboard-trainer;Automatically exported from code.google.com/p/arabic-keyboard-trainer;no_research;C# +https://github.com/HughP/Bible-Agency-Partnerships;A graph showing the network of Bible Agencies;no_research; +https://github.com/HughP/blue-k2;Automatically exported from code.google.com/p/blue-k2;no_research;CSS +https://github.com/HughP/Character-comparison-with-CSVfix;UnicodeCCount Character comparison with CSVfix;no_research;Shell +https://github.com/HughP/cocoagaps;Automatically exported from code.google.com/p/cocoagaps;no_research; +https://github.com/HughP/coolkey;Automatically exported from code.google.com/p/coolkey;no_research;Java +https://github.com/HughP/dnj-bigram;A repo to develop bigram counting;no_research;HTML +https://github.com/HughP/dnj-corpus;A small corpus of a local newspaper;no_research;HTML +https://github.com/HughP/dnj-count;counting things in the dnj-corpus;no_research; +https://github.com/HughP/Endangered-languages-1;a dashboard visualization in Tableau of all the endangered languages of the world;no_research; +https://github.com/HughP/extended-live-archive;Automatically exported from code.google.com/p/extended-live-archive;no_research;PHP +https://github.com/HughP/FLEx-Documentation;Freedom for .chm help files for FLEx in the format of gitbook.;no_research; +https://github.com/HughP/FLEx-ELAN-Scripts;Some scripts for FLEx-ELAN;no_research;XSLT +https://github.com/HughP/flexability;The goal with this software is to take the Lift formated XML and pull out body part names, and then insert those names into a SVG formated graphic.;no_research;Lasso +https://github.com/HughP/For-profit-use-only;;no_research; +https://github.com/HughP/geotoad;Automatically exported from code.google.com/p/geotoad;no_research;Ruby +https://github.com/HughP/Glottolog4.7-ISBN-Extraction;ISBN extraction from Glottolog;no_research; +https://github.com/HughP/gpicsync;Automatically exported from code.google.com/p/gpicsync;no_research;Python +https://github.com/HughP/hangulkeyboard;Automatically exported from code.google.com/p/hangulkeyboard;no_research;Java +https://github.com/HughP/Hugo-Business-Card;Writen in Hugo;no_research; +https://github.com/HughP/ICPhS-2015;Poster and paper;no_research; +https://github.com/HughP/iphotoexport;Automatically exported from code.google.com/p/iphotoexport;no_research;Python +https://github.com/HughP/itunes-rails;Automatically exported from code.google.com/p/itunes-rails;no_research;Ruby +https://github.com/HughP/journlerweb;Automatically exported from code.google.com/p/journlerweb;no_research;JavaScript +https://github.com/HughP/Keyboard-character-replacement;Small code for making .keylayout files readable and convertible into corpus text filters;no_research;Shell +https://github.com/HughP/keyboard-layout;Automatically exported from code.google.com/p/keyboard-layout;no_research; +https://github.com/hungerburg/capers;Play checkers against the computer and study draughts games from books.;no_research;C +https://github.com/ifraixedes/about-stuff;Thoughts, experiments, articles, post .....;no_research;JavaScript +https://github.com/ifraixedes/angular-bits-and-bobs;My AngularJS bits & bobs;no_research;JavaScript +https://github.com/ifraixedes/blog;My personal blog;no_research;HTML +https://github.com/ifraixedes/bluetooth-networking-matcher;Android App to track the bluetooth physical address based on time and location;no_research;Java +https://github.com/ifraixedes/browser-extension-github-readme-toc;Chrome extension which show the generated readme's table of content github project's root page;no_research;JavaScript +https://github.com/ifraixedes/chrome-extension-mimosa-livereload;Chrome extension to provide liveload feature to Mimosa (http://mimosa.io) without adding the required javascript into the views (partials / pages / layout);no_research;JavaScript +https://github.com/ifraixedes/dev-toolbox;Scaffolders, Development Tools Configurations, Helpers, or Whatever I've used for my dev projects;no_research;JavaScript +https://github.com/ifraixedes/docker-goose;Docker image with Golang Goose DB migration tool (https://bitbucket.org/liamstask/goose/);no_research;Makefile +https://github.com/ifraixedes/example-eslint-harrow-io;Simple example to show how to lint a JS project in Harrow.io CI clould service with ESLint ;no_research;Shell +https://github.com/ifraixedes/expression.socket.io;A node module to grant to socket.io the access to the Express/Connect session;no_research;JavaScript +https://github.com/ifraixedes/file-store-sync;Store and retrieve synchronously, primietive and javascript object values in/from a plain text file;no_research;JavaScript +https://github.com/ifraixedes/finappsparty-2014;Hack for FinsAppsParty 2014 (Financial Wereable App);no_research;Java +https://github.com/ifraixedes/find-funcs-with-set-funcs-calls;Go command-line tool for Finding functions in go packages which call a set of functions;no_research;Go +https://github.com/ifraixedes/fraixedes-hugo-theme;Hugo theme created specifically for my blog;no_research;HTML +https://github.com/ifraixedes/gapps-srcript-form-notifications;Another Google Apps Scripts Form Notification, but this one is to cover my needs;no_research; +https://github.com/ifraixedes/gitevents-mailer-provider-mandrill;Mandrill provider for gitevents-mailer plugin;no_research;JavaScript +https://github.com/ifraixedes/gitup-mailer;Mailer plugin for;no_research; +https://github.com/ifraixedes/go-canonical-import-paths;Serve the Go packages under the canonical import path;no_research;HTML +https://github.com/ifraixedes/go-config;Simpler Go configuration with structs.;no_research;Go +https://github.com/ifraixedes/go-csv-reader-example;Simple tool which uses the Go CSV Reader of the standard library;no_research;Go +https://github.com/ifraixedes/go-errors;Go errors with error codes through a simple and small API;no_research;Go +https://github.com/ifraixedes/go-hmac-validator;A generic HMAC signature validator for Go;no_research;Go +https://github.com/ifraixedes/go-ms-http-nsq-example;Example of a microservice architecture using HTTP and NSQ as a transport;no_research;Go +https://github.com/ifraixedes/go-payments-api-example;[WIP] example of an openapi API design and a Go implementation of it;no_research;Go +https://github.com/ifraixedes/go-rosterssh;Generate a SSH configuration file from the content of a Salt Roster file;no_research;Go +https://github.com/ifraixedes/go-runnable-snippets;A personal collection of Go runnable snippets for tracking my learning tryouts;no_research;Go +https://github.com/ifraixedes/gulp-nunjucks-data;Gulp plugin to render templates from data property attached to vinyl object;no_research;JavaScript +https://github.com/ifraixedes/hack-comcastNBCU;;no_research;CSS +https://github.com/ifraixedes/hack-datahack14;My hack of datahack from TATA Communications;no_research;Clojure +https://github.com/ifraixedes/hack-destination-london-2015;A mercury (http://raynos.github.io/mercury/) application for Destination Hack (London 2015);no_research;JavaScript +https://github.com/ifraixedes/hack-flir-2015;Night Owl Safari - Our Flir App for London 2015 hack;no_research;Java +https://github.com/ifraixedes/hack-futurebooks-gse;A book gossip search engine;no_research;CSS +https://github.com/ifraixedes/hack-RCUKGatewayResarch112013;Hack for RCUK Gateway Research Hackathon (23/11/2013, London);no_research;JavaScript +https://github.com/ifraixedes/hack-risk-asset-360;Our hack for Hack Risk 2015 - Asset 360;no_research;JavaScript +https://github.com/ifraixedes/hack-risk-asset-360-2;;no_research;HTML +https://github.com/ifraixedes/hack-social-impact-tweets-classifier;Social Impact tweets classifier is my hack for Rewired State (http://rewiredstate.org/) Social Impact Hackathon (02/2014);no_research;Clojure +https://github.com/ifraixedes/hackference-2013;Just the hack of Hackference Hackathon of 2013;no_research;JavaScript +https://github.com/ifraixedes/hugo-resources;Generic resources as partials, shortcodes, etc. for Hugo static site generator (http://gohugo.io);no_research;HTML +https://github.com/ifraixedes/jst2fsrc;Transform a JS string which represent template literal to string which is the source code of a function template wrapper;no_research;JavaScript +https://github.com/ifraixedes/k8s-ify-storj-satellite;Playing around with K8s to deploy a Storj Satellite;no_research;Makefile +https://github.com/ingro/backbone.choosy;Backbone.Chooser ported to ES6 and UMD;no_research;JavaScript +https://github.com/ingro/gitit;Git-it test repo;no_research; +https://github.com/ingro/gulp-template-compile;Precompile Lodash templates with Gulp;no_research;JavaScript +https://github.com/ingro/hain-plugin-npms;Hain plugin to search npm packages on npms.io;no_research;JavaScript +https://github.com/ingro/Holdor;Utility library to handle JWT auth with Laravel;no_research;PHP +https://github.com/ingro/jest-tpl-bug;https://github.com/facebook/jest/issues/1980;no_research;JavaScript +https://github.com/ingro/nivo-server;Esempio di server per generare grafici statici con Nivo;no_research;TypeScript +https://github.com/ingro/nukulus.js;Bidirectional client/server sync with Backbone.js and Data.io;no_research;JavaScript +https://github.com/ingro/Rest;Rest package per Laravel based on Dingo;no_research;PHP +https://github.com/ingro/RestGenerators;Boilerplate generators for Rest api package server and client;no_research;PHP +https://github.com/ingro/Restify;Rest Helper Package for Laravel 4;no_research;PHP +https://github.com/ingro/skywalker-generators;Boilerplate generator for Skywalker apps;no_research;JavaScript +https://github.com/ingro/spaceyard;UI components and helpers for building Administrative interfaces and more, written in React.;no_research;TypeScript +https://github.com/ingro/steiner;Helpers and React Components to build dashboards for CRUD apps;no_research;JavaScript +https://github.com/ingro/try_git;;no_research; +https://github.com/ingro/vite-wc;Esempio di progetto con vue + vite + custom elements (web components);no_research;JavaScript +https://github.com/ingro/vivi;Collection of React UI components oriented to the creation of dashboards;no_research;JavaScript +https://github.com/ingro/Yodo;A set of utility to easily and rapidly create REST api with Laravel.;no_research;PHP +https://github.com/ivogabe/Brackets-Icons;File icons in Brackets' file tree;no_research;TypeScript +https://github.com/ivogabe/Docking;Program that searches the binding of a protein and a ligand;no_research;C# +https://github.com/ivogabe/extLog;Easy, clear and colored logging with node.js;no_research;JavaScript +https://github.com/ivogabe/gulp-microfill;Microfill for gulp;no_research;JavaScript +https://github.com/ivogabe/gulp-typescript;A TypeScript compiler for gulp with incremental compilation support.;no_research;JavaScript +https://github.com/ivogabe/gulp-typescript-sourcemaps-demo;Demo for sourcemaps in gulp-typescript without inlining sources;no_research;JavaScript +https://github.com/ivogabe/microfill;Only loads polyfills for the missing gabs;no_research;JavaScript +https://github.com/ivogabe/monotone;An implementation of the monotone framework for JavaScript;no_research;TypeScript +https://github.com/ivogabe/monotone-type-checker;Experimental type checker for JavaScript & TypeScript based on monotone frameworks;no_research;TypeScript +https://github.com/ivogabe/phaethon;Fast, promise-based, non-magical server package for node.js.;no_research;TypeScript +https://github.com/ivogabe/prisoners-dilemma;Simulation of a Spatialized Prisoners Dilemma;no_research;TypeScript +https://github.com/ivogabe/random-binary-tree;Researching randomly generated binary search trees without balancing;no_research;Haskell +https://github.com/ivogabe/small;A tool to bundle commonjs files. Designed to produce the smallest file size possible.;no_research;TypeScript +https://github.com/ivogabe/typed-gulp;The streaming build system in TypeScript;no_research;TypeScript +https://github.com/ivogabe/workassisting;Implementation and benchmarks of work assisting, a scheduling algorithm for data parallelism;no_research;Rust +https://github.com/ivogabe/zero-overhead-parallel-scans;Parallel scan algorithms with zero single-threaded overhead & higher performance on many cores;no_research;Rust +https://github.com/jadolan/defactoring_vossanto;Defactoring the Code of the Vossanto project (https://github.com/weltliteratur/vossanto/tree/master/theof);no_research;Jupyter Notebook +https://github.com/jadolan/ghp_sourcefiles;sourcefiles for my homepage;no_research;HTML +https://github.com/jadolan/pandoc_webservice;A webservice for file conversion with pandoc.;no_research;HTML +https://github.com/jadolan/right-wing-violence-DE;"A web scraper for right-wing violence in Hessen, Germany as reported on the website of the NGO ""response"".";no_research;Python +https://github.com/jadolan/robogrid;A simple Spring Boot webapp to move a robot within a grid.;no_research;Java +https://github.com/jadolan/zoomable_space;A zoomable map of a tiny fraction of the universe.;research;JavaScript +https://github.com/jamestalmage/all-my-badges;;no_research;JavaScript +https://github.com/jamestalmage/angular-inject-stub;My new thing;no_research; +https://github.com/jamestalmage/angular-rotate-handle;A rotation handle for angular built entirely on SVG's ;no_research; +https://github.com/jamestalmage/angular-test-utils-test-utils;;no_research;JavaScript +https://github.com/jamestalmage/ansi-stream;Converts a text stream to a stream of alternating strings and `EscapeCode` objects.;no_research;JavaScript +https://github.com/jamestalmage/array-map;`[].map(f)` for old browsers;no_research;JavaScript +https://github.com/jamestalmage/array-reduce;`[].reduce()` for old browsers;no_research;JavaScript +https://github.com/jamestalmage/array-to-events;;no_research;JavaScript +https://github.com/jamestalmage/async-task-pool;;no_research;JavaScript +https://github.com/jamestalmage/ava-cli;;no_research;JavaScript +https://github.com/jamestalmage/babel-plugin-config-export;;no_research;JavaScript +https://github.com/jamestalmage/babel-value;Compute simple values from a babel AST;no_research;JavaScript +https://github.com/jamestalmage/backpressure-test;utils for testing streams in Node.js;no_research;JavaScript +https://github.com/jamestalmage/blind-bind;bind args before you have the function;no_research;JavaScript +https://github.com/jamestalmage/box-chars;Tool for finding ansi box-drawing characters;no_research;JavaScript +https://github.com/jamestalmage/browser-redirect-test;Tests Browser Redirect Behavior;no_research;JavaScript +https://github.com/jamestalmage/caching-stream;a through stream that keeps a copy of the data for later playback;no_research;JavaScript +https://github.com/jamestalmage/call-signature;Parse / Generate Method Signatures;no_research;JavaScript +https://github.com/jamestalmage/circle-dot;;no_research;HTML +https://github.com/jamestalmage/cli-table2;Pretty unicode tables for the command line;no_research;JavaScript +https://github.com/jamestalmage/coffeeify-issue;;no_research;JavaScript +https://github.com/jamestalmage/currently-unhandled;Track the list of currently unhandled promise rejections;no_research;JavaScript +https://github.com/jamestalmage/does-npm-www-support-strikethrough;Well?.... Does it?;no_research;JavaScript +https://github.com/jamestalmage/dual-run;;no_research;JavaScript +https://github.com/jamestalmage/duration-parser;Parse durations written in plain english;no_research;JavaScript +https://github.com/jamestalmage/empower-assert;;no_research;JavaScript +https://github.com/jamestalmage/escape-code;ansi escape code as an object;no_research;JavaScript +https://github.com/jamestalmage/eslint-3762-repro;A minimal repro for eslint #3762;no_research;JavaScript +https://github.com/jamestalmage/fake-module-system;A mock Node.js module system for testing require extensions.;no_research;JavaScript +https://github.com/jamestalmage/fallback-cli;a node cli helper: prefers cli in locally installed version, falls back to globally installed.;no_research;JavaScript +https://github.com/jamestalmage/firebase-copy;;no_research;JavaScript +https://github.com/jamestalmage/firebase-tween;A demo of tweening firebase updates;no_research;JavaScript +https://github.com/jamestalmage/forked-task-pool;;no_research;JavaScript +https://github.com/jamestalmage/forking-tap;;no_research;JavaScript +https://github.com/jamestalmage/generator-codemod;A generator to create codemods quickly.;no_research;JavaScript +https://github.com/jamestalmage/generator-new-lib;Yeoman generator for adding a new module to your project;no_research;JavaScript +https://github.com/jamestalmage/gh-nag;Never forget a PR or issue again!;no_research;JavaScript +https://github.com/jamestalmage/git-lfs-test;Testing Git Large File Storage;no_research; +https://github.com/JamFuller/mlhist;Generate graphs and integrate data with commandline interface to MarkLogic history metrics.;no_research;C++ +https://github.com/jan-koester/repochron;A git and Laravel based wayback API;no_research;PHP +https://github.com/janpieterk/dsg;Dissonance Grading scans and/or modifies chords along the dimension of dissonance.;no_research;Pascal +https://github.com/janpieterk/gemeentekaart-core;PHP library to create choropleth maps of the municipalities of the Netherlands;research;PHP +https://github.com/janpieterk/gemeentekaart-rest;REST interface to janpieterk/gemeentekaart-core;research;PHP +https://github.com/jarlehansen/alpine-java-node-gradle;;no_research; +https://github.com/jarlehansen/auth0-springsessions;;no_research;Java +https://github.com/jarlehansen/blog.jarlehansen.net;Source code and content for blog.jarlehansen.net;no_research;JavaScript +https://github.com/jarlehansen/brunel;Brunel source code;no_research;Java +https://github.com/jarlehansen/car-jpa-restapi-kata;;no_research;Shell +https://github.com/jarlehansen/cf-etcd;;no_research; +https://github.com/jarlehansen/csv2sql;;no_research;JavaScript +https://github.com/jarlehansen/dagen-ifi-2020;;no_research; +https://github.com/jarlehansen/fint-consumer-test-client;;no_research;Java +https://github.com/jarlehansen/fint-resource-test;;no_research;Java +https://github.com/jarlehansen/fint-sse-server;Server-sent events + Spring boot;no_research;Java +https://github.com/jarlehansen/fint-workshop;;no_research;Java +https://github.com/jarlehansen/gcmutils;Utilities for Google Cloud Messaging;no_research;Java +https://github.com/jarlehansen/idea-annotation-processing-gradle-plugin;;no_research;Groovy +https://github.com/jarlehansen/java-oauth-example;;no_research;Java +https://github.com/jarlehansen/javabin-kotlin;;no_research;JavaScript +https://github.com/jarlehansen/javabin-kotlin-examples;;no_research;Kotlin +https://github.com/jarlehansen/jayview-c2dm;JayView C2DM Example;no_research;Java +https://github.com/jarlehansen/kotlin-meetup-arrow;;no_research;Kotlin +https://github.com/jarlehansen/kotlinconf-2019;;no_research;JavaScript +https://github.com/jarlehansen/kotlinify-existing-java-classes;;no_research;JavaScript +https://github.com/jarlehansen/local-rabbitmq;;no_research;Java +https://github.com/jarlehansen/meetup-arrow;;no_research;JavaScript +https://github.com/jarlehansen/no5-events;;no_research;TypeScript +https://github.com/jarlehansen/no5-events-publisher;;no_research;JavaScript +https://github.com/jarlehansen/pg5100;;no_research;Java +https://github.com/jarlehansen/pg5100-demo;;no_research;Java +https://github.com/jarlehansen/pg6100;;no_research;JavaScript +https://github.com/jarlehansen/roman-numerals-kata;;no_research;Shell +https://github.com/jarlehansen/simple-react-starter;;no_research;JavaScript +https://github.com/jarlehansen/simple-react-test-starter;;no_research;JavaScript +https://github.com/jarlehansen/spock-spring-utils;;no_research;Shell +https://github.com/jarlehansen/spring-batch-test-example;;no_research;Java +https://github.com/jarlehansen/spring-boot-blueocean;;no_research;Groovy +https://github.com/jarlehansen/spring-boot-concourse;;no_research;Groovy +https://github.com/jarlehansen/spring-boot-drone;;no_research;Groovy +https://github.com/jarlehansen/spring-oauth-client-test;;no_research;Java +https://github.com/jarlehansen/spring-sleuth-baggage;Recreate problem with multiple baggage fields in HttpRequestParser;no_research;Kotlin +https://github.com/jarlehansen/springfox-loader;Simplifies the setup of Springfox.;no_research;Java +https://github.com/jarlehansen/springhateoas-test;;no_research;Java +https://github.com/jarlehansen/string-calculator-kata;;no_research;Shell +https://github.com/jarlehansen/string-calculator-kata-kotlin;;no_research;Shell +https://github.com/jarlehansen/string-calculator-kata-lite;;no_research;Shell +https://github.com/jarlehansen/systek-kotlin;;no_research;CSS +https://github.com/jarlehansen/systek-kotlin-frokostseminar;;no_research;CSS +https://github.com/jarlehansen/systek-kotlin-spring;;no_research;Kotlin +https://github.com/jarlehansen/test-cors;;no_research;HTML +https://github.com/jarlehansen/valueproperties-spring-boot;;no_research;Java +https://github.com/jarlehansen/webflux-playground;Playing around with spring webflux;no_research; +https://github.com/jaseg/002;;no_research;Makefile +https://github.com/jaseg/7segstuff;;no_research;C +https://github.com/jaseg/acpdl;Download MP3s you bought from Amazon CloudPlayer;no_research;Perl +https://github.com/jaseg/advanced-anki-stats;;no_research;Python +https://github.com/jaseg/altium_svg;Hacky script to import svg into altium;no_research;Python +https://github.com/jaseg/archstrap;Bootstrap remote-unlockable encrypted-root arch installation over ssh using ansible;no_research;Shell +https://github.com/jaseg/Arduino-CCD;An attempt at reverse-engineering a scanner CCD PCB and using it with an arduino;no_research;C +https://github.com/jaseg/arduino-mega-pwm16;;no_research;Java +https://github.com/jaseg/avr-capacitive;;no_research; +https://github.com/jaseg/avr-uip;;no_research;C +https://github.com/jaseg/Better-XTrLock;This is a mod of xtrlock not displaying the blue lock but instead completely hiding the cursor.;no_research;C +https://github.com/jaseg/bikelights;;no_research;Prolog +https://github.com/jaseg/bitcoin_resource_calculation;A back-of-the-envelope calculation of Bitcoin's ecological footprint;no_research;Jupyter Notebook +https://github.com/jaseg/bt-lamp;;no_research;C +https://github.com/jaseg/Buspirate-SPI-Sniffer;This is a variant of the original v0.3 code I use to output debug messages from an AVR microcontroller via SPI.;no_research;C +https://github.com/jaseg/BUZ2-Master;;no_research; +https://github.com/jaseg/bvgflip;;no_research;C +https://github.com/jaseg/c-mote;Wire-bound sensor mote for c-base and AfRA;no_research;C++ +https://github.com/jaseg/cabinet;Work in progress;no_research;C +https://github.com/jaseg/cerebrum;RPC framework for interaction with c firmware from python host applications;no_research;C +https://github.com/jaseg/cerebrum-control;A server to control leds, analog meters and switches on old control panels through a certain series of tubes.;no_research;JavaScript +https://github.com/jaseg/cerebrum-control-python;A server to control LEDs, switches and analog meters from old control panels with an arduino via various interfaces (so far: REST, JSON-RPC);no_research;Python +https://github.com/jaseg/cerebrum-firmware;The arduino/avr-firmware for cerebrum-control. Allows the control of a load of switches, LEDs and analog meters via a serial port.;no_research;C +https://github.com/jaseg/clippy;Clippy as a service;no_research;Python +https://github.com/jaseg/Computer-Room-Network-Documentation;yeah, as said above.;no_research; +https://github.com/jaseg/controlhub;;no_research;Python +https://github.com/jaseg/DasTelefon;AVR sources (arduino-compatible) to connect an old rotary phone to an arduino;no_research;C +https://github.com/jaseg/dater;;no_research;Python +https://github.com/jaseg/dazhbog;Various high-performance LED strip drivers;no_research;HTML +https://github.com/jaseg/dazzle-chibios;chibios fork for dazzle project;no_research;C +https://github.com/jaseg/dazzle-fw;;no_research;Jupyter Notebook +https://github.com/jaseg/depgraph;Generate graphviz dependency graphs from large Java projects;no_research;Python +https://github.com/jaseg/derrit;;no_research;Python +https://github.com/jaseg/docker-minecraft-overviewer;;no_research;Python +https://github.com/jaseg/dussmann-ubiquity;An ubiquity command to access RCS order systems.;no_research; +https://github.com/jaseg/Endymion;TBA;no_research; +https://github.com/jaseg/espressif-esp8266-sdk;Espressif's SDK for the ESP8266 wifi chip, with some fixes applied.;no_research;C +https://github.com/jaseg/esp_led_drv;;no_research;C +https://github.com/jaseg/ffi;A Foreign Function Call Through the TIOBE Top 20 and some;no_research;C++ +https://github.com/jaseg/firmware;;no_research; +https://github.com/jaseg/fish-config;My personal fish shell config;no_research;Shell +https://github.com/jaseg/flickrgy;;no_research;JavaScript +https://github.com/jaseg/flipdot;mööp;no_research;HTML +https://github.com/jaseg/forecast;Query weather forecasts from forecast.io;no_research;Shell +https://github.com/jaseg/fw-vfd;;no_research;C +https://github.com/jaseg/gerbolyze;Directly render SVG overlays into Gerber and Excellon files;no_research;C++ +https://github.com/jaseg/gerbonara; Pythonic library for reading/modifying/writing Gerber/Excellon/IPC-356 files. docs: https://gerbolyze.gitlab.io/gerbonara;no_research;C++ +https://github.com/jaseg/git;My personal fork of git/git.git, just containing stuff I am working on. Please note that I am happily rebasing around here so please do not pull from here.;no_research;C +https://github.com/jaseg/github;;no_research; +https://github.com/jaseg/gogs;;no_research;Go +https://github.com/jaseg/goserial;My fork of http://code.google.com/p/goserial/;no_research;Go +https://github.com/jaseg/Graf-Zahl;The first arithmantic programming language ever!;no_research;Ruby +https://github.com/jaseg/Hausaufgaben;Altes Zeug für's Studium;no_research;Shell +https://github.com/jaseg/heartbeat;;no_research;Ruby +https://github.com/jaseg/hotspot;;no_research;Python +https://github.com/jaseg/i3lock;My fork of git://code.i3wm.org/i3lock , the screen locker (not only) of the i3 window manager;no_research;C +https://github.com/jaseg/icosahedral-symmetry;;no_research; +https://github.com/jaseg/Internetinformation;just school stuff...;no_research; +https://github.com/jaseg/iot-sensor;;no_research;Jupyter Notebook +https://github.com/jaseg/ips-announce;The announcement server for the indoor positioning system we develop at global android dev camp 2012;no_research;JavaScript +https://github.com/jaseg/jinja-vim;jinja syntax highlighting atop other highlighters for vim;no_research;VimL +https://github.com/jaseg/k-chenschild;;no_research; +https://github.com/jaseg/kantinen;Scripts to access the menus of the various places providing food on TU Berlin's campus ;no_research;Python +https://github.com/jasl8r/docker-cobbler;Dockerized cobbler services;no_research;Python +https://github.com/jasl8r/docker-mattermost;Docker solution for mattermost;no_research;Shell +https://github.com/jasl8r/docker-ocserv;;no_research;Shell +https://github.com/jasl8r/docker-rackhd;;no_research;HTML +https://github.com/jasl8r/docker-seafile;Docker solution for Seafile;no_research;Shell +https://github.com/jasl8r/docker-ssh-plugin;;no_research;Shell +https://github.com/jasl8r/gatsby-starter-netlify-cms;;no_research;JavaScript +https://github.com/jasl8r/P-Opus;Opus for C# (forked from: https://opusdotnetinvoke.codeplex.com/);no_research;C# +https://github.com/jcklie/anki-maobi;máobĭ (毛笔) is an Anki add-on to create cards with writing quizzes for Hanzi (Chinese characters);no_research;Python +https://github.com/jcklie/cedict-to-anki;Convert CC-CEDict to an Anki deck.;no_research;Python +https://github.com/jcklie/chaotic-pendulum;Simulation of a double pendulum;no_research;Python +https://github.com/jcklie/chinese-vocab-lists;Collection of vocabulary lists for several Chinese books, sorted by book and unit.;no_research; +https://github.com/jcklie/chip-8-dart;Interpreter for the Chip-8-Language written in Dart. Chip-8 is a simple, interpreted, programming language.;no_research;Dart +https://github.com/jcklie/chip8-rs;CHIP-8 interpreter in Rust.;no_research;Rust +https://github.com/jcklie/daidalos;Firmware for quadrocopter at TU Darmstadt RMR;no_research;C +https://github.com/jcklie/dhbw-td;The name says it all. ;no_research;Java +https://github.com/jcklie/dotfiles;A set of my configuration files;no_research;Vim script +https://github.com/jcklie/dvious-rs;DVI (Device independent file format) toolkit in Rust;no_research;Rust +https://github.com/jcklie/emnlp2020-emergency;;no_research; +https://github.com/jcklie/ftlookup;Simple Python wrapper around Facebook fastText;no_research;Python +https://github.com/jcklie/genetic-algorithms;Implementation of some genetic algorithms.;no_research;Python +https://github.com/jcklie/hack-assembler;"An implementation of the hack assembler, as found in ""The Elements of Computing Systems"".";research;Assembly +https://github.com/jcklie/hanzi-website;Website to look up information about Hanzi, especially Heisig;research;JavaScript +https://github.com/jcklie/hanzitools;Library to work with Chinese Characters (Hanzi) in Python;research;Python +https://github.com/jcklie/iccbc-2019;yáng táo (杨桃) is an augmented reality app for learning Chinese characters. This is our competition entry for the International Collegiate Competition for Brain-inspired Computing (ICCBC 2019).;no_research;Kotlin +https://github.com/jcklie/ireval;Commonly used information retrieval (IR) metrics implemented in Python and trec_eval conform;research;Python +https://github.com/jcklie/jcklie;;no_research; +https://github.com/jcklie/keras-autoencoder;Collection of autoencoders written in Keras;no_research;Python +https://github.com/jcklie/kson;Simple JSON parse in Java;no_research;Java +https://github.com/jcklie/kvs;A simple key-value store written in Rust.;no_research;Rust +https://github.com/jcklie/ldap-explainer;;no_research;Go +https://github.com/jcklie/lindenmayer;Generate fractals with L-Systems;no_research;Python +https://github.com/jcklie/ludum-dare-44;Ludum Dare 44;no_research;GDScript +https://github.com/jcklie/ludum-dare-45;Our entry for Ludum Dare 45;no_research;GDScript +https://github.com/jcklie/mail-myself-android;Android app to take notes and regularly send them to a mail address of your choice;no_research;Kotlin +https://github.com/jcklie/manganese-harvest-core;Informaticup 2013 solutions;no_research;Shell +https://github.com/jcklie/manganese-harvest-logic;Cython + C++ module for simulating robots on the pacific seafloor. Lots faster than doing it python.;no_research;C++ +https://github.com/jcklie/pngme;Store secrets in PNG files.;no_research;Rust +https://github.com/jcklie/programming-challenges;"My solutions of ""Programming Challenges: The Programming Contest Training Manual""";no_research;C++ +https://github.com/jcklie/project-euler;My solutions to http://projecteuler.net/;no_research;Clojure +https://github.com/jcklie/ReindeerAssembler;"A simple assembler for the Hack platform, as given in ""The Elements of Computing Systems"".";no_research;Java +https://github.com/jcklie/ReindeerCompute;"This repository holds the implementation of the projects given by the book ""The Elements of Computing Systems"",";no_research;Assembly +https://github.com/jcklie/ReindeerDetabelize;ReindeerDetabelize is a tool that removes tabular data from text files or call libaries to extract text from pdf and use these. It can also tag them, save the tagged/detabelized files and save them. ;no_research;Java +https://github.com/jcklie/ReindeerIkenga;Automized extraction of the DHBW Calendar to a Google Calendar;no_research;Python +https://github.com/jcklie/ReindeerSametimeToTwitter;Allows to share your IBM Sametime status on twitter.;no_research;Python +https://github.com/jcklie/ros-panopticon;Ground truth based on four ceiling cameras that detect Aruco markers on robots.;no_research;C++ +https://github.com/jcklie/rust-prometheus-nvidia-gpu-exporter;NVIDIA GPU Prometheus Exporter written in Rust;no_research;Rust +https://github.com/jcklie/seqviz;Visualize sequence tagging results.;research;Python +https://github.com/jcklie/setlx2py;A SetlX to Python compiler.;no_research;Python +https://github.com/jcklie/sicp-clojure;"My solutions to ""Structure and Interpretation of Computer Programs"" in Clojure";no_research;Clojure +https://github.com/jcklie/slurmee;Simple Python 3 package to get information when running Python programs in slurm;no_research;Python +https://github.com/jcklie/Sonify;Software Engineering Projet DHBW Mannheim - Creates MIDI-Files from given input text via black magic.;no_research;Java +https://github.com/jcklie/startrec;Python wrapper for trec_eval, a library to evaluate information retrieval (IR);no_research;Cython +https://github.com/jcklie/TwitchBook;Bring Twitch emoticons to Facebook;no_research;Python +https://github.com/jcklie/twitchbook-chrome;Chrome Extension to bring Twitch emoticons to Facebook;no_research;HTML +https://github.com/jcklie/vrmagic_connector;ROS package to connect a VRMagic USB camera into the ROS ecosystem. ;no_research;C++ +https://github.com/jcklie/watersnake;Digital image watermarking in Python;no_research;Python +https://github.com/jcklie/website;;no_research;HTML +https://github.com/jcklie/wikimapper;Mapping Wikipedia pages to Wikidata IDs and vice versa.;no_research;Python +https://github.com/jcklie/write-yourself-a-git;Write yourself a Git written in Rust;no_research;Rust +https://github.com/jcklie/wukong;Rust implementation of the monkey programming language;no_research;Rust +https://github.com/jensopetersen/Deutsche-Gesetze;An app for eXist-db based on German law texts marked up with TEI;no_research;XQuery +https://github.com/jensopetersen/hsg;Toward history.state.gov 3.0;no_research;XQuery +https://github.com/jensopetersen/jiaguwen;Porting Thesaurus Linguae Sericae to eXist-db;no_research;XQuery +https://github.com/jensopetersen/merula;A Standoff Implementation of TEI (Text Encoding Initiative) markup;no_research;XQuery +https://github.com/jensopetersen/mopane;A collection of XQuery scripts facilitating standoff markup of TEI documents;no_research;XQuery +https://github.com/jensopetersen/naddara;eXist-db app for displaying image galleries;no_research;CSS +https://github.com/jensopetersen/tei-compactor;A script to list all unique paths in a TEI (Text Encoding Initiative) document and construct a TEI instance incorporating only used paths.;no_research;XQuery +https://github.com/jensopetersen/zarit;you name it …;no_research;XQuery +https://github.com/jfmengels/.github;My GitHub repository defaults;no_research; +https://github.com/jfmengels/advent-of-code-2021;;no_research;Elm +https://github.com/jfmengels/awesome-elm-sponsorship;Elm profiles to sponsor;no_research; +https://github.com/jfmengels/batoto-manganese;Manganese plugin for crawling through Batoto;no_research;JavaScript +https://github.com/jfmengels/blog;;no_research;JavaScript +https://github.com/jfmengels/cli-test;Testing framework for command-line interfaces written with Node.js.;no_research; +https://github.com/jfmengels/connect3;;no_research;Elm +https://github.com/jfmengels/console-capture;Capture and register console logging method calls for testing purposes.;no_research; +https://github.com/jfmengels/create-eslint-index;;no_research;JavaScript +https://github.com/jfmengels/db-multiverse;;no_research;JavaScript +https://github.com/jfmengels/elm-ast;;no_research; +https://github.com/jfmengels/elm-benchmarks;All sorts of benchmarks I made for comparing Elm code;no_research;Elm +https://github.com/jfmengels/elm-compiler-case-mismatch-sscce;SSCCE for a compiler error;no_research;Elm +https://github.com/jfmengels/elm-lint;elm-lint lints Elm source code, to add additional guarantees to your project.;no_research;Elm +https://github.com/jfmengels/elm-lint-reporter;Formats the result of elm-lint in a nice human-readable way;no_research;Elm +https://github.com/jfmengels/elm-linter;;no_research; +https://github.com/jfmengels/elm-package-with-application-sscce;;no_research;Elm +https://github.com/jfmengels/elm-review;Analyzes Elm projects, to help find mistakes before your users find them.;no_research;Elm +https://github.com/jfmengels/elm-review-bad-code;elm-review rules to make Elm code worse;no_research;Elm +https://github.com/jfmengels/elm-review-code-style;;no_research;Elm +https://github.com/jfmengels/elm-review-cognitive-complexity;;no_research;Elm +https://github.com/jfmengels/elm-review-common;Provides common linting rules for elm-review;no_research;Elm +https://github.com/jfmengels/elm-review-config;Starter configurations for elm-review;no_research;Elm +https://github.com/jfmengels/elm-review-debug;Provides elm-review rules to detect debug code;no_research;Elm +https://github.com/jfmengels/elm-review-design-discussions;Discussions around elm-review's design and evolution;no_research; +https://github.com/jfmengels/elm-review-documentation;Provides elm-review rules to help with the quality and correctness of your Elm project's documentation;no_research;Elm +https://github.com/jfmengels/elm-review-example;Example project using elm-review;no_research;Elm +https://github.com/jfmengels/elm-review-license;Provides an elm-review rule to prevent using packages with unapproved licenses;no_research;Elm +https://github.com/jfmengels/elm-review-module-organization;;no_research;JavaScript +https://github.com/jfmengels/elm-review-no-hardcoded-css;;no_research;Elm +https://github.com/jfmengels/elm-review-no-ignoring-errors;;no_research;Elm +https://github.com/jfmengels/elm-review-noop;Unpublished rules to forbid NoOp messages and useless Cmds;no_research;Elm +https://github.com/jfmengels/elm-review-performance;;no_research;Elm +https://github.com/jfmengels/elm-review-random-insights;Random elm-review rules to gain insight into your Elm codebase;no_research;Elm +https://github.com/jfmengels/elm-review-reporter;Formats the result of elm-review in a nice human-readable way;no_research;Elm +https://github.com/jfmengels/elm-review-rule-ideas;Rule ideas for elm-review;no_research; +https://github.com/jfmengels/elm-review-scope;Helper for elm-review that collects data about where variables come from;no_research;Elm +https://github.com/jfmengels/elm-review-simplify;Provides elm-review rules to simplify your Elm code ;no_research;Elm +https://github.com/jfmengels/elm-review-test-values;Provides elm-review rules to find misuses of test-only values;no_research;Elm +https://github.com/jfmengels/elm-review-testing-something;;no_research;JavaScript +https://github.com/jfmengels/elm-review-the-elm-architecture;Provides elm-review rules to detect unused functions and types in your Elm files;no_research;Elm +https://github.com/jfmengels/elm-review-unused;Provides elm-review rules to detect unused elements in your Elm project;no_research;Elm +https://github.com/JKatzwinkel/bash;mainly bash. useful scripts I get to write now and then, notes to myself and boilerplate stuff;no_research;Shell +https://github.com/JKatzwinkel/bruellkaraoke;Karaoke system for the poor. No windoze, Qt5 or Java required! Simple, clean, and nerdom-compliant ascii-UI instead.;no_research; +https://github.com/JKatzwinkel/cdaudio-apport;;no_research;Python +https://github.com/JKatzwinkel/computernetworks;;no_research;TeX +https://github.com/JKatzwinkel/coptdict;;no_research; +https://github.com/JKatzwinkel/cypress-inputfield-sigsevg-crash-demo;;no_research;HTML +https://github.com/JKatzwinkel/dhd-poster;;no_research; +https://github.com/JKatzwinkel/dotfiles;;no_research;Vim Script +https://github.com/JKatzwinkel/hpi-notes;;no_research; +https://github.com/JKatzwinkel/jjworld2000;;no_research;Python +https://github.com/JKatzwinkel/kathaireo;kathaireo is an interactive interpreter for RDF operations.;no_research;Python +https://github.com/JKatzwinkel/landscape-gen;;no_research;Java +https://github.com/JKatzwinkel/ncid-xmpp;XMPP-module for NCID, using sendxmpp to inform subscribers of incoming calls. Features custom phone book, caller log and number resolution based on german Ortsnetzkennzahlenverzeichnis.;no_research;Shell +https://github.com/JKatzwinkel/oai-status;Online Status of the OAI-PMH Service of Staatsbibliothek Berlin;no_research;Python +https://github.com/JKatzwinkel/paperizers;;no_research;Shell +https://github.com/JKatzwinkel/popolsku;delicatesy polonia;no_research;Python +https://github.com/JKatzwinkel/python-misc;Collection of Python scripts made for various purposes. Clone of bash repo with everything removed but Python scripts.;no_research;Python +https://github.com/JKatzwinkel/spring-data-elasticsearch-8-test;how to use spring-data-elasticsaerch 5.0.0-M5 with elasticsearch 8.3.1? ;no_research;Java +https://github.com/JKatzwinkel/sym_comm;;no_research;Python +https://github.com/JKatzwinkel/tla-populate;Python script populating TLA ES backend;no_research;Python +https://github.com/JKatzwinkel/wikidata-sempub-util;collection of very sloppily written python modules and scripts for wikidata access and stuff;no_research;HTML +https://github.com/jmfernandez/bioparsing-master-isciii;Different python 2.7 examples for bioinformatic students;no_research;Python +https://github.com/jmfernandez/citation-cff-checker;CITATION.cff checker, so version told there does match with the official one in the repository;no_research;Python +https://github.com/jmfernandez/CombiModel;CombiModel repository;no_research;Java +https://github.com/jmfernandez/CombiModelWeb;CombiModelWeb repository;no_research;Java +https://github.com/jmfernandez/Dancer2-Plugin-CSRF;A repo which fixes Dancer2::Plugin::CSRF (originally created by @jumpercc);no_research;Perl +https://github.com/jmfernandez/incremental_hashing;;no_research;JavaScript +https://github.com/jmfernandez/nethandler;A netlink listener which will run actions based on events, like net devices going down or up;no_research;Python +https://github.com/jmfernandez/notify-mpv;;no_research;Lua +https://github.com/jmfernandez/PollingMachine;This is a toy project about a balloting web, built on node.js, express.js, EJS, and sqlite3;no_research;JavaScript +https://github.com/jmfernandez/portage-inb-overlay;Personal overlay used for my INB computers;no_research;Shell +https://github.com/jmfernandez/pre-commit_mirrors-actionlint;;no_research;Python +https://github.com/jmfernandez/pre-commit_mirrors-tan;Mirror of the tan package for pre-commit;no_research;Python +https://github.com/jmfernandez/sysBatt;Toy project to remember C programming. It prints the battery status using /sys/class/power_supply entries;no_research;C +https://github.com/jmfernandez/test-rdf-trine;A repository with Perl code which tests RDF::Trine capabilities;no_research;Perl +https://github.com/jmfernandez/test-rdf4j;A project which tests persistent native triplestore capabilities of RDF4J;no_research;Java +https://github.com/jmvanel/bankplus;;no_research;Shell +https://github.com/jmvanel/corporate_risk;forms for corporate risk evaluation;no_research;Scala +https://github.com/jmvanel/dwca-rdf;;no_research;Scala +https://github.com/jmvanel/Euler-CBFCM-GUI;GUI for Euler CBFCM inference engine;no_research;Java +https://github.com/jmvanel/jena-examples;Apache Jena examples;no_research;Java +https://github.com/jmvanel/Learning_Deep_Learning;;no_research; +https://github.com/jmvanel/rdf-calendar;Javascript HTML library for calendar from RDF data;no_research;JavaScript +https://github.com/jmvanel/rdf-convert;Various conversions to RDF;no_research;Scala +https://github.com/jmvanel/rdf-geo-map;Reusable geographical map using Leaflet, taking data from any RDF (LOD) URL;no_research; +https://github.com/jmvanel/rdf-i18n;Translations of classical RDF vocabularies;no_research;sed +https://github.com/jmvanel/rdf_biodiversity;RDF infrasfructure and applications for nature observations;no_research; +https://github.com/jmvanel/semantic_forms;Form generators leveraging semantic web standards (RDF(S), OWL, SPARQL , ...;no_research;Scala +https://github.com/JochenGraf/a5-csc;;no_research;Groovy +https://github.com/jochenklar/abschiebungen;;no_research;Python +https://github.com/jochenklar/ansible-tilestache;;no_research;Shell +https://github.com/jochenklar/backup;This script simplifies backups of directories using rsync.;no_research;Python +https://github.com/jochenklar/backup-git-repos;Backup a list of git repositories and keep them up to date.;no_research;Python +https://github.com/jochenklar/bbs;;no_research;Python +https://github.com/jochenklar/bike;A small web application to visualize my bike rides.;no_research;Python +https://github.com/jochenklar/caipirinha;Caipirinha is a light-weight user management system and identity provider written in django.;no_research;Python +https://github.com/jochenklar/chemotion-converter-tests;;no_research;Python +https://github.com/jochenklar/chemotion-formats;Playground to work on a generic format for chemotion (and more).;no_research;Python +https://github.com/jochenklar/coffeecalc;;no_research;Python +https://github.com/jochenklar/constellations;;no_research;JavaScript +https://github.com/jochenklar/corona;;no_research;Jupyter Notebook +https://github.com/jochenklar/digital-rocket;;no_research;JavaScript +https://github.com/jochenklar/django-template;An empty django project to get things started.;no_research;Python +https://github.com/jochenklar/django-test-generator;A set of mixins to automatically generate tests generic Django views and DRF Viewsets.;no_research;Python +https://github.com/jochenklar/django-vendor-files;A small extension to download css and js vendor files from CDNs and host them locally.;no_research;Python +https://github.com/jochenklar/djangogirls-test;I'm a coach at Django Girls Berlin so I have to do the tutorial, right?;no_research;Python +https://github.com/jochenklar/dump;A set of scripts to perform database dumps of all databases in seperate tarballs.;no_research;Python +https://github.com/jochenklar/elasticsearch-1.3.9-docker;A docker setup for elasticsearch 1.3.9 (for development purposes).;no_research;Dockerfile +https://github.com/jochenklar/entwicklung-berlins;;no_research;CSS +https://github.com/jochenklar/evora;evolution of a polytropic fluid within a cosmological framework including the influence of gravity, primordial chemical processes, radiative cooling, heating by a UV background, and thermal conduction;no_research;FORTRAN +https://github.com/jochenklar/garmin-to-geojson;Converts GPX or TCX files to geojson;no_research;Python +https://github.com/jochenklar/gpxviewer;A Python script to visualize GPX files using Leaflet.;no_research;Python +https://github.com/jochenklar/isimip-scripts;Some scripts, to be used in the context of ISIMIP.;no_research;Python +https://github.com/jochenklar/isimip-viewer;;no_research;Python +https://github.com/jochenklar/jekyll-template;;no_research;Ruby +https://github.com/jochenklar/jkTable;A moderately simple javascript table.;no_research;JavaScript +https://github.com/jochenklar/jochenklar;;no_research; +https://github.com/jochenklar/jochenklar.de-wagtail;Wagtail project for my website.;no_research;Python +https://github.com/jochenklar/logparser;Parses logs in the Apache Common Log Format (CLF) and stores them without personal information as JSON, CSV or in a database.;no_research;Python +https://github.com/jochenklar/maps;;no_research;Vue +https://github.com/jochenklar/meps;A set of scripts to interact with the (official) lists of members of the european parliament.;no_research;Python +https://github.com/jochenklar/oklab-talk;;no_research;CSS +https://github.com/jochenklar/pypi-release;A command line script to publish python packages to PyPI (using twine).;no_research;Python +https://github.com/jochenklar/python-template;An empty python project to get things started. ;no_research;Python +https://github.com/jochenklar/quantify;An application to collect personal (health) data of oneself.;no_research;Python +https://github.com/jochenklar/radar-notebooks;;no_research;Jupyter Notebook +https://github.com/jochenklar/rdmo-advanced;;research;CSS +https://github.com/jochenklar/rdmo-basic;;research;CSS +https://github.com/jochenklar/rdmo-xml;;no_research;Python +https://github.com/jochenklar/rdmo.jochenklar.de;;no_research;Python +https://github.com/jochenklar/rdmo.jochenklar.de-ansible;A simple ansible playbook to deploy RDMO;no_research;Shell +https://github.com/jochenklar/rdmo.jochenklar.dev;;no_research;Python +https://github.com/jochenklar/react-template;;no_research;JavaScript +https://github.com/jochenklar/reader2;A feed aggregator and reader;no_research;Python +https://github.com/jochenklar/redux-template;;no_research;JavaScript +https://github.com/jochenklar/remote;A remote control for spotify on the command line.;no_research;Python +https://github.com/jochenklar/temperature;;no_research;Python +https://github.com/jochenklar/test;;no_research; +https://github.com/jochenklar/tiles;;no_research;JavaScript +https://github.com/jochenklar/tilestache-app;;no_research;Python +https://github.com/jochenklar/trees-ingestor;;no_research;Python +https://github.com/jochenklar/virt-tools;A small collection of utilities for libvirt.;no_research;Python +https://github.com/jochenklar/weight;;no_research;Python +https://github.com/joewiz/adst;Prototype app for browsing and searching Association for Diplomatic Studies and Training (ADST) Oral History Interviews;no_research;XQuery +https://github.com/joewiz/airlock;Take snapshots of Airtable bases for offline browsing and transformation;no_research;XQuery +https://github.com/joewiz/airtable.xq;A library for the Airtable REST API and Metadata API, using XQuery;no_research;XQuery +https://github.com/joewiz/cxan-repo;Joe Wicentowski's personal CXAN repository;no_research; +https://github.com/joewiz/dashboard2;Redesign of the dashboard app;no_research;JavaScript +https://github.com/joewiz/enrich;REST services for eXist that OpenRefine can call to enrich hsg-bound data;no_research;XQuery +https://github.com/joewiz/exist-cjk;Full text search of CJK text with eXist-db;no_research;XQuery +https://github.com/joewiz/frus-dates;FRUS chronological search and sort proof of concept;no_research;XQuery +https://github.com/joewiz/frus-tei;Wrangling FRUS TEI;no_research; +https://github.com/joewiz/go-usa-gov;An XQuery library module for interacting with the Go.USA.gov URL shortener API;no_research;XQuery +https://github.com/joewiz/gsh;Draft work on geospatial history project;no_research;XQuery +https://github.com/joewiz/homepage;Code of the e-editiones.org homepage;no_research; +https://github.com/joewiz/hsg-test;User interface and stress tests for hsg-shell;no_research;Java +https://github.com/joewiz/indexes;Browse eXist-db index configurations and contents;no_research;XQuery +https://github.com/joewiz/katacoda-scenarios;Katacoda Scenarios;no_research; +https://github.com/joewiz/learn-xquery;A list of great articles, blog posts, and books for learning XQuery;no_research; +https://github.com/joewiz/luckybreak.us;code for luckybreak.us;no_research;HTML +https://github.com/joewiz/markupuk-2019-paper;;no_research;CSS +https://github.com/joewiz/my-first-repository;A gentle introduction to Git;no_research; +https://github.com/joewiz/nginx-eXist-ubuntu;Nginx as a reverse proxy and cache server for the eXist-db Application Server;no_research;Shell +https://github.com/JPeer264/analyse-testing-example;Testing gulp.;no_research; +https://github.com/JPeer264/angular-login-boilerplate;This is an example how the login could work;no_research;JavaScript +https://github.com/JPeer264/ansible-example;This is an ansible example to deploy a Node.js backend and a frontend;no_research;JavaScript +https://github.com/JPeer264/brunt;A grunt boilerplate with linting, testing, live updates, etc.;no_research;JavaScript +https://github.com/JPeer264/burglar;Burglar is an app for a fictive hipster burger shop;no_research; +https://github.com/JPeer264/burglar-styleguide;🍔 A styleguide for the famous burger franchise: BURGLAR;no_research;JavaScript +https://github.com/JPeer264/continuous-delivery-assignments;The assignments based on the continuous delivery course at FHS;no_research;Ruby +https://github.com/JPeer264/datamining;An approach to cluster users on Last.fm;no_research;Python +https://github.com/JPeer264/datavis_d3;📊 Students dataset visualization made by D3.js;no_research;TypeScript +https://github.com/JPeer264/docusaurus-cache;;no_research;JavaScript +https://github.com/JPeer264/et-grunt;Load tasks if you really need them;no_research;JavaScript +https://github.com/JPeer264/federation-hpa;;no_research;JavaScript +https://github.com/JPeer264/gatsby-plugin-rcs;The gatsby plugin for rcs;no_research;JavaScript +https://github.com/JPeer264/git-dummy-repo;A dummy repo for git-needs-push and git-needs-pull;no_research; +https://github.com/JPeer264/grunt-rcs;The grunt task to the main module rename-css-selectors;no_research;JavaScript +https://github.com/JPeer264/gulp-rcs;The gulp task to the main module rename-css-selectors;no_research;JavaScript +https://github.com/JPeer264/hasten;A project scaffolder with a CI-optimized Gruntfile;no_research;JavaScript +https://github.com/JPeer264/JPeer.at;💻 My website on Github;no_research;SCSS +https://github.com/JPeer264/keepParentFocused;Adds class on an element while one of the children has the focus;no_research;TypeScript +https://github.com/JPeer264/lumen-image;;no_research;PHP +https://github.com/JPeer264/node-catch-modules;find a global module or a local one by name or package.json name;no_research;JavaScript +https://github.com/JPeer264/node-catch-modules-test;;no_research; +https://github.com/JPeer264/node-crufty;Finds local dirty repositories, project with node_modules which are not modified over a specific time and many more...;no_research;JavaScript +https://github.com/JPeer264/node-current-git-branch;A tool to get the branch name of a specific directory;no_research;JavaScript +https://github.com/JPeer264/node-git-branches;Get the branches as array which have no remote;no_research;JavaScript +https://github.com/JPeer264/node-git-commit-info;Get the info of an specific commit hash;no_research;TypeScript +https://github.com/JPeer264/node-git-needs-pull;Check synchronously if a git repository needs to pull;no_research;Shell +https://github.com/JPeer264/node-git-needs-push;Check synchronously if a git repository needs to push;no_research;JavaScript +https://github.com/JPeer264/node-git-root;A module to find the git root synchronously;no_research;JavaScript +https://github.com/JPeer264/node-is-git-added;Check if a files are added in a git repository;no_research;JavaScript +https://github.com/JPeer264/node-is-git-dirty;Check if a repository has untracked, modified or added files;no_research;TypeScript +https://github.com/JPeer264/node-is-git-repository;A tool to check if a specific location is a git repository;no_research;JavaScript +https://github.com/JPeer264/node-is-merge-commit;A tool to check if a specific commit is a merge commit;no_research;TypeScript +https://github.com/JPeer264/node-json-extra;A node module to give you more power for json files;no_research;TypeScript +https://github.com/JPeer264/node-module-root;A node module to find the global or project modules;no_research; +https://github.com/JPeer264/node-rcs-core;Rename css selectors across all files;no_research;TypeScript +https://github.com/JPeer264/node-rename-css-selectors;📝 Rename css classes and id's in files;no_research;TypeScript +https://github.com/kasperlewau/angular-filter-suspend;an additional 'suspend' parameter to built-in angular filters;no_research;JavaScript +https://github.com/kasperlewau/angular-float-label;An implementation of the floating label pattern for Angular. [NOT MAINTAINED];no_research;JavaScript +https://github.com/kasperlewau/angular-orderby-ignore;ignore capability added to orderBy filter;no_research;JavaScript +https://github.com/kasperlewau/angular-q-thenresolve;.thenResolve for $q promises;no_research;JavaScript +https://github.com/kasperlewau/angular-subscribe;$subscribe method for setting up $rootScope listeners that die on $destroy;no_research;JavaScript +https://github.com/kasperlewau/base62;converts ints to byteslices/strings of base62 data and back again.;no_research;Go +https://github.com/kasperlewau/casketUI;My personal User Interface for WoW;no_research;Lua +https://github.com/kasperlewau/compound;;no_research;Go +https://github.com/kasperlewau/dmenu;;no_research;C +https://github.com/kasperlewau/dwm;;no_research;C +https://github.com/kasperlewau/gio;mirror of https://git.sr.ht/~eliasnaur/gio;no_research;Go +https://github.com/kasperlewau/godwm;;no_research; +https://github.com/kasperlewau/hyperterm-oceanic-next;oceanic next theme for hyperterm;no_research;JavaScript +https://github.com/kasperlewau/jira-unhijack-extension;unhijack the tab keys from firefox in *atlassian.net;no_research;JavaScript +https://github.com/kasperlewau/koa-h2-man-pusher;server push middleware for koa w/ manifest support;no_research;JavaScript +https://github.com/kasperlewau/koa-sass;koa wrapper for sass-middleware;no_research;JavaScript +https://github.com/kasperlewau/marzipan;package marzipan provides a marzipan writer;no_research;Go +https://github.com/kasperlewau/memeater;eats ram for breakfast;no_research;C +https://github.com/kasperlewau/pool;simple go worker pool;no_research;Go +https://github.com/kasperlewau/pwpem;encrypt & decrypt PEM block(s) with passwords;no_research;Go +https://github.com/kasperlewau/redesk;;no_research;Go +https://github.com/kasperlewau/rt;package rt provides RoundTripper middleware for an *http.Client;no_research;Go +https://github.com/kasperlewau/screenlayout;my personal xrandr layouts;no_research;Shell +https://github.com/kasperlewau/slock;screen locker;no_research;C +https://github.com/kasperlewau/sri;subresource integrity shasums for a list of files;no_research;Go +https://github.com/kasperlewau/st;;no_research;C +https://github.com/kasperlewau/t;simple todos in the cli;no_research;Go +https://github.com/kasperlewau/tmuxwm;'fork' of tmuxwm;no_research;C +https://github.com/kasperlewau/warrior_prio;Calculate DPR for different target scenarios;no_research;Ruby +https://github.com/kevva/ama;Ask me anything;no_research; +https://github.com/kevva/animal-sounds;Get animal sounds;no_research;JavaScript +https://github.com/kevva/archive-type;Detect the archive type of a Buffer/Uint8Array;no_research;JavaScript +https://github.com/kevva/archive-type-cli;Detect the archive type of a file or stdin;no_research;JavaScript +https://github.com/kevva/argvments;Parse command line arguments;no_research;JavaScript +https://github.com/kevva/arr-obj-keys;Get the keys of an array of objects;no_research;JavaScript +https://github.com/kevva/arr-obj-values;Get the values of an array of objects;no_research;JavaScript +https://github.com/kevva/arr-rotate;Rotate all items in an array;no_research;JavaScript +https://github.com/kevva/astral-regex;Regular expression for matching astral symbols;no_research;JavaScript +https://github.com/kevva/base64-regex;Regular expression for matching base64 encoded strings;no_research;JavaScript +https://github.com/kevva/begins-with;Checks if string begins with the given target string;no_research;JavaScript +https://github.com/kevva/bin-build;Easily build binaries;no_research;JavaScript +https://github.com/kevva/bin-check;Check if a binary is working by checking its exit code;no_research;JavaScript +https://github.com/kevva/bin-wrapper;Binary wrapper that makes your programs seamlessly available as local dependencies;no_research;JavaScript +https://github.com/kevva/bitcoin-regex;Regular expression for matching Bitcoin addresses;no_research;JavaScript +https://github.com/kevva/brightness;Change screen brightness;no_research;JavaScript +https://github.com/kevva/brightness-cli;Change the screen brightness;no_research;JavaScript +https://github.com/kevva/broccoli-myth;Preprocess CSS with Myth;no_research;JavaScript +https://github.com/kevva/broccoli-rework;Preprocess CSS with Rework;no_research;JavaScript +https://github.com/kevva/broccoli-styl;Preprocess CSS with Styl;no_research;JavaScript +https://github.com/kevva/buffer-to-vinyl;Create a vinyl file or stream from a buffer;no_research;JavaScript +https://github.com/kevva/calc-percent;Calculate percentage;no_research;JavaScript +https://github.com/kevva/caw;Construct HTTP/HTTPS agents for tunneling proxies;no_research;JavaScript +https://github.com/kevva/chromium-bin;Chromium wrapper that makes it seamlessly available as a local dependency;no_research;JavaScript +https://github.com/kevva/claim;Tiny assertion library;no_research;JavaScript +https://github.com/kevva/compare-size;Compare size between two files;no_research;JavaScript +https://github.com/kevva/compare-size-cli;Compare size between two files;no_research;JavaScript +https://github.com/kevva/compare-week;Check if two dates are within the same week;no_research;JavaScript +https://github.com/kevva/concat-object;Concatenate object property values into arrays;no_research;JavaScript +https://github.com/kevva/condense-keys;Remove keys with empty values from an object;no_research;JavaScript +https://github.com/kevva/control-access;Easy CORS handling;no_research;JavaScript +https://github.com/kevva/credit-card-regex;Regular expression for matching credit card numbers;no_research;JavaScript +https://github.com/kevva/cross-exec-file;Cross platform execFile;no_research;JavaScript +https://github.com/kevva/crypto-tickers;Get price tickers for crypto currencies;no_research;JavaScript +https://github.com/kevva/decompress;Extracting archives made easy;no_research;JavaScript +https://github.com/kevva/decompress-bzip2;bzip2 plugin for decompress;no_research;JavaScript +https://github.com/kevva/decompress-cli;Extracting archives made easy;no_research;JavaScript +https://github.com/kevva/decompress-tar;tar plugin for decompress;no_research;JavaScript +https://github.com/kevva/decompress-tarbz2;tar.bz2 plugin for decompress;no_research;JavaScript +https://github.com/kevva/decompress-targz;tar.gz plugin for decompress;no_research;JavaScript +https://github.com/kevva/decompress-tarxz;tar.xz plugin for decompress;no_research;JavaScript +https://github.com/kevva/decompress-unzip;zip plugin for decompress;no_research;JavaScript +https://github.com/kevva/deku-button;Button component for deku;no_research;JavaScript +https://github.com/kevva/deku-carousel;Carousel component for deku;no_research;JavaScript +https://github.com/kevva/deku-grid;Grid component for deku;no_research;JavaScript +https://github.com/kevva/deku-media-query;Media query component for Deku;no_research;JavaScript +https://github.com/kevva/deku-popup;Popup/modal component for deku;no_research;JavaScript +https://github.com/kevva/deku-slideout;Slideout component for Deku;no_research;JavaScript +https://github.com/kevva/dir-glob;Convert directories to glob compatible strings;no_research;JavaScript +https://github.com/kevva/download;Download and extract files;no_research;JavaScript +https://github.com/kevva/download-cli;Download and extract files;no_research;JavaScript +https://github.com/kevva/download-status;Progress bar plugin for download;no_research;JavaScript +https://github.com/kevva/elm-bin;elm-platform bin-wrapper that makes it seamlessly available as a local dependency;no_research;JavaScript +https://github.com/kevva/etc-keyboard;Detect keyboard layout on Linux;no_research;JavaScript +https://github.com/kevva/etc-keyboard-cli;Detect keyboard layout on Linux;no_research;JavaScript +https://github.com/kevva/exec-buffer;Run a Buffer through a child process;no_research;JavaScript +https://github.com/kevva/executable;Check if a file is executable;no_research;JavaScript +https://github.com/kevva/executable-cli;Check if a file is executable;no_research;JavaScript +https://github.com/kevva/ext-list;Return a list of known file extensions and their MIME types;no_research;JavaScript +https://github.com/kevva/ext-name;Get the file extension and MIME type from a file;no_research;JavaScript +https://github.com/kevva/ext-name-cli;Get the file extension and MIME type from a file;no_research;JavaScript +https://github.com/kevva/filter-obj-depth;Filter object keys and values by depth into a new object;no_research;JavaScript +https://github.com/kevva/get-base64;Get base64 from a string;no_research;JavaScript +https://github.com/kevva/get-browsers;Get ten most popular web browsers;no_research;JavaScript +https://github.com/kevva/get-global-paths;Get all global paths from an array;no_research;JavaScript +https://github.com/kevva/get-imports;Get CSS @imports from a string;no_research;JavaScript +https://github.com/kevva/get-proxy;Get configured proxy;no_research;JavaScript +https://github.com/kevva/get-res;Get ten most popular screen resolutions;no_research;JavaScript +https://github.com/kevva/github-add-collab;Add collaborators to GitHub repos;no_research;JavaScript +https://github.com/kevva/github-add-collab-cli;Add collaborators to GitHub repos;no_research;JavaScript +https://github.com/kevva/github-branches;Get all branches from a GitHub repository;no_research;JavaScript +https://github.com/kevva/github-branches-cli;Get all branches from a GitHub repository;no_research;JavaScript +https://github.com/kevva/github-gists;Get all gists from a GitHub user;no_research;JavaScript +https://github.com/kevva/github-gists-cli;Get all gists from a GitHub user;no_research;JavaScript +https://github.com/kevva/github-markdown-render;Render markdown using the GitHub Markdown API;no_research;JavaScript +https://github.com/kevva/github-remove-forks;Remove all forked repositories;no_research;JavaScript +https://github.com/kevva/github-repositories;Get all GitHub repos from a user or an organization;no_research;JavaScript +https://github.com/kevva/github-search-repos;Search GitHub repositories;no_research;JavaScript +https://github.com/kevva/github-search-repos-cli;Search GitHub repositories;no_research;JavaScript +https://github.com/kevva/github-token-user;Get the GitHub user from a token;no_research;JavaScript +https://github.com/kevva/github-token-user-cli;Get the Github user from a token;no_research;JavaScript +https://github.com/kevva/github-user-email;Get a GitHub users email;no_research;JavaScript +https://github.com/kevva/github-user-email-cli;Get a GitHub users email;no_research;JavaScript +https://github.com/kevva/graphql-got;Convenience wrapper for got to interact with GraphQL;no_research;JavaScript +https://github.com/kevva/gulp-decompress;Extract TAR, TAR.BZ2, TAR.GZ and ZIP archives;no_research;JavaScript +https://github.com/kevva/gulp-shorthand;Makes your CSS files lighter and more readable;no_research;JavaScript +https://github.com/kevva/hash-file;Create a hashed file name;no_research;JavaScript +https://github.com/kevva/hosts-path;Get the path to the hosts file;no_research;JavaScript +https://github.com/kevva/if-stream;Conditionally return a stream;no_research;JavaScript +https://github.com/kosarko/dp;;no_research;Shell +https://github.com/kosarko/dspace_python-rest_import;;no_research;Python +https://github.com/kosarko/hooks;;no_research;Python +https://github.com/kosarko/kontext-vagrant;;no_research;Shell +https://github.com/kosarko/lindat-catalog;;no_research;Ruby +https://github.com/kosarko/lindat-catalog-transformations;;no_research;XSLT +https://github.com/kosarko/pre-commit-lesshint;;no_research; +https://github.com/kosarko/puppet-test;;no_research;Puppet +https://github.com/kosarko/swig-loader;swig template loader for webpack 4;no_research;JavaScript +https://github.com/kosarko/unity-rest;;no_research;Shell +https://github.com/kreetrapper/Alextutorial;;no_research; +https://github.com/kreetrapper/presentation-cac2019;;no_research;TeX +https://github.com/LasaleFamine/ace-editor;Polymer (ES6) wrapper of Ace (C9) editor;no_research;JavaScript +https://github.com/LasaleFamine/action-ff-merge;GitHub Action for merging branches with FF;no_research;TypeScript +https://github.com/LasaleFamine/angular2-sample;A simple application as my first attempt with Angular 2 BETA version;no_research;JavaScript +https://github.com/LasaleFamine/basic-php-website-template;Very basic HTML to PHP template for speed-up development.;no_research;PHP +https://github.com/LasaleFamine/breeders;;no_research;TypeScript +https://github.com/LasaleFamine/casper-base;A CasperJs module some boilerprate to start writing a scraper :ghost:;no_research;JavaScript +https://github.com/LasaleFamine/channel-telegram-bot;Bot for Telegram to simply send actions to a channel (Telebot wrapper);no_research;JavaScript +https://github.com/LasaleFamine/check-good-party;Check the milano-js/good-party-2017 likes;no_research;JavaScript +https://github.com/LasaleFamine/chimp-cucumber;Learning Chimp with Cucumber;no_research;JavaScript +https://github.com/LasaleFamine/chrome-ext-boilerplate;Chrome extension boilerplate with Webpack and PostCSS ready.;no_research;JavaScript +https://github.com/LasaleFamine/chrome-reload-css;Simple extension for reload styles in-page.;no_research;JavaScript +https://github.com/LasaleFamine/create-app;Opinionated app generator.;no_research;TypeScript +https://github.com/LasaleFamine/CS50x15-16;Hello World! This is CS50! Introduction to Computer Science;no_research;C +https://github.com/LasaleFamine/docker-frontend-testing;:whale: FROM ubuntu. With Node, Yarn, Xvfb, Chrome and Firefox installed.;no_research;Dockerfile +https://github.com/LasaleFamine/docker-jenkins-frontend;A Docker image for Front-End deployments and testing with Jenkins and other tools.;no_research; +https://github.com/LasaleFamine/docker-mongo-parse-server;docker-compose ready for MongoDB, parse-server and parse-dashboard.;no_research;JavaScript +https://github.com/LasaleFamine/eslintc;Opinionated ESLint sharable configuration for my projects.;no_research;JavaScript +https://github.com/LasaleFamine/express-pagespeedapi;Simple NodeJs-Express application integrated with PageSpeed API;no_research;JavaScript +https://github.com/LasaleFamine/fatture-in-cloud-js;Fatture in Cloud API wrapper for Javascript;no_research;JavaScript +https://github.com/LasaleFamine/fatture-in-cloud-node;Fatture in Cloud API wrapper for Nodejs.;no_research;JavaScript +https://github.com/LasaleFamine/g-related-search-ext;Get Google SERP related search from your current search.;no_research;JavaScript +https://github.com/LasaleFamine/generator-phinm;:curly_loop: Scaffold out a node module.;no_research;JavaScript +https://github.com/LasaleFamine/generator-polymeres6;Generator for Polymer element written in ES2015(ES6) sintax;no_research;JavaScript +https://github.com/LasaleFamine/gha-command;GitHub Action run a command and save the output;no_research;JavaScript +https://github.com/LasaleFamine/git-user-local;Get Git user info from local git config;no_research;JavaScript +https://github.com/LasaleFamine/github-scout;Useful details from a GitHub repository.;no_research;JavaScript +https://github.com/LasaleFamine/go-todo-api;Learning Go making a RESTful API;no_research;Go +https://github.com/LasaleFamine/godev.space;Personal website.;no_research;CSS +https://github.com/LasaleFamine/goquote;Random quote wrapping APIs. Learning GO;no_research;Go +https://github.com/LasaleFamine/hapi-now-dashboard;Server for the now-dashboard web app and wrapper of Now APIs built with Hapi.js;no_research;JavaScript +https://github.com/LasaleFamine/http-server-pwa;:space_invader: http-server alike but for serving and rendering PWA: pwa-server;no_research;JavaScript +https://github.com/LasaleFamine/instagram-scraper-node;Wrapper of the Python instagram-scraper using nopy.;no_research;JavaScript +https://github.com/LasaleFamine/key-as-array;;no_research;JavaScript +https://github.com/LasaleFamine/lasale-lib-php;Utility library for PHP;no_research;PHP +https://github.com/LasaleFamine/lasalefamine;;no_research; +https://github.com/LasaleFamine/learn-machine-learning;;no_research;Python +https://github.com/LasaleFamine/learn-ms-bot-builder;Testing and learning the Microsoft Bot Builder Framework;no_research;JavaScript +https://github.com/LasaleFamine/learn-web-speech-api;Have fun with the Web Speech APIs;no_research;JavaScript +https://github.com/LasaleFamine/learning-crypto;:currency_exchange: Learning Crypto Currencies;no_research; +https://github.com/LasaleFamine/LoRa-docs;;no_research; +https://github.com/LasaleFamine/M101x16;M101x: Introduction to MongoDB using the MEAN Stack;no_research;JavaScript +https://github.com/LasaleFamine/machine-setup;💾 Useful BASH scripts for installation of needed softwares and configurations for new Virtual Machines.;no_research;Shell +https://github.com/LasaleFamine/makemehapi;Really simple but very powerful tutorial to learn Hapijs (http://hapijs.com/);no_research;JavaScript +https://github.com/LasaleFamine/medium-webpack-workbox;Sample repository for the Medium article;no_research;HTML +https://github.com/LasaleFamine/ng-pagespeed-cs50x;AngularJs application (front-end of express-pagespeed) for CS50x2016 Final Project;no_research;JavaScript +https://github.com/LasaleFamine/NOT-scamcoins-list;Ambitious attempt to group all the CryptoCurrencies that are or are supposed to be NOT scamcoins.;no_research; +https://github.com/LasaleFamine/now-dashboard;Δ Dashboard for Now deployments written in Vue.js ;no_research;JavaScript +https://github.com/LasaleFamine/npm-scout;Merge useful informations from the package.json and the repository of a NPM package.;no_research;JavaScript +https://github.com/LasaleFamine/npm-scout-cli;CLI tool for npm-scout;no_research;JavaScript +https://github.com/LasaleFamine/phi-zsh-theme;Clean and simple theme for ZSH.;no_research;Shell +https://github.com/LasaleFamine/phunctional;"""Almost functional"" useful methods which I like to use in my projects.";no_research;JavaScript +https://github.com/LasaleFamine/pi-listen-send;;no_research;Python +https://github.com/LasaleFamine/polymer-3;Welcome Polymer 3 (and ES Modules and NPM [and Webpack and PostCSS]);no_research;JavaScript +https://github.com/LasaleFamine/polymer-3-lit;Polymer 3 with lit-html implementation for rendering.;no_research;JavaScript +https://github.com/LasaleFamine/polymer-es6-todo;Really simple to-do app written with Polymer and contactlab-ui-components;no_research;CSS +https://github.com/LasaleFamine/polymer-hyper;Sample component with Polymer 3 and hyperHTML;no_research;JavaScript +https://github.com/LasaleFamine/polymer-lib-loader;Polymer (ES6) external (or internal) library loader component;no_research;JavaScript +https://github.com/LasaleFamine/polymer-twitter-timeline;Polymer (ES6) wrapper of Twitter Widget Library for Timelines;no_research;JavaScript +https://github.com/LasaleFamine/polymer-youtube-feed;Polymer (ES6) wrapper of YouTube APIs as video feeds;no_research;HTML +https://github.com/LasaleFamine/polymer2-sample;Sample app to learn Polymer 2.0-preview;no_research;HTML +https://github.com/LasaleFamine/pupperender;ExpressJs middleware for rendering PWA to bots using Puppeteer.;no_research;JavaScript +https://github.com/LasaleFamine/pwa-check-good-party;Polymer 2 web app to check the Milano Js Good Party 2017 talks likes;no_research;HTML +https://github.com/LasaleFamine/python-sql-bck;A configurable script written in Python to make backups of your SQL dbs;no_research;Python +https://github.com/LasaleFamine/quill-editor;Polymer (ES6 syntax) wrapper of QuillJs editor;no_research;JavaScript +https://github.com/LasaleFamine/quill-shady;Quill 1.2.3 with some fixes. The only version that works (at least...) with ShadyDOM (not ShadowDOM);no_research; +https://github.com/LasaleFamine/ragusabot;:newspaper: Telegram and Facebook bot for getting the latest news of Ragusa.;no_research;JavaScript +https://github.com/LasaleFamine/ragusabot.com;:globe_with_meridians: Website for Ragusa Bot;no_research;CSS +https://github.com/LasaleFamine/react-landing-countdown;A simple countdown page with React in support of UI;no_research;CSS +https://github.com/LasaleFamine/readdir-life;:file_folder: Check the oldest/latest files/folders within a directory;no_research;JavaScript +https://github.com/LasaleFamine/runnable-exports;Run your exports as command line arguments;no_research;JavaScript +https://github.com/LasaleFamine/s3-upload-api;;no_research;JavaScript +https://github.com/LasaleFamine/stateless-chat;Having fun with Hapijs, Socket.io and CSS Grids layout.;no_research;JavaScript +https://github.com/LasaleFamine/string-normalize-es6;Normalize to NFD a string using ES6 String.Prototype.Normalize;no_research;JavaScript +https://github.com/LasaleFamine/stylelint-design-tokens-plugin;Stylelint plugin for checking Design Tokens use inside your CSS.;no_research;JavaScript +https://github.com/LasaleFamine/try-riot-webpack;Learning Riotjs with Webpack;no_research;JavaScript +https://github.com/LasaleFamine/ts-module-boilerplate;Node.js Typescript module boilerplate;no_research;Shell +https://github.com/LasaleFamine/tsconfig;Sharable tsconfig.json;no_research; +https://github.com/LasaleFamine/vscode-css-vars;VSCode extension for CSS var and env var autocomplete;no_research;TypeScript +https://github.com/lauml/EWP-HA-16;Hausaufgabe 16;no_research;HTML +https://github.com/lauml/EWP-Ratespiel;;no_research;JavaScript +https://github.com/lcahlander/codelist-compare;This tool creates a comparison spreadsheet comparing two or more versions of a code list.;no_research;XQuery +https://github.com/lcahlander/exist-jsch;XQuery function wrapper around Jsch;no_research;Java +https://github.com/lcahlander/exist-jwt-authentication-realm;;no_research;Java +https://github.com/lcahlander/exist-security-ldap;LDAP Realm security implementation for eXist-db;no_research;Java +https://github.com/lcahlander/exist-stanford-nlp-chinese;;no_research;Java +https://github.com/lcahlander/marklogic-xqdoc-display;Here is code for displaying the code documentation generated from the xqdoc project;no_research;XQuery +https://github.com/lcahlander/menu-demo;Templating Menu Demonstration;no_research;XQuery +https://github.com/lcahlander/miscXQuery;Miscellaneous XQuery code;no_research;XQuery +https://github.com/lcahlander/multi-container-nginx-react-existdb;Sample deployment of an eXist-db based application into a multiple docker container environment.;no_research;JavaScript +https://github.com/lcahlander/my-app;;no_research;Java +https://github.com/lcahlander/mysec;An example of securing an eXist-db app;no_research;XQuery +https://github.com/lcahlander/paper-pagination;;no_research;JavaScript +https://github.com/lcahlander/react-flow-example;;no_research;TypeScript +https://github.com/lcahlander/scheduler-exist-app;An application for creating, maintaining, and removing scheduled tasks within eXist-db.;no_research;XQuery +https://github.com/lcahlander/schema;XML Schema Viewer;no_research;JavaScript +https://github.com/lcahlander/scxml-xq;An SCXML interpreter in XQuery;research;XQuery +https://github.com/lcahlander/tdemo;eXist-db templating demonstration;no_research;XQuery +https://github.com/lcahlander/test;;no_research;XQuery +https://github.com/lcahlander/transform-editor;;no_research;TypeScript +https://github.com/lcahlander/xqdoc-core;Core module to process XQuery code source to an xqDoc XML file;no_research;Java +https://github.com/lcahlander/xqDoc-documentation-display;;no_research;JavaScript +https://github.com/lcahlander/xqDoc-eXist-db;;no_research;JavaScript +https://github.com/lcahlander/xqDocMarkLogicGradlePlugin;;no_research; +https://github.com/lcahlander/xsd2json;XML Schema to JSON Schema Transform - Development and Test Environment;no_research;XQuery +https://github.com/leebyron/4000;;no_research; +https://github.com/leebyron/advent-of-code-2016;Solutions to the Advent of Code 2016 puzzles;no_research;JavaScript +https://github.com/leebyron/anyconnect-dark;Dark OSX menu bar assets for Cisco AnyConnect VPN.;no_research; +https://github.com/leebyron/async-to-gen;⌛ Use async functions in your JavaScript today with speed and simplicity.;no_research;JavaScript +https://github.com/leebyron/bigtype;💥 Type big stuff;no_research;HTML +https://github.com/leebyron/brett-sample-app;;no_research;JavaScript +https://github.com/leebyron/bubbletype;;no_research;JavaScript +https://github.com/leebyron/centerclock;A generative abstract clock.;no_research;JavaScript +https://github.com/leebyron/chain-js;A reactive framework.;no_research;JavaScript +https://github.com/leebyron/cocoa-fbg;;no_research; +https://github.com/leebyron/cocoa-net-connection;Cocoa class which monitors net connectivity;no_research;Objective-C +https://github.com/leebyron/cocoa-oauth2;Cocoa library for handling oauth2;no_research; +https://github.com/leebyron/codespaces-dotfiles;;no_research;Shell +https://github.com/leebyron/dbmd;Dropbox Hosted Markdown based CMS;no_research;JavaScript +https://github.com/leebyron/dotfiles;;no_research;JavaScript +https://github.com/leebyron/ecmascript-iterator-hof;Higher Order Functions on Iterators;no_research;JavaScript +https://github.com/leebyron/ecmascript-more-export-from;Proposal: add more export-from statements in ES7;no_research; +https://github.com/leebyron/ecmascript-reduced;Proposal for short-circuiting Array.prototype.reduce();no_research;JavaScript +https://github.com/leebyron/ecmascript-reverse-iterable;ReverseIterable Interface Spec Proposal;no_research;JavaScript +https://github.com/leebyron/fb-cocoa;;no_research;Objective-C +https://github.com/leebyron/fb-notify;;no_research;Objective-C +https://github.com/leebyron/grunt-jest;Grunt task for running jest tests.;no_research;JavaScript +https://github.com/leebyron/huron.wedding;Our wedding site;no_research;HTML +https://github.com/leebyron/iFBG;;no_research; +https://github.com/leebyron/interactive-script;Easy to write interactive scripts;no_research;JavaScript +https://github.com/leebyron/iterall;🌻 Minimal zero-dependency utilities for using Iterables in all JavaScript environments.;no_research;JavaScript +https://github.com/leebyron/jasmine-check;Generative property testing for Jasmine;no_research; +https://github.com/leebyron/keyboard;My keyboard config;no_research; +https://github.com/leebyron/lisp;Let's Learn Lisp with Lee;no_research;JavaScript +https://github.com/leebyron/loda-js;Use JavaScript functionally, you shall.;no_research;JavaScript +https://github.com/leebyron/lrumap;;no_research;JavaScript +https://github.com/leebyron/mesh;Processing library for creating point meshes.;no_research;Java +https://github.com/leebyron/mocha-check;Generative property testing for Mocha;no_research; +https://github.com/leebyron/nuri-dog;http://nuri.dog;no_research;HTML +https://github.com/leebyron/of-xcode-templates;openFrameworks XCode Templates;no_research;C++ +https://github.com/leebyron/ofxSDL;Overrides the openFrameworks windowing system to use SDL rather than GLUT.;no_research;C++ +https://github.com/leebyron/phagos;Button Mashing Glutton;no_research;C++ +https://github.com/leebyron/react-loops;React Loops works with React Hooks as part of the React Velcro Architecture;no_research;JavaScript +https://github.com/leebyron/remark-comment;Remark plugin to support comments;no_research;JavaScript +https://github.com/leebyron/respectify;Replaces the term 'politically correct' with 'respectful of other people' because it makes you oddly happy.;no_research;JavaScript +https://github.com/leebyron/rollup-plugin-async;Transforms Async functions to generator functions before bundling.;no_research;JavaScript +https://github.com/leebyron/rollup-plugin-flow;Rollup plugin for removing Flow type annotations.;no_research;JavaScript +https://github.com/leebyron/shapetween;(ARCHIVED 2007) Processing Library for tween and shape curves;no_research;Java +https://github.com/leebyron/shitty-peg;A Shitty PEG Parser;no_research;JavaScript +https://github.com/leebyron/spec-md;📖 Additions to Markdown for writing specification documents;no_research;HTML +https://github.com/leebyron/streamgraph;Processing applet which creates the images seen in the Streamgraph paper;no_research;Java +https://github.com/leebyron/testcheck-js;Generative testing for JavaScript;no_research;JavaScript +https://github.com/lguariento/app-dined;;no_research;CSS +https://github.com/lguariento/BassCulture;The Bass Culture project;no_research;JavaScript +https://github.com/lguariento/caravan;A book about Connected Communities and Digital Futures as seen through the lens of the Unbox Labs: Caravan edition 2016;no_research;CSS +https://github.com/lguariento/crafting_our_digital_futures;See the front-end of the book here: https://lguariento.github.io/crafting_our_digital_futures/;no_research;CSS +https://github.com/lguariento/Curious_Travellers;;no_research;HTML +https://github.com/lguariento/Curious_Traveller_Editor;;no_research;JavaScript +https://github.com/lguariento/Engineering-the-Future;See the frontend to the book here: https://lguariento.github.io/Engineering-the-Future/;no_research;HTML +https://github.com/lguariento/iiif-prezi-directory;A IIIF manifest generator for images in many directories and metadata in a spreadsheet;no_research;Python +https://github.com/lguariento/manuscript-description;Papers of the manuscript description symposium;no_research; +https://github.com/lguariento/morrisiaid;;no_research;SCSS +https://github.com/lguariento/og-h-am;Harnessing digital technologies to transform understanding of ogham writing, from the 4th century to the 21st;research; +https://github.com/lguariento/OpenCollaborativeMaking;A digital perspective. As part of V&A Digital Design Weekend 2014;no_research;CSS +https://github.com/lguariento/xml_update_add;;no_research;JavaScript +https://github.com/line-o/arduin0;nothing fancy;no_research;Arduino +https://github.com/line-o/baseIO;display hex data as binary with a specialised font;no_research;HTML +https://github.com/line-o/begin-svelte-app;Begin app;no_research;JavaScript +https://github.com/line-o/ConsoleMio;JavaScript console clone for PHP and fun.;no_research;PHP +https://github.com/line-o/dancepartners;;no_research;XQuery +https://github.com/line-o/dicey;Just a bunch of random functions;no_research;XQuery +https://github.com/line-o/functastic-php;Some experiments with some of the language features of PHP v5.3+;no_research;PHP +https://github.com/line-o/gulp-exist-example;What can you achieve with gulp-exist? Have a try and find out.;no_research;JavaScript +https://github.com/line-o/infoio;Infoschild for 36c3;no_research;Python +https://github.com/line-o/PSRep;get representation of string with chemical elements;no_research;JavaScript +https://github.com/line-o/renamed-test;just to test;no_research;JavaScript +https://github.com/line-o/sandkastenlie.be;Playground for Podlove users to test web player metadata;no_research;Ruby +https://github.com/line-o/test-map;;no_research;HTML +https://github.com/line-o/travis-existdb;Example project setups running tests against eXistDB on TravisCI.;no_research;Shell +https://github.com/line-o/xbow;Shooting arrows fast and accurately;no_research;XQuery +https://github.com/lizuoyue/AutoVision;;no_research;Python +https://github.com/lizuoyue/AutoVisionPointCloud;;no_research;Python +https://github.com/lizuoyue/carla_image;;no_research;Python +https://github.com/lizuoyue/closest-point-in-mesh-for-a-sampled-point;;no_research;C++ +https://github.com/lizuoyue/compnvs;;no_research;Python +https://github.com/lizuoyue/Cross-view-GAN;;no_research;Python +https://github.com/lizuoyue/daily_utils;;no_research;Python +https://github.com/lizuoyue/ETH-2016-FS-Algorithms-Lab;;no_research;C++ +https://github.com/lizuoyue/ETH-2017-SS-Natural-Language-Understanding;;no_research;Python +https://github.com/lizuoyue/ETH-Thesis;Master thesis project at ETH Zurich;no_research;Python +https://github.com/lizuoyue/Faster-RCNN-AlphaPose;;no_research;Cuda +https://github.com/lizuoyue/LeetCode;;no_research;C++ +https://github.com/lizuoyue/Realtime-MPPE;TensorFlow version of Realtime Multiple Person Pose Estimation;no_research;Python +https://github.com/lizuoyue/sat2vid;;no_research;Python +https://github.com/lizuoyue/Sate2StreetPanoVideo;;no_research;Python +https://github.com/lizuoyue/sate_to_ground;Official Code of the CVPR 2020 Paper: Geometry-Aware Satellite-to-Ground Image Synthesis for Urban Areas;no_research;Python +https://github.com/lizuoyue/SemSeg2D;;no_research;Python +https://github.com/ljo/collatex-tutorial;A CollateX tutorial repo;no_research;Python +https://github.com/ljo/exist-geospatial;Integrates geospatial indexing of GML 2D geometries through geotools and HSQLDB into eXist-db.;no_research;Java +https://github.com/ljo/exist-mallet;Integrates the Mallet Machine Learning and Topic Modeling library into eXist-db;no_research;Java +https://github.com/ljo/exist-ocular-ocr;Integrates the Ocular OCR library into eXist-db.;no_research;Java +https://github.com/ljo/exist-sparql;Integrates SPARQL and RDF indexing through the Jena TDB libraries into eXist-db.;no_research;Java +https://github.com/ljo/exist-stanford-corenlp;Integrates Stanford CoreNLP annotation pipeline library into eXist-db;no_research;Java +https://github.com/ljo/exist-tei-graphing;(TEI) Graphing for dynamic visualisation in eXist-db;no_research;Java +https://github.com/ljo/uima;;no_research;Java +https://github.com/lpodl/GAT-Presentation;A presentation together with a short report on graph attention networks proposed by Veličković et al in 2018.;no_research;TeX +https://github.com/lpodl/Izhikevich-Neurons;We're discussing firing patterns of the different electrophysiological classes of neurons with the help of the simple model suggested by Eugene M.Izhikevich in 2003.;research;Jupyter Notebook +https://github.com/lpodl/Stein-Variational-Gradient-Descend;An application of Stein Variational Gradient descend including some visualizations.;research;Jupyter Notebook +https://github.com/lpodl/Webcrawler;A webcrawler to check for dead links.;no_research;JavaScript +https://github.com/lukechilds/anonlytics-express;Privacy respecting analytics for express apps;no_research;JavaScript +https://github.com/lukechilds/arrows;My custom ZSH theme;no_research;Shell +https://github.com/lukechilds/AtHash;Social text parser;no_research;JavaScript +https://github.com/lukechilds/autoscale-do-block-storage;Autoscale Digital Ocean block storage volumes;no_research;Shell +https://github.com/lukechilds/b64golf;;no_research;JavaScript +https://github.com/lukechilds/base64-async;Non-blocking chunked Base64 encoding;no_research;JavaScript +https://github.com/lukechilds/bip39-versioned;Proof of concept adding versioning to BIP39 compatible seeds;no_research;JavaScript +https://github.com/lukechilds/blog-clj;;no_research;Clojure +https://github.com/lukechilds/browser-env;Simulates a global browser environment using jsdom;no_research;JavaScript +https://github.com/lukechilds/build-output-script;Builds a P2PKH Bitcoin transaction output script;no_research;JavaScript +https://github.com/lukechilds/byte-range;Returns integer ranges for C data types;no_research;JavaScript +https://github.com/lukechilds/chest;Bash glue to encrypt and hide files;no_research;Shell +https://github.com/lukechilds/coinflict-of-interest;Browser extension to show user biases on Crypto Twitter.;no_research;JavaScript +https://github.com/lukechilds/coinlist;Comprehensive list of cryptocurrencies with metadata;no_research;JavaScript +https://github.com/lukechilds/create-cert;Super simple self signed certificates;no_research;JavaScript +https://github.com/lukechilds/create-node;Converts an HTML string to a dom node;no_research;JavaScript +https://github.com/lukechilds/create-test-server;Creates a minimal Express server for testing;no_research;JavaScript +https://github.com/lukechilds/create-xpub;Create a BIP32 extended public key;no_research;JavaScript +https://github.com/lukechilds/docker-barterdex-api;;no_research;Shell +https://github.com/lukechilds/docker-bitcoind;Run a full Bitcoin node with one command;no_research;Dockerfile +https://github.com/lukechilds/docker-electrum-vertcoin;Run a Vertcoin Electrum server with one command;no_research; +https://github.com/lukechilds/docker-electrumx;Run an Electrum server with one command;no_research;Dockerfile +https://github.com/lukechilds/docker-ledger-sdk;Build a Ledger app with one command;no_research;Dockerfile +https://github.com/lukechilds/docker-vertcoind;Run a full Vertcoin node with one command;no_research;Dockerfile +https://github.com/lukechilds/dockerpi;A Virtualised Raspberry Pi inside a Docker image;no_research;Dockerfile +https://github.com/lukechilds/doge-seed;Dank mnemonic seed phrases;no_research;HTML +https://github.com/lukechilds/electrs-next;Docker configuration for testing the `next` branch of electrs.;no_research;Dockerfile +https://github.com/lukechilds/ephemeral-electrum;A quick throwaway text based Electrum instance.;no_research;Dockerfile +https://github.com/lukechilds/eslint-config-lukechilds;My personal eslint preferences;no_research;JavaScript +https://github.com/lukechilds/eslint-config-xo-lukechilds;My personal XO overrides;no_research;JavaScript +https://github.com/lukechilds/expired;Calculate when HTTP cache headers expire;no_research;JavaScript +https://github.com/lukechilds/Extension;Browser extension to show user influence on Crypto Twitter.;no_research;JavaScript +https://github.com/lukechilds/gifgen;Simple high quality GIF encoding;no_research;Shell +https://github.com/lukechilds/github-custom-tab-size;Chrome extension - Set custom tab size for code view on GitHub.com;no_research;JavaScript +https://github.com/lukechilds/homebrew-tap;My Homebrew tap;no_research;Ruby +https://github.com/lukechilds/howmanyconfs.com;How many confirmations are equivalent to 6 Bitcoin confirmations?;no_research;JavaScript +https://github.com/lukechilds/htconvert;Convert .htaccess redirects to nginx.conf redirects;no_research;JavaScript +https://github.com/lukechilds/humanscript;A truly natural scripting language;no_research;Shell +https://github.com/lukechilds/hyperdex-bugtracker;;no_research; +https://github.com/LydiaKoerber/apl-cell-container;Repo with utils for Alexa APL cell container generation.;no_research;Jupyter Notebook +https://github.com/LydiaKoerber/item-utterance-grammar;Generating utterances from a grammar based on an Alexa interaction model.;no_research;Jupyter Notebook +https://github.com/LydiaKoerber/nn-interpretability;;no_research;Jupyter Notebook +https://github.com/martinalexrolph/averil-stedeford;;no_research;HTML +https://github.com/martinalexrolph/cultureofaccess;;no_research;HTML +https://github.com/martinalexrolph/foxandsongbird;;no_research;PHP +https://github.com/martinalexrolph/sector-six;;no_research;JavaScript +https://github.com/martinalexrolph/trollo;Coding Test;no_research;JavaScript +https://github.com/martinalexrolph/vue-flickr;A simple app which show the public Flickr recently uploaded feed.;no_research;JavaScript +https://github.com/mathias-goebel/exist-ant-parent-build;source to reproduce ant build error when using a parent task;no_research; +https://github.com/mathias-goebel/Fontane-Notizbuecher;Repo for software sources, rules and more, see http://fontane-notizbuecher.de;no_research; +https://github.com/mathias-goebel/mobile-plays;mobile App for Play(s);no_research;JavaScript +https://github.com/mathias-goebel/plenarsitzungsprotokolle;Archiving a processed version of the debate protocols from the German Bundestag.;no_research;XQuery +https://github.com/mathias-goebel/TEIse;TEI speaker extraction, an set of XSLT files to extract the of a person out of an TEI coded drama;no_research;XSLT +https://github.com/mathias-goebel/textgrid-data-rewrite;textgrid-data-rewrite;no_research;Java +https://github.com/miljanuscumlic/cli-commands;Useful command-line interface commands for git and other sofware tools and programs.;no_research; +https://github.com/miljanuscumlic/ruta-system;System for Exchange and Management of Business Documents;no_research;Java +https://github.com/MomaKekz/hsa-website;;no_research;HTML +https://github.com/moritzschepp/bash-deploy;;no_research;Shell +https://github.com/moritzschepp/movember;;no_research;Ruby +https://github.com/moritzschepp/time-sheet;a time tracking solution based on spreadsheets;no_research;Ruby +https://github.com/naptowncode/FizzBuzz;;no_research;JavaScript +https://github.com/naptowncode/fus-messages;Angular 1.4 ngMessages wrapper;no_research;JavaScript +https://github.com/naptowncode/linkr;Utility for making npm link easier;no_research;JavaScript +https://github.com/naptowncode/purple-pangolin;;no_research;JavaScript +https://github.com/NextVestor/dapt-legacy-report-server;;no_research; +https://github.com/NextVestor/ImageServer;;no_research; +https://github.com/NextVestor/rollcall-chef12-cookbooks;;no_research;Ruby +https://github.com/NextVestor/RollCall-SOLR-Configuration;Repository of configuraiton setting for SOLR;no_research;XSLT +https://github.com/NextVestor/voice-authorization-ml;;no_research;Jupyter Notebook +https://github.com/nfcampos/ava-hapi-issue;;no_research;JavaScript +https://github.com/nfcampos/await-outside;Await outside of async functions;no_research;JavaScript +https://github.com/nfcampos/dodos;Pandas-inspired transducer-based data wrangling library for js;no_research;JavaScript +https://github.com/nfcampos/langchain-issue-602;;no_research;TypeScript +https://github.com/nfcampos/langchain-server-example;;no_research;Python +https://github.com/nfcampos/pode;hacky attempt at a node repl with top-level await and some other things;no_research;JavaScript +https://github.com/nfcampos/react-d3-tree;;no_research;JavaScript +https://github.com/nfcampos/sec;;no_research;JavaScript +https://github.com/nfcampos/test-project-abcde;;no_research;Python +https://github.com/nfcampos/treesampler;;research;Python +https://github.com/novemberborn/aitch;Toolkit for constructing hypertext service clients.;no_research;JavaScript +https://github.com/novemberborn/babel-plugin-es6-promise;Babel plugin that rewrites Promise references to es6-promise, but only if necessary;no_research;JavaScript +https://github.com/novemberborn/babel-plugin-files;Babel plugin to enable importing file metadata using a glob pattern;no_research;JavaScript +https://github.com/novemberborn/babel-plugin-import-glob;Babel plugin to enable importing modules using a glob pattern;no_research;JavaScript +https://github.com/novemberborn/base-convert-int-array;Converts arrays of integers from one base to another. Uses an O(N²) algorithm.;no_research;JavaScript +https://github.com/novemberborn/Browser-Extensions-for-Web-Hackers;Example code of my Browser Extensions for Web Hacker talk.;no_research;JavaScript +https://github.com/novemberborn/buoyant;Framework for implementing servers using the Raft Consensus Algorithm.;no_research;JavaScript +https://github.com/novemberborn/cached-module-loader;Highly experimental bundler and loader of Node.js modules;no_research;JavaScript +https://github.com/novemberborn/chai-sentinels;Pass sentinel values through your code and assert the results with Chai.;no_research;JavaScript +https://github.com/novemberborn/cityjsconf-value-comparisons;"""Value Comparisons: How Do I Even?"" @ City of London JavaScript Conference";no_research;CSS +https://github.com/novemberborn/cloudflare-origin-pull;Verify that TLS peer certificates came from CloudFlare;no_research;JavaScript +https://github.com/novemberborn/common-extname;Computes the longest (compound) extension that is common to each path;no_research;JavaScript +https://github.com/novemberborn/common-path-prefix;Computes the longest prefix string that is common to each path, excluding the base component;no_research;JavaScript +https://github.com/novemberborn/copenhagen;Experimental infrastructure for creating Istanbul-compatible code coverage;no_research;JavaScript +https://github.com/novemberborn/eh;Promise-based execution with halting;no_research;JavaScript +https://github.com/novemberborn/eslint-plugin-as-i-preach;ESLint to @novemberborn’s taste;no_research;JavaScript +https://github.com/novemberborn/eslint-plugin-node-globals;Alternative ESLint environment for use with Node.js, without deprecated globals;no_research;JavaScript +https://github.com/novemberborn/function-name-support;Feature detection for function names.;no_research;JavaScript +https://github.com/novemberborn/helo;Promise-based HTTP request handling stack.;no_research;JavaScript +https://github.com/novemberborn/hullabaloo-config-manager;Manages complex Babel config chains, avoiding duplicated work and enabling effective caching;no_research;JavaScript +https://github.com/novemberborn/identifierfy;Rewrites an identifier string so its valid according to ES2015;no_research;JavaScript +https://github.com/novemberborn/ignore-by-default;A list of directories you should ignore by default;no_research;JavaScript +https://github.com/novemberborn/ksuid;Node.js implementation of K-Sortable Globally Unique IDs;no_research;JavaScript +https://github.com/novemberborn/legendary;Dabbling with promises. It’ll be legendary;no_research;JavaScript +https://github.com/novemberborn/legendary-debug;Debugging utilities for Legendary promises;no_research;JavaScript +https://github.com/novemberborn/legendary-node;Standard Node libraries reinterpreted with Legendary promises.;no_research;JavaScript +https://github.com/novemberborn/linkedgov-hackcamp;;no_research;JavaScript +https://github.com/novemberborn/never;A function that throws when called, use with nullish coalescing to elide unexpected nullish values;no_research;JavaScript +https://github.com/novemberborn/nos-tdf-to-slack;;no_research;JavaScript +https://github.com/novemberborn/novemberborn.net;Behind the scenes of https://novemberborn.net/;no_research;JavaScript +https://github.com/novemberborn/nyc-copenhagen-poc;Proof of concept usage of nyc with Copenhagen;no_research;HTML +https://github.com/novemberborn/package-hash;Generates a hash for an installed npm package, useful for salting caches;no_research;JavaScript +https://github.com/novemberborn/release-zalgo;Helps you write code with promise-like chains that can run both synchronously and asynchronously.;no_research;JavaScript +https://github.com/novemberborn/sixtyfour;Base64 utilities for Node;no_research;JavaScript +https://github.com/novemberborn/source-map-fixtures;Simple test fixtures backed by inline source maps and source map files;no_research;JavaScript +https://github.com/novemberborn/steadfast;Reliable handling of perpetually pending promises;no_research;JavaScript +https://github.com/novemberborn/streamist;Enables functional, promise-based interactions with Readable streams.;no_research;JavaScript +https://github.com/novemberborn/thenstream;Construct a Readable stream from a thenable. Useful if you don't have the actual stream yet.;no_research;JavaScript +https://github.com/novemberborn/unicode-diff;Differences between Unicode versions;no_research;JavaScript +https://github.com/novemberborn/wilee;Command line tool for interacting with ACME servers;no_research;JavaScript +https://github.com/novemberborn/WriteOnWall;WriteOnWall, as developed during the Mediamatic DevCamp 2010;no_research;JavaScript +https://github.com/novemberborn/x690;Low-level decoder for X.690 Distinguished Encoding Rules (DER);no_research;JavaScript +https://github.com/novemberborn/_ava-tap-crash;;no_research;JavaScript +https://github.com/novemberborn/_npm_not_a_child_repo;;no_research; +https://github.com/novemberborn/_pino-noir-hapi-repro;https://github.com/pinojs/pino-noir/issues/1;no_research;JavaScript +https://github.com/novemberborn/__ava-esm;;no_research;JavaScript +https://github.com/novemberborn/__esm-402;https://github.com/standard-things/esm/issues/402;no_research;JavaScript +https://github.com/olvidalo/desktop-winery;Moved: https://github.com/cceh/tosca-modelling-tool;no_research;HTML +https://github.com/olvidalo/exist-console;;no_research; +https://github.com/olvidalo/exist-consolecat;;no_research; +https://github.com/olvidalo/marketingsite;;no_research;JavaScript +https://github.com/olvidalo/palaeoServer;;no_research;XQuery +https://github.com/olvidalo/paradise-lost;;no_research;CSS +https://github.com/olvidalo/xPalaeo;;no_research;JavaScript +https://github.com/opax/gh-playground;;no_research; +https://github.com/opax/test;;no_research; +https://github.com/pcolot01/try_git;;no_research; +https://github.com/pkaminski/-foo.bar-this-that-;;no_research; +https://github.com/pkaminski/after-rename-1;;no_research; +https://github.com/pkaminski/altfire;Alternative AngularJS bindings for Firebase;no_research;JavaScript +https://github.com/pkaminski/digest-hud;Digest performance analysis HUD for AngularJS.;no_research;JavaScript +https://github.com/pkaminski/fireband;Firebase bandwidth analyzer;no_research;JavaScript +https://github.com/pkaminski/firebase-bug;;no_research;JavaScript +https://github.com/pkaminski/firebase-bug-repro;;no_research;JavaScript +https://github.com/pkaminski/firebase-instrumented;A copy of the Firebase Node SDK with extra logging added.;no_research; +https://github.com/pkaminski/firebase-on-error;Adds onError and onSlowWrite to Firebase, and helps debug permission errors.;no_research;JavaScript +https://github.com/pkaminski/firetruss-plugins;;no_research;JavaScript +https://github.com/pkaminski/fireworker;Firebase in a web worker;no_research;JavaScript +https://github.com/pkaminski/fix-firebase-transaction;Monkeypatch some broken semantics of Firebase transactions;no_research;JavaScript +https://github.com/pkaminski/flowscore;Adds cool features to the Flowkey webapp.;no_research;JavaScript +https://github.com/pkaminski/fresh-sample;;no_research; +https://github.com/pkaminski/github-for-developers-7;;no_research; +https://github.com/pkaminski/jupyter-sample;;no_research;Jupyter Notebook +https://github.com/pkaminski/not-so-original;A repo about to be renamed;no_research; +https://github.com/pkaminski/renamed-once;;no_research; +https://github.com/pkaminski/renamed2;;no_research; +https://github.com/pkaminski/rollup-plugin-vueify-lodash4;;no_research;JavaScript +https://github.com/pkaminski/sample;;no_research;C +https://github.com/pkaminski/snowpack-plugin-codegen;Integrate code generation into Snowpack's build pipeline;no_research;JavaScript +https://github.com/pkaminski/testing;;no_research; +https://github.com/pkaminski/testing2;;no_research; +https://github.com/Rein3ke/2d-game-immersive-prototype;;research;C# +https://github.com/Rein3ke/com.rein3ke.virtualtour.core;Virtual museum tour - core project;research;C# +https://github.com/Rein3ke/ExtractFileNamesAsMaterialsForPixyz;;no_research;Python +https://github.com/Rein3ke/marvin-kullick-profilepage;;no_research;SCSS +https://github.com/Rein3ke/OnPOInt;;no_research;JavaScript +https://github.com/Rein3ke/OnPOInt-Core;;no_research;C# +https://github.com/Rein3ke/virtual-museum-prototype-website;This repository is used to host the virtual museum WebGL prototype as a GitHub page.;no_research;HTML +https://github.com/Rein3ke/VirtualMuseumTour;Master Thesis;research;C# +https://github.com/riccardodg/CAC2019;Software for Clarin Annual Conference 2019;no_research; +https://github.com/riccardodg/carvin;;no_research; +https://github.com/riccardodg/collaborazioni;;no_research;MATLAB +https://github.com/riccardodg/Covid19;;no_research;Python +https://github.com/riccardodg/graduatorie;Un piccolo programma per combinare tra loro le graduatorie scolastiche;no_research;Java +https://github.com/riccardodg/ilc4clarin-aai;test aai;no_research;HTML +https://github.com/riccardodg/ilc4clarin-fcs;This folder contains the FCS endpoints developed at ilc4clarin;no_research;Java +https://github.com/riccardodg/jlremap;lremap java apis;no_research;Java +https://github.com/riccardodg/latmorphV2;;no_research; +https://github.com/riccardodg/leggicartellino;;no_research;Python +https://github.com/riccardodg/lemlat3;lemlat version 3;no_research;Java +https://github.com/riccardodg/linguistic-tools-for-weblicht;A folder containing a list of linguistic tools eventually for the integration into weblicht;research;Java +https://github.com/riccardodg/lodstuff;Various scripts in different programming languages which provide several RDF for multiple Language Resources;no_research;Python +https://github.com/riccardodg/lremap;This repository contains software and data connected to the lremap;no_research; +https://github.com/riccardodg/lremapasgraph;;no_research;Java +https://github.com/riccardodg/lremapgui;;no_research;Java +https://github.com/riccardodg/newecodb;first jpa and web app;no_research;HTML +https://github.com/riccardodg/parsebibtex;;no_research;TeX +https://github.com/riccardodg/psc2lemon;Scripts and stuff for converting Parole Simple Clips (names only) to LOD;research;Python +https://github.com/riccardodg/QML;Quantum Machine Learning and more stuff;no_research;Jupyter Notebook +https://github.com/riccardodg/test-lic;;no_research; +https://github.com/riccardodg/testing;;no_research;HTML +https://github.com/rknaebel/a_little_tensor_flow;;no_research;Jupyter Notebook +https://github.com/rknaebel/bbc-discourse;Discourse Relations extracted from BBC News Corpus for training a shallow discourse parser;research;Python +https://github.com/rknaebel/cpp-class;;no_research;C++ +https://github.com/rknaebel/discopy;End-to-end shallow discourse parser;no_research;Python +https://github.com/rknaebel/discopy-data;;no_research;Python +https://github.com/rknaebel/discopy-vis;;no_research;JavaScript +https://github.com/rknaebel/dl-code-snippets;A collection of code examples for tensorflow and keras. All things from simple ANN, CNN, RNN to complex mind blowing architectures like turing machines, etc;no_research;Python +https://github.com/rknaebel/dl4nlp;;no_research;Jupyter Notebook +https://github.com/rknaebel/emnlp-2023-discourse-signal-flows;"Code and models for replication of our paper: ""Discourse Sense Flows: Modelling the Rhetorical Style of Documents across Various Domains""";no_research; +https://github.com/rknaebel/grammar_induction;Comes later;no_research;Groff +https://github.com/rknaebel/gym-textgame;;no_research;Python +https://github.com/rknaebel/landslide;Research project on building and evaluating deep learning models for landslides detection on satellite images;research;Python +https://github.com/rknaebel/neural-conn-sdp;Contextualized Embeddings for Connective Disambiguation in Shallow Discourse Parsing;no_research; +https://github.com/rknaebel/pp_class_notes;This repository is a collection of assignments done for the parallel programming class.;no_research;C +https://github.com/rknaebel/report-template;;no_research;TeX +https://github.com/rknaebel/screeps-ai;;no_research;JavaScript +https://github.com/rknaebel/textgame-project;;no_research;Python +https://github.com/robcast/annotator_oldbranch;Annotation tools for the web. Select text, images, or (nearly) anything else, and add your notes. http://annotatorjs.org;no_research;CoffeeScript +https://github.com/robcast/digilib;A versatile image viewing environment for the internet.;research;Java +https://github.com/robcast/digilib-frontend-metadata;digilib frontend with additional metadata display.;no_research;HTML +https://github.com/robcast/digilib-frontend-template;Template for a customized digilib frontend.;no_research;HTML +https://github.com/robcast/digilib-repo;Repository for digilib related artifacts.;no_research; +https://github.com/robcast/dts-iiif-integration;Exploring the integration of the DTS and IIIF APIs;no_research; +https://github.com/robcast/dtsflat-server;Minimal server for a DTS API from a DTSflat file structure.;no_research; +https://github.com/robcast/iiif-image-auth;Simple IIIF image server with authentication server.;no_research;Python +https://github.com/robcast/iiif-image-validator-docker;;no_research;Dockerfile +https://github.com/robcast/ismi-imageserver;IIIF Image server setup for ISMI project;no_research;Python +https://github.com/robcast/java-imaging-test;Test cases for problems with Java imaging APIs ;no_research;Java +https://github.com/robcast/neo4j-query-builder;Generic Neo4J query browser;no_research;TypeScript +https://github.com/robcast/python-iiif-annotation-tool;Tool to manipulate image annotations in IIIF manifests;no_research;Python +https://github.com/robcast/scd30-sensor-scripts;;no_research;Python +https://github.com/robcast/simple-tei2dtsflat;Simple tool to create flat DTS file structure from a simple TEI file.;no_research;Python +https://github.com/ruthsander/Coding-Da-Vinci;;no_research; +https://github.com/ruthsander/Ibsen-Networks;;no_research;Python +https://github.com/rwalpole/batch-transformer;A command line utility for batch XSL transformation.;no_research;Scala +https://github.com/rwalpole/ckeditor-demo;;no_research;HTML +https://github.com/rwalpole/CodeDeployGitHubDemo;;no_research;HTML +https://github.com/rwalpole/ctd-omega-services-with-supervisor;;no_research;Scala +https://github.com/rwalpole/ctd-omega-ui-prototype;;no_research;JavaScript +https://github.com/rwalpole/devexe.co.uk;;no_research;HTML +https://github.com/rwalpole/directory-maker;;no_research;Scala +https://github.com/rwalpole/discovery-crawler;;no_research;HTML +https://github.com/rwalpole/elda-extension;;no_research;Java +https://github.com/rwalpole/exi-stream;;no_research;Scala +https://github.com/rwalpole/GitActionsDeploytoAWS;;no_research;Shell +https://github.com/rwalpole/integration-test;;no_research;Shell +https://github.com/rwalpole/jsoup-scala;Just a Scala testing framework for jsoup;no_research;Scala +https://github.com/rwalpole/kettle-best-xml-plugin;;no_research;Java +https://github.com/rwalpole/kettle-shacl-plugin;;no_research;Scala +https://github.com/rwalpole/kettle-xml-extra-plugins;;no_research;Java +https://github.com/rwalpole/ldif-toolkit;;no_research;Scala +https://github.com/rwalpole/ldif-toolkit-java;;no_research; +https://github.com/rwalpole/marklogic-validator;;no_research;XQuery +https://github.com/rwalpole/mlcp-bulk-loader;;no_research;Scala +https://github.com/rwalpole/nodejs-sandox;;no_research;CSS +https://github.com/rwalpole/odrl-sandbox;;no_research; +https://github.com/rwalpole/omega-ui-framework-demo;;no_research;CSS +https://github.com/rwalpole/omega-ui-play-demo;;no_research;HTML +https://github.com/rwalpole/packaging-test;;no_research;JavaScript +https://github.com/rwalpole/pentaho-sandbox;;no_research;Java +https://github.com/rwalpole/pentaho-scalatest-demo;;no_research;Scala +https://github.com/rwalpole/scala-with-cats;Exerises from the book Scala With Cats;no_research;Scala +https://github.com/rwalpole/scardf-akka;;no_research; +https://github.com/rwalpole/schematron-xslt;Compiles ISO Schematron using XSLT;no_research; +https://github.com/rwalpole/semantic;;no_research;Java +https://github.com/rwalpole/semantic-scala;;no_research;Scala +https://github.com/rwalpole/shacl-sandbox;;no_research;Scala +https://github.com/rwalpole/shop-checkout;;no_research;Scala +https://github.com/rwalpole/shopping-cart;;no_research;Scala +https://github.com/rwalpole/solid-app;;no_research;HTML +https://github.com/rwalpole/sparql-param-demo;;no_research;Scala +https://github.com/rwalpole/splunk-extract-reader;;no_research;XSLT +https://github.com/rwalpole/string-to-xml-converter;;no_research;Scala +https://github.com/rwalpole/terraform;;no_research;HCL +https://github.com/rwalpole/transform-validator;;no_research;Scala +https://github.com/rwalpole/xerces-speed-test;;no_research;Clean +https://github.com/rwalpole/xquery-sparql;;no_research;XQuery +https://github.com/SamVerschueren/.P;My own PHP MVC framework;no_research;PHP +https://github.com/SamVerschueren/alfred-aws;Search through the AWS JavaScript SDK;no_research;JavaScript +https://github.com/SamVerschueren/alfred-config;Allow easy user configurations for your Alfred workflows;no_research;JavaScript +https://github.com/SamVerschueren/alfred-css-triggers;Alfred workflow to search through csstriggers.com;no_research;JavaScript +https://github.com/SamVerschueren/alfred-firebase;Search through the Firebase documentation;no_research;JavaScript +https://github.com/SamVerschueren/alfred-fkill;Alfred 3 workflow to fabulously search and kill processes;no_research;JavaScript +https://github.com/SamVerschueren/alfred-font-awesome;Alfred workflow to search for font-awesome icons;no_research;JavaScript +https://github.com/SamVerschueren/alfred-ionic;Search through the Ionic documentation;no_research;JavaScript +https://github.com/SamVerschueren/alfred-link;Make your Alfred workflows installable from npm;no_research;JavaScript +https://github.com/SamVerschueren/alfred-ng;Search through the Angular documentation on angular.io;no_research;JavaScript +https://github.com/SamVerschueren/alfred-node;Alfred 3 workflow to search for Node.js documentation;no_research;JavaScript +https://github.com/SamVerschueren/alfred-notifier;Update notifications for your Alfred workflow;no_research;JavaScript +https://github.com/SamVerschueren/alfred-playground;My cat's pajamas module;no_research;JavaScript +https://github.com/SamVerschueren/alfred-pokemon;Showcase workflow for user configurable Alfy workflows;no_research;JavaScript +https://github.com/SamVerschueren/alfred-rxjs;Search through the RxJS documentation;no_research;JavaScript +https://github.com/SamVerschueren/alfred-updater;Alfred workflow updater;no_research;JavaScript +https://github.com/SamVerschueren/alfy-test;Test your Alfy workflows;no_research;JavaScript +https://github.com/SamVerschueren/amplify-starter;;no_research;JavaScript +https://github.com/SamVerschueren/amplify-starter-project;;no_research; +https://github.com/SamVerschueren/android-icon-list;List of the Android launcher icons;no_research;JavaScript +https://github.com/SamVerschueren/angular-cli-playground;My angular-cli playground;no_research;TypeScript +https://github.com/SamVerschueren/angular-ga;Google Analytics for your Angular application;no_research;TypeScript +https://github.com/SamVerschueren/angular2-number-value-accessor-bug;Showcasing the `number_value_accessor.ngfactory` bug;no_research;TypeScript +https://github.com/SamVerschueren/angular2-polyfill;Angular2 polyfill for Angular1;no_research;TypeScript +https://github.com/SamVerschueren/angular2-polyfill-heroes;Tour of Heroes implementation with angular2-polyfill;no_research;TypeScript +https://github.com/SamVerschueren/apigateway-sdk;Retrieve the JavaScript AWS API Gateway SDK.;no_research;JavaScript +https://github.com/SamVerschueren/apigateway-sdk-cli;Download the JavaScript AWS API Gateway SDK.;no_research;JavaScript +https://github.com/SamVerschueren/are-you-js;;no_research;JavaScript +https://github.com/SamVerschueren/array-multi-find;Find multiple elements in an array;no_research;JavaScript +https://github.com/SamVerschueren/aws-image-create-service;Microservice that allows user to post a new image.;no_research;JavaScript +https://github.com/SamVerschueren/aws-image-list-service;Returns the list of images uploaded with the aws-image application.;no_research;JavaScript +https://github.com/SamVerschueren/aws-lambda-env;Detect the environment the lambda function is running in.;no_research;JavaScript +https://github.com/SamVerschueren/aws-lambda-image-auto-orient;Microservice that auto orientates jpeg images according to the EXIF data.;no_research;JavaScript +https://github.com/SamVerschueren/aws-lambda-image-thumbnail;This AWS Lambda function generates thumbnails for uploaded S3 objects.;no_research;JavaScript +https://github.com/SamVerschueren/aws-lambda-invoke;Invoke AWS Lambda functions with ease;no_research;JavaScript +https://github.com/SamVerschueren/aws-lambda-mock-context;AWS Lambda mock context object;no_research;JavaScript +https://github.com/SamVerschueren/aws-lambda-pify;Promisify an AWS lambda function.;no_research;JavaScript +https://github.com/SamVerschueren/aws-lambda-start-server;AWS Lambda function that will start servers.;no_research;TypeScript +https://github.com/SamVerschueren/aws-lambda-stop-server;AWS Lambda function that will stop servers.;no_research;JavaScript +https://github.com/SamVerschueren/aws-sns-publish;Publish messages to AWS SNS;no_research;JavaScript +https://github.com/SamVerschueren/aws-swagger-cli;AWS swagger importer cli;no_research;JavaScript +https://github.com/SamVerschueren/aws-swagger-import;AWS swagger importer;no_research;JavaScript +https://github.com/SamVerschueren/babel-engine-plugin;Webpack plugin that transpiles dependencies targeting Node.js versions newer than Node.js 0.10;no_research;JavaScript +https://github.com/SamVerschueren/bb10-icon-list;List of the BlackBerry 10 app icons;no_research;JavaScript +https://github.com/SamVerschueren/BB10-MVVMLoginExample;This is an example of the MVVM pattern on the BB10 platform.;no_research;C++ +https://github.com/SamVerschueren/BB10-OAuth;OAuth framework for BlackBerry10;no_research;C++ +https://github.com/SamVerschueren/BB10-Telemeter;An application to check the usage limit of a Telenet customer.;no_research;C++ +https://github.com/SamVerschueren/bbTicTacTen;A Tic Tac Toe clientside BlackBerry 10 sample application;no_research;C++ +https://github.com/SamVerschueren/bbTicTacTen-server;The server for TicTacTen;no_research;JavaScript +https://github.com/SamVerschueren/beRail;beRail is a BlackBerry 10 application for the belgian railways.;no_research;C++ +https://github.com/SamVerschueren/bin-playground;Some binary testing playground;no_research;JavaScript +https://github.com/SamVerschueren/bragg;AWS λ web framework;no_research;JavaScript +https://github.com/SamVerschueren/bragg-cloudwatch;CloudWatch middleware for bragg;no_research;JavaScript +https://github.com/SamVerschueren/bragg-cors;CORS middleware for bragg;no_research;JavaScript +https://github.com/SamVerschueren/bragg-cron;Cronjob middleware for bragg;no_research;JavaScript +https://github.com/SamVerschueren/bragg-decode-components;Decode bragg URI components;no_research;JavaScript +https://github.com/SamVerschueren/bragg-dynamodb;DynamoDB middleware for bragg;no_research;JavaScript +https://github.com/SamVerschueren/bragg-env;Environment middleware for bragg;no_research;JavaScript +https://github.com/SamVerschueren/bragg-kinesis;Kinesis stream middleware for bragg;no_research;JavaScript +https://github.com/SamVerschueren/bragg-kms-decrypt;Bragg middleware to decrypt properties from the response object;no_research;JavaScript +https://github.com/SamVerschueren/bragg-load-config;Load a config file based upon the environment;no_research;JavaScript +https://github.com/SamVerschueren/bragg-route-invoke;Invoke bragg routes in a lambda function;no_research;JavaScript +https://github.com/SamVerschueren/bragg-router;Router middleware for bragg;no_research;JavaScript +https://github.com/SamVerschueren/bragg-safe-guard;Prevents leaking information outside the bragg context;no_research;JavaScript +https://github.com/SamVerschueren/bragg-sns;SNS middleware for bragg;no_research;JavaScript +https://github.com/SamVerschueren/cache-conf;Simple cache config handling for your app or module;no_research;JavaScript +https://github.com/SamVerschueren/capture-pdf;Capture html in a pdf buffer;no_research;JavaScript +https://github.com/SamVerschueren/clean-regexp;Clean up regular expressions;no_research;JavaScript +https://github.com/SamVerschueren/clinton;Project style linter;no_research;JavaScript +https://github.com/SamVerschueren/cordova-config;Parse and edit the config.xml file of a cordova project;no_research;JavaScript +https://github.com/SamVerschueren/cordova-ua-bb10;BlackBerry 10 plugin for Urban Airship;no_research;JavaScript +https://github.com/SamVerschueren/decode-uri-component;A better decodeURIComponent;no_research;JavaScript +https://github.com/SamVerschueren/dev-time;Get the current local time of a GitHub user.;no_research;JavaScript +https://github.com/SamVerschueren/dev-time-cli;Get the current local time of a GitHub user.;no_research;JavaScript +https://github.com/ScalaWilliam/ActionFPS-admin;Administrative interface for ActionFPS;no_research;Java +https://github.com/ScalaWilliam/actionfps-data;Example Scala repo how to query all the games. Should be good for ad hoc data. Just clone and do 'sbt run';no_research;Scala +https://github.com/ScalaWilliam/ActionFPS-PHP-Iterator;;no_research;PHP +https://github.com/ScalaWilliam/acwc.woop.us;;no_research;HTML +https://github.com/ScalaWilliam/akka-stream-kafka-template.g8;Template for Akka Streams & Kafka. Default impl: mirror a topic onto another one;no_research;Scala +https://github.com/ScalaWilliam/amazon-wishlist-api;Scrape Amazon wishlist and provide an API. Play 2.5, JSoup, React.;no_research;Scala +https://github.com/ScalaWilliam/aptgit;The way Git is supposed to be.;no_research;Scala +https://github.com/ScalaWilliam/aptgit-bigger-server;;no_research; +https://github.com/ScalaWilliam/cancelled-duelgg;duel.gg third generation: the open source bits;no_research;Scala +https://github.com/ScalaWilliam/ConwayGameOfLife;;no_research;Scala +https://github.com/ScalaWilliam/d3-dom-templates;;no_research;JavaScript +https://github.com/ScalaWilliam/dom-template-samples;Samples of how to do DOM templating in multiple languages;no_research;C# +https://github.com/ScalaWilliam/dot-to-svg-jvm;;no_research;Java +https://github.com/ScalaWilliam/duel.gg;duel.gg open game league for Sauerbraten http://odin.duel.gg;no_research;Scala +https://github.com/ScalaWilliam/duelgg-elo;;no_research;F# +https://github.com/ScalaWilliam/empty-path-play-bug;Demonstration of a bug in Play;no_research;Scala +https://github.com/ScalaWilliam/eventsource-hub;EventSource messaging middleware with file persistence. Alpha;no_research;Scala +https://github.com/ScalaWilliam/example-site;;no_research; +https://github.com/ScalaWilliam/express-scalajs-nodejs-demo;Self-contained example: Express on ScalaJS on NodeJS;no_research;Scala +https://github.com/ScalaWilliam/fail-nashorn-test;;no_research;Java +https://github.com/ScalaWilliam/git-watch;Trigger commands when your Git repository is updated;no_research;Scala +https://github.com/ScalaWilliam/git-watch-client;Git Watch Client repository;no_research;JavaScript +https://github.com/ScalaWilliam/git-work;The marketplace for Git Issues;no_research;Scala +https://github.com/ScalaWilliam/git-work-content;;no_research;Makefile +https://github.com/ScalaWilliam/gitchiu;Convert Git commit descriptions to Issues;no_research;Shell +https://github.com/ScalaWilliam/github-notifications-to-file;Collects GitHub notifications into plaintext NDJSON.;no_research;JavaScript +https://github.com/ScalaWilliam/gitlookout;;no_research;Scala +https://github.com/ScalaWilliam/GitSub;;no_research; +https://github.com/ScalaWilliam/gsdk;;no_research;Scala +https://github.com/ScalaWilliam/http4s-play;;no_research;Scala +https://github.com/ScalaWilliam/letsencrypt-scala;Let's Encrypt for Scala: utility to consume Let's Encrypt certificates directly;no_research;Scala +https://github.com/ScalaWilliam/mag-test;;no_research;Scala +https://github.com/ScalaWilliam/MakeMeAScala;Build native Scala apps, fast.;no_research;Scala +https://github.com/ScalaWilliam/megat;;no_research;PHP +https://github.com/ScalaWilliam/new-project;;no_research; +https://github.com/ScalaWilliam/open-source-projects-to-support;;no_research; +https://github.com/ScalaWilliam/openjdk9-sbt-problem;;no_research; +https://github.com/ScalaWilliam/pastebox;;no_research;PHP +https://github.com/ScalaWilliam/play-akka-timeout-test;;no_research;Scala +https://github.com/ScalaWilliam/play-docker-hub-example;;no_research;Scala +https://github.com/ScalaWilliam/play-sse-file;Stream & tail files as EventSource/Server-sent-events via HTTP.;no_research;Scala +https://github.com/ScalaWilliam/preact-netlify;;no_research;JavaScript +https://github.com/ScalaWilliam/pure-javascript-filtering-for-any-html-table;;no_research; +https://github.com/ScalaWilliam/pwip;Best Wiki ever. Work in progress.;no_research;Scala +https://github.com/ScalaWilliam/rad4s;A set of utilities to speed up rendering, storage, testing, and prototyping, especially for http4s;no_research;Scala +https://github.com/ScalaWilliam/sage;;no_research;Scala +https://github.com/ScalaWilliam/sbt-maxmind;Download MaxMind GeoIP to your build automatically.;no_research;Scala +https://github.com/ScalaWilliam/sbt-swagger-codegen;;no_research; +https://github.com/ScalaWilliam/scala-agent;Scala Akka Agents;no_research;Ruby +https://github.com/ScalaWilliam/scala-fastcgi-client;Scala FastCGI Client, based on jFastCGI;no_research;Scala +https://github.com/ScalaWilliam/scala-game-tournament;Logic for tournaments;no_research;Scala +https://github.com/ScalaWilliam/scala-groovy-templates;Demo how to use Groovy's MarkupTemplateEngine from Scala.;no_research;Scala +https://github.com/ScalaWilliam/scala-native-libpcap;Experiments with scala native & libpcap;no_research;Scala +https://github.com/sdementen/django-msteams;Django app to send messages to a MS Teams channel;no_research;Python +https://github.com/sdementen/gnucash-utilities;Set of python scripts to work with GnuCash books;no_research;Python +https://github.com/sdementen/oasapi;Validate, transform, filter, ... your OpenAPI/Swagger specifications;no_research;Python +https://github.com/sdementen/piecash;Pythonic interface to GnuCash SQL documents;no_research;Python +https://github.com/shabanovd/aXent;Java agent for eXist-db testing;no_research;Java +https://github.com/shabanovd/dotNet;.Net interface for eXist-db;no_research;C# +https://github.com/shabanovd/eXecutor;;no_research;Java +https://github.com/shabanovd/eXgit;;no_research;JavaScript +https://github.com/shabanovd/eXist-backup-checker;;no_research;Java +https://github.com/shabanovd/eXist-RCS;;no_research; +https://github.com/shabanovd/eXist-svn;;no_research;Java +https://github.com/shabanovd/eXist-xslt;;no_research;Java +https://github.com/shabanovd/eXmin;;no_research;JavaScript +https://github.com/shabanovd/eXpath;;no_research;Java +https://github.com/shabanovd/eXperiment;;no_research;Kotlin +https://github.com/shabanovd/fetch-run;;no_research;XQuery +https://github.com/shabanovd/huffman-array;Huffman coding using an array;no_research;C++ +https://github.com/shabanovd/index-elasticsearch;;no_research;Java +https://github.com/shabanovd/mapdb-json;;no_research; +https://github.com/shabanovd/mapdb-kryo;;no_research; +https://github.com/shabanovd/mnist;;no_research;Java +https://github.com/shabanovd/OpenWorm;;no_research; +https://github.com/shabanovd/outrunner;;no_research; +https://github.com/shabanovd/oxygenxml-webdav;;no_research;Java +https://github.com/shabanovd/pipe;Named pipe;no_research;Java +https://github.com/shabanovd/rustle;;no_research;Rust +https://github.com/shabanovd/simulation;;no_research;Visual Basic +https://github.com/shabanovd/sound;;no_research; +https://github.com/shabanovd/utils-source-maker;;no_research;Java +https://github.com/shabanovd/websockets;;no_research; +https://github.com/shahzadns/angularFire-Example;A Sample project that creates Real-Time Web Application with AngularJS + firebase , that makes three-way data-binding.;no_research;JavaScript +https://github.com/shahzadns/AngularJS-2.0-example;This is a Todo app built on cool AngularJS 2.0 .;no_research;JavaScript +https://github.com/shahzadns/BackboneJS-example;A sample project, demonstrates Web SPA's libraray BackboneJS work with some awesome Web Tools.;no_research;CSS +https://github.com/shahzadns/BootCampTasks;This is a tasks repository, those being assigned in the classes of Boot Camp SWIT-IT.;no_research;JavaScript +https://github.com/shahzadns/headless-browsers-examples;A collection of basic to advance examples that help in learn Website Testing, Page Automation, Network Monitoring, and other amazing things using phantomJS, NightmareJS, HorsmanJS, etc.;no_research;JavaScript +https://github.com/shahzadns/html5-examples;This repo is intend to contain small samples/ examples developed using HTML5.;no_research; +https://github.com/shahzadns/hybrid-push-notifications-sample;This is a sample demonstrate how to use push notifications on mobile hybrid apps e.g GCM for Android.;no_research;JavaScript +https://github.com/shahzadns/ionic-examples;This repo is intend to contain small samples and projects developed using ionic.;no_research;JavaScript +https://github.com/shahzadns/jasmine-tests-example;This repository contains basic exercise using jasmine tests.;no_research;JavaScript +https://github.com/shahzadns/mean-Example;This is a repo created for practice that will contain all demo projects build over MEAN Stack.;no_research;JavaScript +https://github.com/shahzadns/ng2-examples;A collection of basic to advance examples that help in learning angular2 framework. ;no_research;TypeScript +https://github.com/shahzadns/one-page-boilerplates;:bowtie: :open_hands: :boom: one page boilerplates for quick demo SPA projects.;no_research;HTML +https://github.com/shahzadns/orangehrm-responsive;This project is an open source chrome extension specially designed as the responsive sugar over HRIS by Orange Inc. ;no_research;CSS +https://github.com/shahzadns/playGit;This is my git-toy repository.;no_research; +https://github.com/shahzadns/python-examples;This repo intend to contain examples that to be created wile learning this beautiful language and its framework Django.;no_research;Python +https://github.com/shahzadns/react-examples;A collection of basic to advance examples that help in learning react.js;no_research;JavaScript +https://github.com/shahzadns/requirejs-Example;A Sample Project, illustrating require.js basics.;no_research;JavaScript +https://github.com/shahzadns/sweet-bots;This repo is intended to contain some interesting AI bots examples..;no_research;JavaScript +https://github.com/shahzadns/typescript-examples;A collection of basic to advance examples that help in learning Typescript.;no_research; +https://github.com/sindresorhus/-;🔥;no_research; +https://github.com/sindresorhus/.github;Much meta;no_research; +https://github.com/sindresorhus/acosh;ES2015 Math.acosh() ponyfill;no_research;JavaScript +https://github.com/sindresorhus/Actions;⚙️ Supercharge your shortcuts;no_research;Swift +https://github.com/sindresorhus/active-win;Get metadata about the active window (title, id, bounds, owner, etc);no_research;JavaScript +https://github.com/sindresorhus/active-win-cli;Get the title/id/etc of the active window;no_research;JavaScript +https://github.com/sindresorhus/add-asset-webpack-plugin;Dynamically add an asset to the Webpack graph;no_research;JavaScript +https://github.com/sindresorhus/add-module-exports-webpack-plugin;Add `module.exports` for Babel and TypeScript compiled code;no_research;JavaScript +https://github.com/sindresorhus/aggregate-error;Create an error from multiple errors;no_research;JavaScript +https://github.com/sindresorhus/alfred-dark-mode;Alfred 3 workflow to toggle the system dark mode;no_research; +https://github.com/sindresorhus/alfred-emoj;Alfred 3 workflow to find relevant emoji from text;no_research;JavaScript +https://github.com/sindresorhus/alfred-lock;Alfred 3 workflow to lock your Mac;no_research; +https://github.com/sindresorhus/alfred-npms;Alfred 3 workflow to search for npm packages with npms.io;no_research;JavaScript +https://github.com/sindresorhus/alfred-plash;Alfred workflow to control the Plash app;no_research; +https://github.com/sindresorhus/alfred-simple;Simple theme for Alfred;no_research; +https://github.com/sindresorhus/alfred-xcode;Alfred 3 workflow to open Xcode projects, workspaces, and playgrounds;no_research; +https://github.com/sindresorhus/alfy;Create Alfred workflows with ease;no_research;JavaScript +https://github.com/sindresorhus/aliases;Parse flag aliases in CLI help output;no_research;JavaScript +https://github.com/sindresorhus/all-keys;Get all property keys of an object including non-enumerable and inherited ones;no_research;JavaScript +https://github.com/sindresorhus/alpha-sort;Alphabetically sort an array of strings;no_research;JavaScript +https://github.com/sindresorhus/ama;[[I'm slow at replying these days, but I hope to get back to answering questions eventually]] Ask me anything!;no_research; +https://github.com/sindresorhus/amas;Awesome & Marvelous Amas;no_research; +https://github.com/sindresorhus/anatine;[DEPRECATED] :bird: Pristine Twitter app;no_research;JavaScript +https://github.com/sindresorhus/ansi-escapes;ANSI escape codes for manipulating the terminal;no_research;JavaScript +https://github.com/sindresorhus/any-observable;Support any Observable library and polyfill;no_research;JavaScript +https://github.com/sindresorhus/anybar;Control the AnyBar app;no_research;JavaScript +https://github.com/sindresorhus/anybar-cli;Control the AnyBar app;no_research;JavaScript +https://github.com/sindresorhus/app-exists;Check if an app exists on macOS;no_research;JavaScript +https://github.com/sindresorhus/app-path;Get the path to an app (macOS);no_research;JavaScript +https://github.com/sindresorhus/app-path-cli;Get the path to an app (macOS);no_research;JavaScript +https://github.com/sindresorhus/appstore-symbols;List of symbols usable in an app description for the iOS App Store;no_research; +https://github.com/sindresorhus/appveyor-node;Boilerplate appveyor.yml file for running Node.js tests on AppVeyor;no_research; +https://github.com/sindresorhus/archive-extensions;List of archive file extensions;no_research;TypeScript +https://github.com/sindresorhus/archs;List of processor architectures supported by Node.js;no_research;JavaScript +https://github.com/sindresorhus/arr-exclude;Exclude certain items from an array;no_research;JavaScript +https://github.com/sindresorhus/arr-include;Include only certain items in an array;no_research;JavaScript +https://github.com/sindresorhus/array-differ;Create an array with values that are present in the first input array but not additional ones;no_research;JavaScript +https://github.com/sindresorhus/array-find-index;ES2015 `Array#findIndex()` ponyfill;no_research;JavaScript +https://github.com/sindresorhus/array-move;Move an array item to a different position;no_research;JavaScript +https://github.com/sindresorhus/array-shuffle;Randomize the order of items in an array;no_research;JavaScript +https://github.com/sindresorhus/array-union;Create an array of unique values, in order, from the input arrays;no_research;TypeScript +https://github.com/sindresorhus/array-uniq;Create an array without duplicates;no_research;JavaScript +https://github.com/sindresorhus/arrify;Convert a value to an array;no_research;TypeScript +https://github.com/sindresorhus/article-title;Extract the article title of a HTML document;no_research;HTML +https://github.com/sindresorhus/article-title-cli;Extract the article title of a HTML document or website;no_research;HTML +https://github.com/sindresorhus/asinh;ES2015 Math.asinh() ponyfill;no_research;JavaScript +https://github.com/sindresorhus/atom-autoprefixer;Prefix CSS and SCSS with Autoprefixer;no_research;JavaScript +https://github.com/sindresorhus/atom-editorconfig;Helps developers maintain consistent coding styles between different editors;no_research;JavaScript +https://github.com/sindresorhus/atom-esformatter;Beautify JavaScript;no_research;JavaScript +https://github.com/sindresorhus/atom-fixmyjs;[DEPRECATED] Automagically fix JSHint lint warnings;no_research;JavaScript +https://github.com/sindresorhus/atom-focus-dark;Syntax theme that lets you focus on the content;no_research;CSS +https://github.com/sindresorhus/atom-focus-light;Syntax theme that lets you focus on the content;no_research;Less +https://github.com/sindresorhus/atom-jshint;[DEPRECATED] Validate JavaScript with JSHint;no_research;JavaScript +https://github.com/sindresorhus/atom-linter-xo;Linter for XO;no_research;JavaScript +https://github.com/sindresorhus/atom-perfectionist;Beautify CSS and SCSS;no_research;JavaScript +https://github.com/sindresorhus/atom-set-text;[DEPRECATED] A better Atom `TextEditor#setText()` that preserves cursor/scroll position and selections;no_research;JavaScript +https://github.com/sindresorhus/atom-uglify;Minify JavaScript;no_research;JavaScript +https://github.com/sindresorhus/auto-bind;Automatically bind methods to their class instance;no_research;JavaScript +https://github.com/sindresorhus/awesome;😎 Awesome lists about all kinds of interesting topics;no_research; +https://github.com/sindresorhus/awesome-awesome-awesome-awesome;A curated list of awesome lists of awesome lists.;no_research; +https://github.com/sindresorhus/awesome-chatgpt;🤖 Awesome list for ChatGPT — an artificial intelligence chatbot developed by OpenAI;no_research; +https://github.com/sindresorhus/awesome-electron;Useful resources for creating apps with Electron;no_research; +https://github.com/sindresorhus/awesome-lint;Linter for Awesome lists;no_research;JavaScript +https://github.com/sindresorhus/awesome-nodejs;:zap: Delightful Node.js packages and resources;no_research; +https://github.com/sindresorhus/awesome-npm;Awesome npm resources and tips;no_research; +https://github.com/sindresorhus/awesome-observables;Awesome Observable related stuff - An Observable is a collection that arrives over time.;no_research; +https://github.com/sindresorhus/awesome-scifi;Sci-Fi worth consuming;no_research; +https://github.com/sindresorhus/awesome-tap;Useful resources for the Test Anything Protocol;no_research; +https://github.com/sindresorhus/awesome-whisper;🔊 Awesome list for Whisper — an open-source AI-powered speech recognition system developed by OpenAI;no_research; +https://github.com/sindresorhus/beeper;Make your terminal beep;no_research;JavaScript +https://github.com/sindresorhus/bin-version;Get the version of a binary in semver format;no_research;JavaScript +https://github.com/sindresorhus/bin-version-check;Check whether a binary version satisfies a semver range;no_research;JavaScript +https://github.com/sindresorhus/bin-version-check-cli;Check whether a binary version satisfies a semver range;no_research;JavaScript +https://github.com/sindresorhus/bin-version-cli;Get the version of a binary in semver format;no_research;JavaScript +https://github.com/sindresorhus/binary-extensions;List of binary file extensions;no_research;TypeScript +https://github.com/sindresorhus/bind-methods;Bind all methods in an object to itself or a specified context;no_research;JavaScript +https://github.com/sindresorhus/Blear;iOS app that transforms your photos into stunning blurry wallpapers for your device;no_research;Swift +https://github.com/sindresorhus/bower-components;[DEPRECATED] Site to discover Bower components;no_research;CSS +https://github.com/sindresorhus/bower-name;Check whether a package name is available on bower;no_research;JavaScript +https://github.com/sindresorhus/bower-name-cli;Check whether a package name is available on bower;no_research;JavaScript +https://github.com/sindresorhus/boxen;Create boxes in the terminal;no_research;JavaScript +https://github.com/sindresorhus/boxen-cli;Create boxes in the terminal;no_research;JavaScript +https://github.com/sindresorhus/broccoli-autoprefixer;Prefix CSS using Autoprefixer;no_research;JavaScript +https://github.com/sindresorhus/broccoli-closure-compiler;Minify JavaScript with Closure Compiler;no_research;JavaScript +https://github.com/sindresorhus/broccoli-cssnano;Minify CSS;no_research;JavaScript +https://github.com/sindresorhus/broccoli-csso;Minimize CSS using CSSO;no_research;JavaScript +https://github.com/sindresorhus/broccoli-defeatureify;Remove specially flagged feature blocks and debug statements using Defeatureify;no_research;JavaScript +https://github.com/sindresorhus/broccoli-dust;Precompile Dust templates;no_research;JavaScript +https://github.com/sindresorhus/broccoli-es6-transpiler;Transpile ES2015 to ES5;no_research;JavaScript +https://github.com/sindresorhus/broccoli-htmlmin;Minify HTML;no_research;JavaScript +https://github.com/sindresorhus/broccoli-jade;Compile Jade templates;no_research;JavaScript +https://github.com/sindresorhus/broccoli-less;Compile LESS;no_research;JavaScript +https://github.com/sindresorhus/broccoli-nunjucks;Precompile Nunjucks templates;no_research;JavaScript +https://github.com/sindresorhus/broccoli-regenerator;Transpile ES2015 generator functions to ES5;no_research;JavaScript +https://github.com/sindresorhus/broccoli-strip-css-comments;Strip comments from CSS;no_research;JavaScript +https://github.com/sindresorhus/broccoli-strip-debug;Strip console, alert, and debugger statements from JavaScript code;no_research;JavaScript +https://github.com/sotojuan/difflist;Difference lists in Elixir;no_research;Elixir +https://github.com/sotojuan/exbox;Create boxes in the terminal;no_research;Elixir +https://github.com/sotojuan/exchalk;Easier terminal styling;no_research;Elixir +https://github.com/sotojuan/lheap;Leftist heap in Elixir;no_research;Elixir +https://github.com/sotojuan/morse;Morse code encoder and decoder;no_research;Elixir +https://github.com/sotojuan/termsize;Reliably get the terminal window size;no_research;Elixir +https://github.com/StefanDumont/pres;Repository for presentations;no_research;JavaScript +https://github.com/sten1ee/cpp;C(++) experiments, including JACC (the magnificient just-another-compiler-compiler), my breed of 'standard template libraries', my breed of memory allocator etc.;no_research;C++ +https://github.com/sten1ee/enter-java;"Resources accompanying the ""Learn to Program in Java"" course";no_research;Java +https://github.com/sten1ee/howto;;no_research; +https://github.com/sten1ee/lchain;;no_research;Python +https://github.com/sten1ee/lod-utils;Various auxiliary stuff that was utilised in the LOD project ;no_research;Kotlin +https://github.com/sten1ee/olli;"Minimalist ""Scheme"" interpreter coded in Java";no_research;Java +https://github.com/suchmaske/ceteicean_workshop;;no_research;CSS +https://github.com/suchmaske/dhd2017-xmp-workshop;;no_research;JavaScript +https://github.com/suchmaske/emarsys-countries;Map ISO country codes to emarsys country codes;no_research;PHP +https://github.com/suchmaske/EWP-Git-Example;;no_research;HTML +https://github.com/suchmaske/EWP-HA-15;;no_research;HTML +https://github.com/suchmaske/EWP-npm-Example;;no_research;HTML +https://github.com/suchmaske/EWP-SoSe2016;Kursfolien für die Veranstaltung Einführung in die Webprogrammierung im Sommersemester 2016 am Institut für Bibliotheks- und Informationswissenschaft der Humboldt-Universität zu Berlin;no_research;JavaScript +https://github.com/suchmaske/github-actions-for-packages;;no_research;JavaScript +https://github.com/suchmaske/rasmifize;Convert arabic strings to their rasm;no_research;TypeScript +https://github.com/suchmaske/rasmiphize;Convert arabic strings to their rasm (PHP);no_research;PHP +https://github.com/suchmaske/rdfedit;rdfedit is tool to work with RDF triples in your browser. Just start the Django application (Python 2.7.3, Django 1.5.1) and call the corresponding website in your browser.;no_research;JavaScript +https://github.com/suchmaske/WaniKani-KanjiPaper;Generate practice writing sheets for WaniKani kanji and vocabulary as PDFs.;no_research;Python +https://github.com/tancque/puttystarter;powershell script to start putty with random colourscheme to keep different sessions a part.;no_research;PowerShell +https://github.com/tancque/webpage_checker;Script that checks for changed webpages bij testing for a substring in the body part of the html. ;no_research;Python +https://github.com/tboenig/16_ant_complex;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/16_ant_simple;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/16_frak_complex;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/16_frak_simple;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/17_fontmix_complex;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/17_fontmix_simple;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/17_frak_complex;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/17_frak_simple;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/18_ant_simple;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/18_fontmix_complex;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/18_frak_complex;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/18_frak_simple;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/19_ant_simple;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/19_frak_simple;This repository provides the Ground Truth data for the OCR-D Quiver back end. This data serves as a basis for benchmarking the performance and accuracy of different OCR-D workflows for different types of input data.;no_research; +https://github.com/tboenig/AletheiaTools;AletheiaTools is a collection of tools for transforming file formats (PAGE XML) and metadata formats (METS). It is a kind of Ground Truth Swiss Knife ;no_research; +https://github.com/tboenig/gt-guideline-examples;;no_research; +https://github.com/tboenig/gt-MufiLevelRules;OCR-D-Level-Rules can be created automatically with gt-MufiLevelRules from the encodings published by MUFI: The Medieval Unicode Font Initiative.;no_research;XSLT +https://github.com/tboenig/gt-repo-scripts;;no_research;XSLT +https://github.com/tboenig/gt_corpus_benchmark;This repo provides a collection of ground truth data. The collection was compiled under different aspects (complexity of the layouts and use of the fonts). The individual data are also characterized by metadata. The metadata is based on the labeling scheme of OCR-D/PrimaLab.;no_research; +https://github.com/tboenig/gt_structure_test;;no_research; +https://github.com/tboenig/keyboardGT;Offer of different keyboards for transcription software (Aletheia, Transkribus, LAREX, QURATOR-neat, eScriptorium);no_research;XSLT +https://github.com/tboenig/makeAletheia_mets;With makeAletheia_mets you can create a METS file (collection file) for the Aletheia Ground Truth software. It is an alternative way without the Aletheia software.;no_research;XSLT +https://github.com/tboenig/ocrd_bbaw_pilotbibliothek;Bericht über die OCR-D-Teststellung an Berlin-Brandenburgische Akademie der Wissenschaften (BBAW);research;HTML +https://github.com/tboenig/page2page;This repository save the stylesheet and workaround for transforming the properitary PAGE XML file from Transkribus (https://transkribus.eu/Transkribus) into a PAGE XML valid format (https://www.primaresearch.org/schema/PAGE/gts/pagecontent/ newest version from 2019-07-16;no_research;XSLT +https://github.com/tboenig/Transkribus_mets2Aletheia_mets;If you want to use the Transkribus METS file in Aletheia program, you have to convert this file into an Aletheia collection file (special type of METS file).;no_research;XSLT +https://github.com/tboenig/t_guidelines;;no_research;XSLT +https://github.com/telota/archiv-editor;;research;Java +https://github.com/telota/bbaw-schoell;BBAW Schoell font;research; +https://github.com/telota/ccc-tei-example;TEI-Example for Corpus Coranicum Christianum Workshop using CETEIcean;no_research;CSS +https://github.com/telota/ccdb-transliterator;;no_research;TypeScript +https://github.com/telota/ChronoTool;;research;HTML +https://github.com/telota/CIL-ACE;CIL | ACE at BBAW, Berlin, DE;research;PHP +https://github.com/telota/corpus-nummorum-editor;A Laravel-Vue-Application for Numismatics;research;Vue +https://github.com/telota/cvma_fotostation_config;Konfiguration für die Metadatenverwaltung des CVMA-Bildarchivs in Potsdam mit FotoStation;no_research;Gnuplot +https://github.com/telota/dhd2019-exist-vue-workshop;;no_research;HTML +https://github.com/telota/digilib-iiif-migrate;;no_research;JavaScript +https://github.com/telota/DigitalResourceManager;;no_research;HTML +https://github.com/telota/ediarum;Archived repository for ediarum.JAR - see https://github.com/ediarum;no_research;Java +https://github.com/telota/edition-humboldt-digital;TEI-XML dataset of the edition humboldt digital;research; +https://github.com/telota/existance;;research;Python +https://github.com/telota/jean_paul_briefe;"Daten der digitalen Edition ""Jean Paul – Sämtliche Briefe digital""";no_research; +https://github.com/telota/jean_paul_briefe_ediarum;Publikation des projektspezifischen ediarum Frameworks der Jean Paul Edition;research;CSS +https://github.com/telota/lebenswelten-lehndorff;"XML/TEI-files from the digital edition ""Lebenswelten, Erfahrungsräume und politische Horizonte der ostpreußischen Adelsfamilie Lehndorff vom 18. bis in das 20. Jahrhundert""";no_research; +https://github.com/telota/LeibnizVIII-LaTeX_TEI;;no_research;TeX +https://github.com/telota/LinkEdLeibniz-data;;research; +https://github.com/telota/lobid-client;JavaScript / TypeScript library to query the GND (Gemeinsame Normdatei);no_research;TypeScript +https://github.com/telota/pdf2jpg;Script to covert PDF to JPG without losing quality;no_research;Python +https://github.com/telota/PIR;PROSOPOGRAPHIA IMPERII ROMANI, Laravel, PHP, Vue;research;PHP +https://github.com/telota/python-for-the-humanities;;no_research;Python +https://github.com/telota/quick-csr;;no_research;Python +https://github.com/telota/quoteSalute;Inspiring greetings for your correspondence;research;CSS +https://github.com/telota/quoteSalute_xpi;;no_research;JavaScript +https://github.com/telota/rasmify;Reduce Arabic strings to their rasm, i.e. remove vocalization and other diacritics;no_research;PHP +https://github.com/telota/rasmify.js;;no_research;JavaScript +https://github.com/telota/rasmipy;Reduce Arabic strings to their rasm, i.e. remove vocalization and other diacritics;no_research;Python +https://github.com/telota/tag-denestify.js;Flatten nested tags onto one level;no_research;JavaScript +https://github.com/telota/wdio-example;Kleines WebdriverIO Testing Beispiel für den Techsprint;no_research;JavaScript +https://github.com/telota/wsp-forschungsaktivitaet;;research;HTML +https://github.com/textloop/cceh-bibliographies;;no_research; +https://github.com/tharman/SADE;;no_research;XML +https://github.com/ThomasBem/auth0-jwt-spring-boot;Integration of Auth0 JWT and Spring Boot;no_research;Java +https://github.com/ThomasBem/awesome;List of awesome resources for developers;no_research; +https://github.com/ThomasBem/github-profile-graphql;Example app built to show one way of fetching data from Github and doing some basic visualisation ;no_research;JavaScript +https://github.com/ThomasBem/icon-loader;Simple icon-loader for spring-boot;no_research;Shell +https://github.com/ThomasBem/nextjs-blog;NextJS blog based on timlrx/tailwind-nextjs-starter-blog;no_research;JavaScript +https://github.com/ThomasBem/ps-react-thomasbem;"Reusable React components built in ""Creating Reusable React Components"" on Pluralsight";no_research;JavaScript +https://github.com/ThomasBem/react-progressbar-semicircle;Progress bar component in the shape of a semicircle;no_research;JavaScript +https://github.com/ThomasBem/spring-boot-create-react-app;Simple template to create a spring boot back-end with create react app front-end combined into a microservice;no_research;JavaScript +https://github.com/ThomasBem/spring-session-jwt;Integration of Spring Sessions, JWT and Auth0;no_research;Java +https://github.com/ThomasBem/tdd-spring-boot-spock-example;TDD with Spring-Boot and Spock Example;no_research;Java +https://github.com/ThomasBem/tv-time;;no_research;JavaScript +https://github.com/ThomasBem/ubuntu-java-node-gradle;Image based on Ubuntu 15.10 with java8, node 5, grade 2.12;no_research; +https://github.com/thomaskisler/scripts;Collection of scripts I wrote to make my life easier.;no_research;R +https://github.com/triole/argparse;a very simple bash argparser purely written in shell;no_research;Shell +https://github.com/triole/astrocalc;do some basic astro calculations related to moon and sun;no_research;Go +https://github.com/triole/chuckle-chimp;giving a reason to chuckle, don't ask why;no_research;Shell +https://github.com/triole/coda;a basic task runner with simple file type detection;no_research;Go +https://github.com/triole/coredns-docker;a coredns docker setup based on alpine linux to be capable of running on any architecture;no_research;Dockerfile +https://github.com/triole/daiquiri-username-sanitizer;;no_research;JavaScript +https://github.com/triole/datediff;date diff calculations for your cli;no_research;Go +https://github.com/triole/ddp-app;;no_research;JavaScript +https://github.com/triole/ddp-content;;no_research;Shell +https://github.com/triole/dns-updater;simple dns updater, fetches own external ip and sends an update request to a dyndns service;no_research;Go +https://github.com/triole/dq-apache-rp;An example for a Daiquiri reverse proxy configuration using Apache and CentOS;no_research;Makefile +https://github.com/triole/dqapp-testdata-importer;import testdata into daiquiri apps, still under construction;no_research;Shell +https://github.com/triole/eagle-eye;a file and folder watcher that runs commands on changes;no_research;Go +https://github.com/triole/fprint;figlet print, simple shell tool to print text to figlet fonts. comes as a single static binary, nothing else required;no_research;Go +https://github.com/triole/fzcl;fuzzy clock written in go;no_research;Go +https://github.com/triole/ghwfe;simple shell files, mainly used in github workflows;no_research;Shell +https://github.com/triole/jubidee;keep forgetting birthdays? jubidee might be for you;no_research;Rust +https://github.com/triole/kodi-http-remote;very simple kodi remote written in python sending post requests;no_research;Python +https://github.com/triole/langdetect;a very basic language detection tool for text files;no_research;Go +https://github.com/triole/logaxe;go axing logs;no_research;Go +https://github.com/triole/logseal;a wrapper for logrus;no_research;Go +https://github.com/triole/lunr-indexer;lunr-indexer builds a lunar search index from all md files inside a folder, it comes along as static binary;no_research;Go +https://github.com/triole/mdlint;simple mdlinter that checks the document's front matter;no_research;Go +https://github.com/triole/mycon;get your remote ip with one command, quick through parallel requests and rust;no_research;Rust +https://github.com/triole/pgmigrate;simple postgres docker setup for migrating data;no_research;Shell +https://github.com/triole/pgtool;a very basic shell script to create and import postgres dumps;no_research;Shell +https://github.com/triole/reddrift;a simple redshift replacement that comes as static binary;no_research;Go +https://github.com/triole/restiker;a very simple shell script wrapper around restic to run backups;no_research;Shell +https://github.com/triole/rsac;a restic snapshot age checker to detect failed backups;no_research;Go +https://github.com/triole/runik;a uniq clone written in rust;no_research;Rust +https://github.com/triole/sam;sam is a simple scriptable string processor that is designed to be easily expandable;no_research;Go +https://github.com/triole/testing;;no_research; +https://github.com/triole/traefik-docker;;no_research;Dockerfile +https://github.com/triole/trigger;;no_research; +https://github.com/triole/triole;you know... github readme;no_research; +https://github.com/triole/vblr;a very basic log rotater;no_research;Shell +https://github.com/triole/web-debug-server;a simple web debug server echoing requests;no_research;Go +https://github.com/triole/webra;a simple web request assertion tool, request and check the answer;no_research;Go +https://github.com/triole/wordpress-dc;a strongly opinionated wordpress docker compose setup;no_research;Shell +https://github.com/triole/zsi;Zinc Search Indexer, crawl folders and index matching files via Zinc's HTTP API;no_research;Go +https://github.com/TrySound/akkordion;VanillaJS Accordion Library;no_research;JavaScript +https://github.com/TrySound/alphanum-sort;Alphanumeric sorting algorithm;no_research;JavaScript +https://github.com/TrySound/angular-chordy;;no_research;JavaScript +https://github.com/TrySound/angular-in-react-and-vise-versa;;no_research;JavaScript +https://github.com/TrySound/assertik;Very simple assertion library for node and browser;no_research;JavaScript +https://github.com/TrySound/babel-plugin-iife-wrap;Babel plugin to wrap file with iife;no_research;JavaScript +https://github.com/TrySound/babel-transform-import-constants;;no_research;JavaScript +https://github.com/TrySound/calendar;;no_research;JavaScript +https://github.com/TrySound/case;Markup builder on gulp without jokes;no_research;JavaScript +https://github.com/TrySound/chokidar-leaking-test;;no_research;JavaScript +https://github.com/TrySound/compose;HOC library for inferno;no_research;JavaScript +https://github.com/TrySound/datagrid;;no_research;JavaScript +https://github.com/TrySound/derivable-devtools;;no_research;JavaScript +https://github.com/TrySound/dev-server;;no_research;JavaScript +https://github.com/TrySound/disable-hover;Disable hover effects on scroll;no_research;JavaScript +https://github.com/TrySound/dropdown;Just control all custom dropdowns on your page;no_research;JavaScript +https://github.com/TrySound/esm-jest-bug;;no_research;JavaScript +https://github.com/TrySound/fastpack-injection;;no_research;JavaScript +https://github.com/TrySound/flow-monorepo-test;;no_research;JavaScript +https://github.com/TrySound/gridstack;;no_research;JavaScript +https://github.com/TrySound/gulp-apply-style;Mail processor;no_research;JavaScript +https://github.com/TrySound/gulp-buble;Compile ES2015 with buble;no_research;JavaScript +https://github.com/TrySound/gulp-collector;Collect files from pipeline;no_research;JavaScript +https://github.com/TrySound/karma-rollup-plugin;[DEPRECATED] Use https://github.com/jlmakes/karma-rollup-preprocessor;no_research;JavaScript +https://github.com/TrySound/martin;Extendable vanillaJS slider;no_research;JavaScript +https://github.com/TrySound/meta-templater;node.js custom template parser;no_research;JavaScript +https://github.com/TrySound/multi-entry-loader;Load multiple entry points into single webpack bundle;no_research;JavaScript +https://github.com/TurekBot/AddRemoveComboBox;;no_research;Java +https://github.com/TurekBot/assign2git;Bradley Turek;no_research; +https://github.com/TurekBot/AutoDash;"Want to type an Em Dash—now you can. Just type ""--"".";no_research;AutoHotkey +https://github.com/TurekBot/BillProrater;;no_research;CSS +https://github.com/TurekBot/buen-dia-mundo;My first git repository.;no_research; +https://github.com/TurekBot/CheckComboBoxTableCellDemo;An attempt to make a TableCell for the ever-so-handy CheckComboBox;no_research;Java +https://github.com/TurekBot/cuddly-funicular;Birthed from the templated loins of sturdy-telegram;no_research; +https://github.com/TurekBot/DataFX-Nested-Controller-MCVE;A Minimal, Complete, Verifiable Example that hopefully is helpful in allowing DataFX to support Nested Controllers.;no_research;Java +https://github.com/TurekBot/docusaurus-tutorial;Just me trying out docusaurus;no_research;HTML +https://github.com/TurekBot/Geist_Group_Story_Repo;;no_research; +https://github.com/TurekBot/getdownjavapackagerinstaller;An example of how to use the javapackager to install an app launched with Getdown.;no_research;Inno Setup +https://github.com/TurekBot/getdownwindowsinstaller;An example of how to deploy an application that automatically updates with Getdown;no_research;NSIS +https://github.com/TurekBot/home-page;A personal home-page that is currently hosted by ASU at https://www.public.asu.edu/~bturek/;no_research;HTML +https://github.com/TurekBot/Inno-Setup-SplashScreen-Test;A program to help unravel the mystery of why a splash screen shows when the .jar but not the executable is clicked.;no_research;Java +https://github.com/TurekBot/InputBlocker;A tool that stops your computer from being used, but not seen.;no_research;Java +https://github.com/TurekBot/Jaquallamy;A Text Based Game by the TurekBros.;no_research;Java +https://github.com/TurekBot/JFXTableViewAttempt;An SSCCE that attempts to make a JFXTableView by using CSS as suggested by the author of JFoenix.;no_research; +https://github.com/TurekBot/JFXTableView_CSS;"An attempt to nail down the CSS necessary to have a ""JFXTableView"" since as of JFoenix 8.0.1, the directive is to merely style a normal TableView.";no_research;CSS +https://github.com/TurekBot/JFXTreeTableView-Column-Alignment-SSCCE;A Short, Self-Contained, Correct Example showing that the column alignment in the JFXTableColumn is messed up.;no_research;Java +https://github.com/TurekBot/letter-avatar;A Material-Design-like avatar that displays the first letter of a user's name. Similar to those shown at inbox.google.com;no_research;CSS +https://github.com/TurekBot/lwce-router-test;;no_research;JavaScript +https://github.com/TurekBot/Mineschwepper;Mineshwepper;no_research;Java +https://github.com/TurekBot/my-favorite-recipes;;no_research; +https://github.com/TurekBot/Parent-Directory-Two-Periods-Jar-MCVE;;no_research;Java +https://github.com/TurekBot/portfolio;A portfolio made in the capstone class of my college degree in Technical Communications & User Experience. ;no_research;JavaScript +https://github.com/TurekBot/Revised;A Google Sheets addon that places the last revision date in the lower right hand corner;no_research;JavaScript +https://github.com/TurekBot/ScenicView-Freeze;A SSCCE used to experiment with ScenicView's capability to freeze an application and inspect SubWindows (ContextMenus, PopupControls, etc.);no_research;Java +https://github.com/TurekBot/scrava;A scraper for Strava;no_research; +https://github.com/TurekBot/serenity-js-playwright-test-locally;Previously, I fiddled with this template using gitpod, but now I'm going to try to get it going on my own computer.;no_research;TypeScript +https://github.com/TurekBot/serenity-js-playwright-tutorial;https://serenity-js.org/handbook/web-testing/your-first-web-scenario/;no_research;TypeScript +https://github.com/TurekBot/serenity-junit-screenplay-starter;;no_research;Java +https://github.com/TurekBot/sturdy-telegram;A repository to allow me to fiddle with github template repos;no_research; +https://github.com/TurekBot/SweepTake;A simple project using gv4j;no_research;Java +https://github.com/TurekBot/TableHeaderSortArrowAlignment;A SSCCE by kleopatra demonstrating how to put the sort arrow on the left-hand side of a TableColumn. See the following StackOverflow question: https://stackoverflow.com/questions/49121560/how-does-one-set-the-tablecolumns-sort-arrow-alignment;no_research;Java +https://github.com/TurekBot/TooltippedTableCell;Just like a normal table cell, but each table cell has a tooltip that will display its contents. This makes it easier for the user: they can read the contents without having to expand the table cell.;no_research;Java +https://github.com/TurekBot/TributeFX;A @mention system for JavaFX;no_research; +https://github.com/TurekBot/TurekBros;Where the Turek Bros come to code.;no_research;Java +https://github.com/TurekBot/wmp0;My first attempt to use the Webstart-Maven-Plugin;no_research;Java +https://github.com/tuurma/DantiscusArrr;demo visualization in R;no_research;R +https://github.com/tuurma/dhoxss2015;Leveraging the TEI workshop of Digital Humanities at Oxford Summer School 2015;no_research; +https://github.com/tuurma/EEBO;;no_research;XSLT +https://github.com/tuurma/octopus;demo repository for the teaching purposes;no_research;XQuery +https://github.com/tuurma/oXygen;Bits for the oXygen editor customization;no_research;XSLT +https://github.com/tuurma/ShakeHack;material from the Shakespearean Hackfest Dec 06 2014;no_research;XSLT +https://github.com/tuurma/standoff;bits and pieces for dixit standoff project;no_research; +https://github.com/tuurma/TCP;Scripts for Text Creation Partnership catalogue;no_research;PHP +https://github.com/tuurma/teaching;collection of teaching materials;no_research;JavaScript +https://github.com/uiur/.atom;;no_research;CoffeeScript +https://github.com/uiur/algorithms;algorithm practice;no_research;C +https://github.com/uiur/animationend;Detect when CSS animations have ended;no_research;JavaScript +https://github.com/uiur/ava-power-assert-example;;no_research;JavaScript +https://github.com/uiur/aws-lambda-zip;A tiny utility to zip a lambda function;no_research;Shell +https://github.com/uiur/base_serializer;A JSON object presenter (like active_model_serializers);no_research;Ruby +https://github.com/uiur/blog_rs;toy blog system in rust;no_research;Rust +https://github.com/uiur/bookmarklet;;no_research;JavaScript +https://github.com/uiur/calculator;calculator in c;no_research;C +https://github.com/uiur/chame;ASCII String To RGB Color;no_research;JavaScript +https://github.com/uiur/chatpad_middleman;;no_research;JavaScript +https://github.com/uiur/chrome-clip-copy;Copy text to clipboard in chrome;no_research;JavaScript +https://github.com/uiur/CoPL;My CoPL answers;no_research; +https://github.com/uiur/demae;A framework to build a machine learning batch;no_research;Python +https://github.com/uiur/design_patterns_in_ruby;practice;no_research;Ruby +https://github.com/uiur/dotfiles;.;no_research;VimL +https://github.com/uiur/electron-crop-rect;Imitate crop-rect UI like OSX screencapture in electron;no_research;JavaScript +https://github.com/uiur/embedded-json;not yet;no_research;JavaScript +https://github.com/uiur/emoji-to-do;;no_research;Rust +https://github.com/uiur/emoji-to-issue;The fastest way to create GitHub issues on your phone. Add an emoji reaction on Slack and it creates an issue for you.;no_research;TypeScript +https://github.com/uiur/empty;;no_research; +https://github.com/uiur/Ex1;計算機科学実験及び演習1;no_research;C +https://github.com/uiur/Ex2;計算機科学実験及演習2;no_research;C +https://github.com/uiur/fuzzysearch-highlight;Highlight fuzzy matched text;no_research;JavaScript +https://github.com/uiur/gallery;Canvasで作ったものの置き場;no_research;JavaScript +https://github.com/uiur/GataGata;on canvas;no_research;JavaScript +https://github.com/uiur/gcloud-ssh-peco;An easy way to ssh into gcloud instances;no_research;Shell +https://github.com/uiur/gifkobo;A web tool for creating GIF animations like GifBoom;no_research;JavaScript +https://github.com/uiur/git-current-branch;Get current branch name;no_research;Shell +https://github.com/uiur/git-push-pr;A utility to create a pull request from a topic branch;no_research;Shell +https://github.com/uiur/github-pr-release;Create a release pull request using GitHub API;no_research;TypeScript +https://github.com/uiur/gpt-news-reader;a personal news reader powered by chatgpt api;no_research;Python +https://github.com/uiur/gpt-slack-matome;Generate news from your slack history powered by ChatGPT API;no_research;Python +https://github.com/uiur/guessimage;Guess a keyword using `search by image` in Google;no_research;Shell +https://github.com/uiur/gyazo-chrome-extension;Gyazo Extension allows you to capture and send image links faster than anything else.;no_research;JavaScript +https://github.com/uiur/gyazo-cli;Gyazo for hackers;no_research;JavaScript +https://github.com/uiur/gyazo-expander;prototype;no_research;JavaScript +https://github.com/uiur/gyazo-node-webkit;Gyazo app in node-webkit;no_research;JavaScript +https://github.com/uiur/gyazo-torrent;A p2p screenshot sharing tool using webtorrent;no_research;JavaScript +https://github.com/uiur/gyazo-upload;Upload images to gyazo;no_research;JavaScript +https://github.com/uiur/hack-assembler;My assembler for nand2tetris;no_research;Assembly +https://github.com/uiur/hack-vm-translator;my vm -> hack translator for nand2tetris;no_research;Go +https://github.com/uiur/haribo;"toy operating system for ""30日でできる! OS自作入門"" book";no_research;C +https://github.com/uiur/helloworld;hello;no_research;Shell +https://github.com/uiur/hmn;人間性ワンダーランド;no_research;JavaScript +https://github.com/uiur/home;Code for my home;no_research;JavaScript +https://github.com/uiur/hubot-gyazo;hubot scripts for gyazo;no_research;CoffeeScript +https://github.com/uiur/issue-bot;;no_research;JavaScript +https://github.com/uiur/jack;My jack compiler for nand2tetris;no_research;Go +https://github.com/uiur/js-template;;no_research;JavaScript +https://github.com/uiur/jsgif-demo;pure JavaScriptでアニメGIFを作るデモ;no_research;JavaScript +https://github.com/uiur/json-parser;;no_research;C +https://github.com/uiur/kanji_to_hanzi;Translate Japanese Kanji to Chinese Hanzi (simplified and traditional);research;Ruby +https://github.com/uiur/keema;;no_research;Ruby +https://github.com/uiur/keema-resource;A JSON object presenter with the ability of generating JSON Schema / OpenAPI Schema;no_research;Ruby +https://github.com/uiur/keema-resource-benchmark;;no_research;Ruby +https://github.com/uiur/keema-typescript-generator;;no_research;JavaScript +https://github.com/uiur/KOLOSIS;KULASIS Scraper;no_research;Ruby +https://github.com/uiur/learn-machine-learning;classify news categories using scikit-learn;no_research;Python +https://github.com/uiur/learn-prolog;;no_research;Prolog +https://github.com/uiur/lecana;講義情報共有サービス;no_research;Ruby +https://github.com/uiur/line-aws-lambda;;no_research;JavaScript +https://github.com/uiur/link-text;Autolink text;no_research;JavaScript +https://github.com/uiur/llm-tools;A collection of CLI text tools that can be combined with LLM (GPT etc.);no_research;Python +https://github.com/uiur/lnd-deployment;my deployment settings of btcd and lnd;no_research;Shell +https://github.com/uiur/lonely-client;client for lonely;no_research;Go +https://github.com/uiur/lonely-server;A camera app for remote people;no_research;Ruby +https://github.com/uiur/maa;experimental markdown editor;no_research;JavaScript +https://github.com/uiur/meguro-camera;;no_research;Swift +https://github.com/uiur/memai;Webカメラから写真撮ってアニメGIFを生成する.JS;no_research;JavaScript +https://github.com/ulf1/apikey;save and load API keys from a file;no_research;Python +https://github.com/ulf1/augtxt;yet another text augmentation python package;no_research;Python +https://github.com/ulf1/bool-to-int8-ray;bool to int8 serialization with ray.io;no_research;Python +https://github.com/ulf1/bwsample;Sampling algorithm for best-worst scaling sets.;research;Python +https://github.com/ulf1/bwsample-js;Javascript implementation of bwsample to run in a browser;no_research;JavaScript +https://github.com/ulf1/flexion;;research;Python +https://github.com/ulf1/histpdf;Approximate the density (PDF) from a histogram for given bins;no_research;JavaScript +https://github.com/ulf1/ipasymbols;Properties of IPA symbols;research;Python +https://github.com/ulf1/keras-bcr;Batch Correlation Regularizer for TF2/Keras;research;Python +https://github.com/ulf1/keras-cor;Correlated Outputs Regularization;research;Python +https://github.com/ulf1/keras-hrp;Hashed Random Projection layer for TF2/Keras;research;Python +https://github.com/ulf1/keras-multilabel-embedding;;research;Python +https://github.com/ulf1/keras-quadopt;Solving quadratic optimization problems with Keras.;research;Python +https://github.com/ulf1/keras-tweaks;;research;Python +https://github.com/ulf1/kshingle;Split strings into (character-based) k-shingles;research;Python +https://github.com/ulf1/lagmat;Lagmatrix. Create array with time-lagged copies of the features;research;Python +https://github.com/ulf1/maxjoshua;Feature selection for hard voting classifier and NN sparse weight initialization.;research;Python +https://github.com/ulf1/node-distance;Compute distance between all nodes of a tree, and estimate an histogram that can be used as features for other models;research;Python +https://github.com/ulf1/node-distance-ray;ray.io wrapper for node-distance package;research;Python +https://github.com/ulf1/numpy-fracadf;Determine fractal order by the ADF test;research;Python +https://github.com/ulf1/numpy-fracdiff;Fractional differentiation as numpy function ;research;Python +https://github.com/ulf1/numpy-linreg;Linear Regression with numpy only.;research;Python +https://github.com/ulf1/pad-sequences;pad variable length sequences with multiples features;research;Python +https://github.com/ulf1/pms;proband management system;no_research; +https://github.com/ulf1/quaxa;quaxa - QUAlity of sentence eXAmples;research;Python +https://github.com/ulf1/scipy-psdm;transform an ill-conditioned quadratic matrix to a positive semidefinite matrix;research;Python +https://github.com/ulf1/scipy-quadopt;Wrapper and utility functions to apply scipy's SLSQP algorithm to quadratic optimization problems with resource constraints and upper boundaries;research;Python +https://github.com/ulf1/scipy-tweaks;;research;Python +https://github.com/ulf1/sentence-embedding-evaluation-german;Basically SentEval with German language downstream tasks;research;Python +https://github.com/ulf1/simiscore-biblio;An ML API to compute similarity scores between meta information about sentence examples.;research;Python +https://github.com/ulf1/simiscore-kshingle;An ML API to compute similarity scores between shingled sentence examples.;research;Python +https://github.com/ulf1/simiscore-semantic;An ML API to compute semantic similarity scores between sentence examples.;research;Python +https://github.com/ulf1/simiscore-syntax;An ML API to compute the Jaccard similarity based on shingled subtrees of the dependency grammar.;research;Python +https://github.com/ulf1/sklearn-fracdiff;;research;Python +https://github.com/ulf1/sklearn-pipelinetweak;additional wrapper and classes for sklearn's pipeline API;research;Python +https://github.com/ulf1/sparsity-pattern;Generate different types of sparsity pattern for sparse matrices.;research;Python +https://github.com/ulf1/study-370b;;research;Jupyter Notebook +https://github.com/ulf1/torch-hrp;Hashed Random Projection layer for PyTorch;research;Python +https://github.com/ulf1/torch-multilabel-embedding;Training of multi-label embeddings with k-shingled input sequences;research;Python +https://github.com/ulf1/torch-tweaks;;research;Python +https://github.com/ulf1/treesimi;Compute similarity between trees, e.g. dependency trees;research;Python +https://github.com/ulf1/ulf1;;research; +https://github.com/ulf1/vue-fit2box;Resize the font-size in rem units so that the text fits into the html element.;research;JavaScript +https://github.com/vidiecan/aai-shibboleth-joomla;Specific purpose joomla 3.x plugin and two modules for shibboleth authentication;no_research;PHP +https://github.com/vidiecan/doi-checker;DOI checker with TOR enabled and live google spreadsheet status update using crossref's DOIs and redis db.;no_research;Python +https://github.com/vidiecan/drupal_simple_ldap;Drupal simple_ldap module (imported from https://www.drupal.org/project/simple_ldap) and changed to my needs;no_research;Ruby +https://github.com/vidiecan/importer;importer framework;no_research;Python +https://github.com/vidiecan/kklaus;;no_research;CSS +https://github.com/vidiecan/lindat_import;;no_research;Python +https://github.com/vidiecan/mse-dataset;Testing datasets for mathematical search engines;no_research; +https://github.com/vidiecan/pyspell;Pure python implementation of hunspell (*spell) supporting a limited set of features;no_research;Python +https://github.com/vidiecan/rda_summer_school_2017;;no_research;Jupyter Notebook +https://github.com/vidiecan/tf-www;;no_research;HTML +https://github.com/welblaud/quiz-ninja-game;Simple quiz game for JS training;no_research;JavaScript +https://github.com/welblaud/sci-fi-movies;Reminder app (sci-fi movies already watched);no_research;JavaScript +https://github.com/welblaud/tiny-bits-of-go;GoLang training materials;no_research;Go +https://github.com/WillemElbers/B2SAFE-GridFTP;Instructions on setting up gridFTP together with the B2SAFE/B2STAGE iRODS DSI;no_research; +https://github.com/WillemElbers/clarin-aai-debugger;AAI Debugger;no_research;JavaScript +https://github.com/WillemElbers/clarin-bootstrap;;no_research;SCSS +https://github.com/WillemElbers/clarin-docker-lindat-dspace;Dockerfile to get a lindat dspace repository up and running quickly ;no_research; +https://github.com/WillemElbers/compose-idm-demo;Compose file to setup idm demo environment with ldap enable unity-idm, owncloud and shibboleth service provider.;no_research; +https://github.com/WillemElbers/docker-arm-base;Base docker container for armhf environments;no_research;Makefile +https://github.com/WillemElbers/docker-arm-gitlab-base;Docker container providing a base environment to build gitlab in an armhf environment;no_research;Makefile +https://github.com/WillemElbers/docker-arm-gitlab-build;Docker container to build gitlab in an armhf environment;no_research;Ruby +https://github.com/WillemElbers/docker-clarin-owncloud;Dockerized owncloud setup;no_research; +https://github.com/WillemElbers/docker-collectd-graphite;Docker image with collectd and statsd to collect metrics and graphite as the storage backend and visualization layer.;no_research; +https://github.com/WillemElbers/docker-deploy;Docker deployment script;no_research;Python +https://github.com/WillemElbers/docker-fluentd;Docker image providing a fluentd aggregator based on fluent-plugin-secure-forward;no_research; +https://github.com/WillemElbers/docker-registry;Collection of docker files and instructions on how to setup and run a private docker registry behind nginx as a reverse proxy;no_research; +https://github.com/WillemElbers/docker-scanner;Scan directories for docker projects;no_research;Java +https://github.com/WillemElbers/docker-scripts;Collection of usefull docker commands wrapped in shell scripts;no_research;Shell +https://github.com/WillemElbers/docker-shibboleth-idp-sp-demo;Provide a demo environment with a running shibboleth IDP and SP.;no_research;Python +https://github.com/WillemElbers/docker-shibboleth-sp-demo;Demo with a running shibboleth sp;no_research; +https://github.com/WillemElbers/embedded-jetty;Easy to use embedded jetty server;no_research;Java +https://github.com/WillemElbers/epic-api-v2-demo;Shell script to demonstrate the use of the epic API;no_research;Shell +https://github.com/WillemElbers/jaxrs-filters;Set of jaxrs filters provding common functionality;no_research;Java +https://github.com/WillemElbers/maven-react-bootstrap-example;Example project showing a maven react bootstrap workflow;no_research;JavaScript +https://github.com/WillemElbers/phoenix-legion;Phoenix Legion Server;no_research; +https://github.com/WillemElbers/sp-aagregator-golang;GoLang based implementation of the AAGregator sp session hook ;no_research; +https://github.com/WillemElbers/status;Test drive of upptime to implement a better status page;no_research;Markdown +https://github.com/WillemElbers/unity-idm;ldapEndpoint;no_research;Java +https://github.com/WillemElbers/unity-stress-tester;;no_research;Java +https://github.com/WillemElbers/webhook-test;Repo to test webhooks;no_research; +https://github.com/WillemElbers/wicket-crud-form;Testing various approaches in wicket to implement a CRUD form;no_research;Java +https://github.com/windauer/feinstaub;Feinstaub Spielereien;no_research;HTML +https://github.com/windauer/forms;betterFORM Demo / Reference / Test XForms;no_research;JavaScript +https://github.com/windauer/podlove-analyser;;no_research;HTML +https://github.com/windauer/poodle;The poodles core;no_research;CSS +https://github.com/windauer/preconf_xmlprague_2013;Preconf XMLPrague 2013 Demo App by @wolfgangmm and @windauer;no_research;XQuery +https://github.com/windauer/ws21-tp7-ws;"Uni Wuppertal ""Winter School"" event 2021 - TEI Publisher 7 hands on workshop";research;XQuery +https://github.com/withanage/-plugin-compatibility;;no_research; +https://github.com/withanage/addFormField;;no_research;PHP +https://github.com/withanage/angularjs-image-annotate;Creates a field for annotating, highlighting or drawing over an image. The annotations are saved in the model as a Base64 encoded string.;no_research;JavaScript +https://github.com/withanage/annotations-editor;;no_research;JavaScript +https://github.com/withanage/annotations-reader;;no_research;JavaScript +https://github.com/withanage/conference;;no_research;Smarty +https://github.com/withanage/confid;;no_research;PHP +https://github.com/withanage/datacite;OMP Datacite Plugin with additional da|ra support.;no_research;PHP +https://github.com/withanage/drafts;;no_research; +https://github.com/withanage/dworklayout;bootstrap annotation layout;no_research;JavaScript +https://github.com/withanage/fedora-annotations;fedora 4 annotations moudle uing html2, css , and angular js;no_research;JavaScript +https://github.com/withanage/HEIDIEditor;HTML5 WYSWIG Editor for NML-XML (Standalone Application or as OMP Plugin);no_research;HTML +https://github.com/withanage/heimpt;Heidelberg Monograph PublishingTool (heiMPT) is a stand-alone platform, as well as a plug-in application for OMP. It enables a high degree of automation in the digital publication process.;no_research;XSLT +https://github.com/withanage/heimpt-web2py-frontend;;no_research;Python +https://github.com/withanage/jats_data;;no_research; +https://github.com/withanage/kjc-services;;no_research;XQuery +https://github.com/withanage/licenseManager;;no_research;Python +https://github.com/withanage/mpt;Monograph Publication Tool (MPT) is a stand-alone platform, as well as a plug-in application for OMP. Developed by University of Heidelberg staff in cooperation with external partners, it enables a high degree of automation in the digital publication proces;no_research; +https://github.com/withanage/ojs-import-gjae;;no_research; +https://github.com/withanage/ojs-latex-editor;OJS Latex Editor;no_research; +https://github.com/withanage/ojsLeibnizOpen;This plugin exposes metadata in OJS/ OMP OAI interface in the Lebiniz-Open metadata format.;no_research;PHP +https://github.com/withanage/omp-resources;;no_research;HTML +https://github.com/wolfgangmm/dta-test;;no_research;XQuery +https://github.com/wolfgangmm/eebo2;Early English Books: a demo of the TEI processing model;no_research;XQuery +https://github.com/wolfgangmm/exist-stanford-ner;Integrate the Stanford Named Entity Recognizer into eXist-db;no_research;Java +https://github.com/wolfgangmm/existdb-langserver;Language Server and Extension for Visual Studio Code;no_research;TypeScript +https://github.com/wolfgangmm/existdb-node;A node.js client library for the eXist-db Native XML Database.;no_research;JavaScript +https://github.com/wolfgangmm/memsort;;no_research;Java +https://github.com/wolfgangmm/shakespeare-pm;Shakespeare's Plays: an app based on the TEI Processing Model;no_research;XQuery +https://github.com/wolfgangmm/ShakespeareDemo;Shakespeare Plays in TEI;no_research;XQuery +https://github.com/wolfgangmm/tei-guidelines-static;;no_research;Nunjucks +https://github.com/wolfgangmm/tei-publisher-blog-demo;;no_research;CSS +https://github.com/wolfgangmm/tei-simple-pm;An implementation of the TEI Simple ODD extensions for processing models in XQuery.;no_research;XQuery +https://github.com/wolfgangmm/test-repo;For testing purposes;no_research; +https://github.com/Woseseltops/agressivetweetsdemo;A demo to show off the awesome tweet classification research of @fkunneman and @antalvdb;no_research;JavaScript +https://github.com/Woseseltops/AnnotationGame;A simple Django website that lets user annotate data for research, presented as a game. It requires that there already is a 'good' answer.;no_research;HTML +https://github.com/Woseseltops/booking-crawler;A crawler to make text corpora from booking.com. No longer maintained or working, only here for reference and inspiration for later versions.;no_research;Python +https://github.com/Woseseltops/brat2paula;A script to go from the brat annotation format to the paula annotation format;no_research;Python +https://github.com/Woseseltops/facebook-crawler;This FB crawler logs into your FB account and crawls post and person information you have access to.;no_research;Python +https://github.com/Woseseltops/FB-data-donator;A Javascript template that connects to the Facebook Graph API to collect information about Facebook users donating their information to research.;no_research;JavaScript +https://github.com/Woseseltops/fowlt;An English version of the context based spell checker Valkuil.net.;no_research;Lex +https://github.com/Woseseltops/glux;A Python module meant as an addition to Pygame and PyOpenGL. It makes working with OpenGL as easy as working with the rest of Pygame, and adds an easy-to-use 2.5D lighting engine.;no_research;Python +https://github.com/Woseseltops/HaRe;HaRe is a command line tool and Python library to automatically detect harassment as it happens (real-time) with the help of machine learning techniques.;no_research;Python +https://github.com/Woseseltops/lamawebcheck;A lightweight tool to test availability and content of websites and webservices;no_research;Python +https://github.com/Woseseltops/languagemachineswebsite;The website for the Language Machines group. Live at http://cls.ru.nl/languagemachines.;no_research;Python +https://github.com/Woseseltops/personal-website;The source code of my own personal website;no_research;HTML +https://github.com/Woseseltops/personal-website-amber;;no_research; +https://github.com/Woseseltops/playlist-downloader;Takes a Spotify playlist, finds all tracks on Youtube, and downloads them to a folder as mp3s;no_research;Python +https://github.com/Woseseltops/pyscreen;A light-weight library for easy interaction between Python and GNU screen.;no_research;Python +https://github.com/Woseseltops/pyviscrypt;Some visual cryptography functionality, in Python;no_research;Python +https://github.com/Woseseltops/ReMa-texts;;no_research; +https://github.com/Woseseltops/RU-HumLab-XR;;no_research;Batchfile +https://github.com/Woseseltops/soothsayer;Word prediction based on personalized language models. My master's thesis.;no_research;TeX +https://github.com/Woseseltops/soothsayer-interactive-article;An attempt for a write up of a project on text prediction with interactive visualizations;no_research;Python +https://github.com/Woseseltops/spellbot;A Twitter bot that connects to RESTful spellcheckers and replies to tweets with corrections.;no_research;Python +https://github.com/Woseseltops/sprincfin;A simple script to detect inconsistencies in spreadsheets;no_research;Python +https://github.com/Woseseltops/stemming2017;The code for stemming2017.nl, a website that shows election predictions based on Twitter language analysis;no_research;HTML +https://github.com/Woseseltops/temptest;A temporary test;no_research; +https://github.com/Woseseltops/thesapling-website;;no_research;HTML +https://github.com/Woseseltops/toxicity-demo;A webdemo showing the language models of toxic players of MOBAs;no_research;Python +https://github.com/Woseseltops/valkuil-app;Valkuil.net (and later fowlt.net) as smartphone app.;no_research;Python +https://github.com/Woseseltops/valkuil-chrome-extension;A chrome extension for Valkuil, as known from http://www.valkuil.net/ , so the spelling corrector can be used in Chrome directly.;no_research;JavaScript +https://github.com/Woseseltops/youarewhatyoutweet;;no_research;JavaScript +https://github.com/wrznr/bibliothekartag-2021;Slides presenting the collaborative OCR GT collection at SLUB;no_research;CSS +https://github.com/wrznr/bibliothekskongress-2022;Slides for the talk “Verbesserung von automatischer Handschriftenerkennung durch bürgerwissenschaftlich unterstützte Transkription” (Bibliothekskongress 2022);no_research;CSS +https://github.com/wrznr/column-detect;Simple approach to column detection in (book) pages;no_research;Python +https://github.com/wrznr/deep-learning-bootcamp-2018;Poster, notes, and code related to the Deep Learning Bootcamp 2018 in Dresden;no_research;TeX +https://github.com/wrznr/dhh-text-2021;Slides for the workshop Digital Herrnhut in textwissenschaftlichen Kontexten;no_research;CSS +https://github.com/wrznr/dhm-dk-ocr-2023;Slides and materials for the OCR lesson as part of the data competence seminar within the DH Master studies at TUD;no_research;CSS +https://github.com/wrznr/dhm_dk_shell;Slides and materials for the shell lesson as part of the data competence seminar within the DH Master studies at TUD;no_research;CSS +https://github.com/wrznr/gramophone;grapheme-phoneme conversion and related stuff;no_research;Python +https://github.com/wrznr/gt-align;Align full text with image data on line level;no_research;Python +https://github.com/wrznr/IT-Kolloquium-2019;Slides for the IT-Kolloquium at SLUB Dresden;no_research;CSS +https://github.com/wrznr/latex-modules-currvita;Slides for the course on the LaTeX currvita package;no_research;CSS +https://github.com/wrznr/latex-modules-dinbrief;Slides for the course on LaTeX's DINBrief package;no_research;CSS +https://github.com/wrznr/linked-herrnhut-2022;Slides for the 2nd summer workshop within the Moravian Knowledge Network;no_research;CSS +https://github.com/wrznr/oberseminar-germanistik-2021;Slides for the HTR talk at the Oberseminar Germanistik at TUD;no_research;CSS +https://github.com/wrznr/OCR-D-Workflows-2019;Talk for the OCR-D developer workshop 2019;no_research; +https://github.com/wrznr/ocr-for-tu9-2022;Slides for the OCR talk at the TU9 series of lectures on research-related, technical topics;no_research;CSS +https://github.com/wrznr/ocr-ressourcenarme-sprachen-2023;Slides and materials for the OCR talk at workshop “KI für kleinere Sprachen”;no_research;CSS +https://github.com/wrznr/OpenAccessWeek-2019;Slides for the Tesseract talk at the Open Access Week 2019;no_research;CSS +https://github.com/wrznr/OpenITI-2020;Slides for the OCR-D talk at the Open Islamicate Texts Initiative Workshop;no_research;CSS +https://github.com/wrznr/os-hybrid-lab-2022;Slides for the Open Science talk at the second Hybrid Lab;no_research;CSS +https://github.com/wrznr/os-in-a-nutshell;Slides for the introductory lesson in Open Science;no_research;CSS +https://github.com/wrznr/os-osl-osc-2022;Slides for the OS talk at the INSTITUTE AND POLICLINIC OF OCCUPATIONAL AND SOCIAL MEDICINE;no_research;CSS +https://github.com/wrznr/ringvorlesung-dh-2022;Slides and materials for my contribution to the Ringvorlesung DH in WS 22/23 at TUD;no_research;CSS +https://github.com/wrznr/seniorenakademie-mkn-2023;Slides for the OCR presentation at Seniorenakademie;no_research;CSS +https://github.com/wrznr/slide-template;Template for remarkjs-based slides deployed via GitHub Pages;no_research;CSS +https://github.com/wrznr/slub-coffee-lectures-2023;Slides for the mini OCR presentation at the SLUB coffee lectures;no_research;CSS +https://github.com/wrznr/slub-open-science-2021;Slides for the OS presentation at TUD;no_research;CSS +https://github.com/wrznr/TEI-AK-2021;Slides for the OCR-Workshop for the TEI-AK in Dresden;no_research;CSS +https://github.com/wrznr/text_merger;Simple approach to align and merge two versions of the same (OCR) text;no_research;Python +https://github.com/wrznr/timur;Finite-state morphology for German;research;Python +https://github.com/wrznr/wikisource-treffen-2023;Slides and materials for the OCR talk at Wikisource Arbeitstreffen;no_research;CSS +https://github.com/xatapult/da-2021-xproc;Presentation, exercises and notes for the XProc 3.0 tutorial at Declarative Amsterdam 2021;no_research;XProc +https://github.com/xatapult/da-2022-schematron;Schematron Tutorial for Declarative Amsterdam 2022;no_research; +https://github.com/xatapult/markupuk-2020;Online webinars Markup UK 2020;no_research;XProc +https://github.com/xatapult/mu-2023-xproc;;no_research;XProc +https://github.com/xatapult/schematron-book-code;;no_research; +https://github.com/xatapult/working-with-zip-demo-prague-2020;Presentation and source files for the working with zips in XProc 3.0 demo at XML Prague 2020;no_research;XProc +https://github.com/xatapult/XProc-3.0-book-sources;"Sources belonging to: XProc 3.0 - Programmer Reference""";no_research;XProc +https://github.com/xatapult/xproc-merging-example;;no_research;XProc +https://github.com/xatapult/xtpxlib;Xatapult XML Library;no_research;XSLT +https://github.com/xatapult/xtpxlib-common;Xatapult XML Library - Common part;no_research;XSLT +https://github.com/xatapult/xtpxlib-container;Xatapult XML Library - Container handling;no_research;XProc +https://github.com/xatapult/xtpxlib-webdoc;Xatapult XML Library - Central website and other documentation;no_research;XSLT +https://github.com/xatapult/xtpxlib-xdoc;Xatapult XML Library - DocBook based documentation generation;no_research;XSLT +https://github.com/xatapult/xtpxlib-xoffice;Xatapult XML Library - MS Office file handling;no_research;XSLT +https://github.com/xlhrld/retro-dict;Historical etymological dictionaries;research;HTML +https://github.com/zentrum-lexikographie/corpus-schema;TEI-P5 Schema for Annotated Text Corpora @ ZDL;no_research;Python +https://github.com/zentrum-lexikographie/dwds-addon;Browser extension adding shortcuts to DWDS queries;no_research;JavaScript +https://github.com/zentrum-lexikographie/dwdsmor;SFST/SMOR/DWDS-based German Morphology;research;XSLT +https://github.com/zentrum-lexikographie/e-Lexicography-2019;Course materials for the compact course in digital lexicography held at the University of Potsdam;no_research;Jupyter Notebook +https://github.com/zentrum-lexikographie/e-lexicography-2020-WiSe;Wintersemester 2020;research;Python +https://github.com/zentrum-lexikographie/e-lexicography-2021-WiSe;Wintersemester 2020/21;no_research; +https://github.com/zentrum-lexikographie/elexicography-WiSe2023;Course materials for the compact course in digital lexicography held at the University of Potsdam;no_research;Jupyter Notebook +https://github.com/zentrum-lexikographie/eval-de-lemma;;no_research;Jupyter Notebook +https://github.com/zentrum-lexikographie/ttml2tei;Convert ttml to tei xml format;no_research;Python +https://github.com/zentrum-lexikographie/wikimedia;Data Exchange Routines between the ZDL and Wikimedia Projects;no_research;Clojure +https://github.com/nan/cannonsmash;;no_research;C++ +https://github.com/030jmk/CIObund;AR Bund;no_research; +https://github.com/030jmk/genAI-telephone;A retrofitted rotary dial phone with speech-to-text, a generative pre-trained transformer and text-to-speech;no_research;Python +https://github.com/030jmk/gntm;scraped Instagram follower count for GNTM contestants;no_research;HTML +https://github.com/030jmk/gntm2019;gntm 2019;no_research;Python +https://github.com/030jmk/publicAmenitiesBerlin;Telegram Bot to find the closest public amenity for urgent needs;no_research;HTML +https://github.com/030jmk/python_telegram_bots;cluster of personal telegram bot projects to fix everyday micro annoyances;no_research;Python +https://github.com/030jmk/ScrapingInstagram;Scrape Instagram posts using a specified hashtag and save them to a csv file for later analysis.;no_research;Jupyter Notebook +https://github.com/87surendra/clarkson;;no_research; +https://github.com/87surendra/deep-learning-drone;;no_research;Jupyter Notebook +https://github.com/87surendra/Python_DS_Lect;;no_research;Jupyter Notebook +https://github.com/87surendra/Random-Forest-Image-Classification-using-Python;Random Forest Image Classification using Python;no_research;Jupyter Notebook +https://github.com/a-moi/disaster-tweets;"Notebooks with codes used for the Kaggle competition ""Real or Not? NLP with Disaster Tweets""";no_research;Jupyter Notebook +https://github.com/a-moi/political-argument-mining;Mining arguments in political discourse with BERT and RoBERTa. We also present a new corpus of UNSC speeches annotated wrt their argumentative structure;research;Jupyter Notebook +https://github.com/a-moi/tbbt-character-detection;;no_research;Jupyter Notebook +https://github.com/Abdelwahab86/Ahmed;;no_research; +https://github.com/Abdelwahab86/DEM-Analysis;A robot powered training repository :robot:;no_research;Ruby +https://github.com/Abdelwahab86/Water-polygons-photogrammetry;My master thesis at Potsdam University;research;Jupyter Notebook +https://github.com/abrarhasinkml/Bangla2EnglishNumberConversion;A simple function that converts Bengali numbers to their English coefficients;no_research;Python +https://github.com/abrarhasinkml/coinMarketCapAPI;A crypto currency tracker app to monitor the currencies of interest. This is a v1 version.;no_research;Python +https://github.com/abrarhasinkml/Command-Based-Text-Editor;A command based text editor done in C++ as a project for Object Oriented Programming Course;no_research;C++ +https://github.com/abrarhasinkml/COVID-19BD;A simple visualization script using Plotly to convert the numerical data from IEDCR's website into interactive plots. The data has been scraped from IEDCR's COVID dashboard and some additional data has been added. If you are running the plotting script from a jupyter notebook, the .show() function will suffice. For offline view in IDE's like Spyder, the plot() function has also been written which generates a temporary html file consisting of the plot. ;no_research;JavaScript +https://github.com/abrarhasinkml/cse480moviesonthegobd;My final project for CSE-480 (Web Technology). Movies on the go Bangladesh is basically an informative site which has all the information regarding movie schedules in the most popular halls in Dhaka. ;no_research;JavaScript +https://github.com/abrarhasinkml/Image-recognition-using-softmax;A simple softmax script that learns from the CIFAR-10 dataset. Accuracy is about 24%.;no_research;Python +https://github.com/abrarhasinkml/kotha-BSLR;;no_research;PureBasic +https://github.com/abrarhasinkml/MovieApp;A Movie searching application created using React-Native;no_research;JavaScript +https://github.com/abrarhasinkml/RandomMusicPlayer;Testing out Selenium webdriver by making a script that randomly plays Salman Khan songs;no_research;Python +https://github.com/abrarhasinkml/restaurantmanagementsystem;A Restaurant management system i did for my Java project during my 6th semester. The system can generate excel files for reports and can store in a database.;no_research;Java +https://github.com/abrarhasinkml/Textmage;Textmage is a neural caption generator that can generate captions in Bengali for images that belong to the Bangladeshi domain. This project was done for my CSE499 project. The model has been referred from sachinkmrs Neural Image Captioning model.;no_research;Python +https://github.com/Adrian-Abendroth/Adrian-Abendroth;Config files for my GitHub profile.;no_research; +https://github.com/Adrian-Abendroth/iterm2;Profile settings for MacOS terminal iterm2 ;no_research; +https://github.com/Adrian-Abendroth/OCaml-DFA-Equivalence;This is an OCaml program to check whether two DFA's are equivalent and minimize them. It uses the Table-Filling Algorithm.;no_research;OCaml +https://github.com/Adrian-Abendroth/SharedBox-Ultimate;SharedBox-Ultimate Projekt fuer die Uni;no_research;Java +https://github.com/Adrian-Abendroth/single-machine-scheduling-eed;Single Machine Scheduling Early Due Date (EED) in Javascript programmed;no_research;JavaScript +https://github.com/Adrian-Abendroth/zsh;Personal file for shell zsh;no_research;Shell +https://github.com/Adrian-Ziupka/ba-thesis;My bachelor thesis about evaluating pavement distress of point clouds.;research;TeX +https://github.com/Adrian-Ziupka/noodle-bot;A telegram bot providing information about today's dishes at the canteen of the University of Potsdam.;no_research;Python +https://github.com/aeye-lab/ecml-ADHD;;research;Python +https://github.com/aeye-lab/etra-2023-bridging-the-gap;;no_research;Jupyter Notebook +https://github.com/aeye-lab/etra-fairness;;research;Jupyter Notebook +https://github.com/aeye-lab/etra-reading-comprehension;;research;Python +https://github.com/aeye-lab/Eyettention;;research;Python +https://github.com/aeye-lab/neurips-gmml-2022-xai-eye-tracking-evaluation;;no_research;Python +https://github.com/aeye-lab/pymovements;A python package for processing eye movement data;research;Python +https://github.com/aeye-lab/pymovements-toy-dataset;Example toy dataset resource for the pymovements package;no_research; +https://github.com/aeye-lab/pymovements-toy-dataset-eyelink;;no_research;AGS Script +https://github.com/aeye-lab/python-wmc-battery; Python reimplementation of the WMC battery described in Lewandowsky, Oberauer, Yang, & Ecker (2010), Behavior Research Methods.;research;Python +https://github.com/aeye-lab/SFB-1287-Summer-School;;no_research;Jupyter Notebook +https://github.com/aeye-lab/sp-eyegan;;research;Jupyter Notebook +https://github.com/Alaa-Noor/365DataScience_Course;;no_research; +https://github.com/Alaa-Noor/Loan-Defaulters-Prediction-using-Lending-Club-Data;;no_research;Jupyter Notebook +https://github.com/alecamcr/Immigration-RSE;This project aims at summarizing important factors of immigration in Germany, such as: number of immigrants, origin countries, sex, age, and concentration and movement between Bundesländer. This project was done for the course of research software engineering at the University of Potsdam;research;Jupyter Notebook +https://github.com/alecamcr/polysyllabic-shortening-BA;This repository contains the codes and files I used for getting the data of my Bachelor Thesis in linguistics at the University of Potsdam;no_research;R +https://github.com/alexanderc360/AOC2017;some c++ practice;no_research;C++ +https://github.com/alexanderc360/AOC2020;My solutions for Advent of Code 2020;no_research;Java +https://github.com/alexanderc360/AOC2021;;no_research;Python +https://github.com/alexanderc360/AOC2022;Solutions for Advent of Code 2022;no_research;Python +https://github.com/alexanderc360/CS344_Project;;no_research;C++ +https://github.com/alexanderc360/website;my personal website;no_research;JavaScript +https://github.com/alexkli/adventofcode2018;My solutions for Advent of Code 2018;no_research;JavaScript +https://github.com/alexkli/alfredworkflows;My workflows for alfred;no_research;Python +https://github.com/alexkli/github-api-scripts;Shell scripts to work with the Github REST API;no_research;Shell +https://github.com/alexkli/helix-mytestproject;;no_research;JavaScript +https://github.com/alexkli/helix-tutorial;;no_research;JavaScript +https://github.com/alexkli/homebrew-tap;Custom Homebrew Formulae;no_research;Ruby +https://github.com/alexkli/jhb;Java HTTP Benchmark Tool;no_research;Java +https://github.com/alexkli/lfs-test;;no_research; +https://github.com/alexkli/oak-chest;Oak Chest - Packages for Apache Jackrabbit Oak;no_research; +https://github.com/alexkli/openwhisk-kubernetes-installer;Docker image to install and run Apache OpenWhisk locally on Docker for Mac;no_research;Shell +https://github.com/alexkli/osgi-troubleshoot;Apache Felix Webconsole Plugin for troubleshooting OSGi bundles and services;no_research;Java +https://github.com/alexkli/versionatorr;Web app to compare maven and osgi version numbers using Google Appengine;no_research;CSS +https://github.com/alexkorga/house-pricing-prediction;;no_research;Jupyter Notebook +https://github.com/alexkorga/SimpleChatbot;A Chatbot based on a bag-of-words system;no_research;Python +https://github.com/Alfeezy/AI;Artificial Intelligence assignments;no_research;Java +https://github.com/Alfeezy/ALGO;All of my algorithms assignments (don't steal pls);no_research;Java +https://github.com/Alfeezy/BCO;Bus Colony Optimization;no_research;Java +https://github.com/Alfeezy/graphicdesignportfolio;portfolio for various art and graphics design works;no_research; +https://github.com/Alfeezy/learn-to-fly;Python implementation of QLearning on top of custom gym environment;no_research; +https://github.com/Alfeezy/PDWorkshop;Example PD code and notes for a PureData Workshop;no_research;Max +https://github.com/Alfeezy/Rand;;no_research; +https://github.com/Alfeezy/VisualPSO;;no_research;Processing +https://github.com/alisher-turubayev/alisher-turubayev;Config files for my GitHub profile.;no_research; +https://github.com/alisher-turubayev/dl-normalizing-flows;Utilizing Normalizing Flows for Anime Face Generation - Journey Log;research;Jupyter Notebook +https://github.com/alisher-turubayev/trent-university-code;University Code from all classes | Trent University | 2017-2021;research;C# +https://github.com/alisher-turubayev/uni-potsdam-code;University Code from all classes | Universität Potsdam - Hasso-Plattner Institut | 2021-2023;research; +https://github.com/alsino/AirBNB;Project from the course »Data Journalism« which took place at the University of Applied Sciences Potsdam in the department Design during the winter semester 2014/15.;no_research;CSS +https://github.com/alsino/berlindru;Test of a very simple D3 viz technique;no_research;HTML +https://github.com/alsino/bob-ross-images;Getting beautiful Bob Ross paintings;no_research;JavaScript +https://github.com/alsino/ckan_nigeria;;no_research;Python +https://github.com/alsino/corona-impact-analysis;A quick interactive visualization of covid-19 scenarios (May 2020);no_research;HTML +https://github.com/alsino/creative-applications-ml;All code and materials for the DAAD introductory workshop on machine learning;no_research;JavaScript +https://github.com/alsino/creative-applications-ml-dai;;no_research;JavaScript +https://github.com/alsino/europe-map;;no_research;JavaScript +https://github.com/alsino/imgbank;;no_research; +https://github.com/alsino/inflation-rate-september;;no_research; +https://github.com/alsino/introtodataviz;Final presentation for intro course at FH Potsdam;no_research;HTML +https://github.com/alsino/map-test;;no_research;JavaScript +https://github.com/alsino/map-today-test;;no_research;JavaScript +https://github.com/alsino/nyt-headlines;A test on github actions;no_research;JavaScript +https://github.com/alsino/one-click-hugo-cms;;no_research;CSS +https://github.com/alsino/p5sound;A short test of the p5.js library with sound import;no_research;JavaScript +https://github.com/alsino/sapper-dynamicRoutes;;no_research;JavaScript +https://github.com/alsino/schoolofmaa_code;all the code from school of maa bots and ml workshop;no_research;JavaScript +https://github.com/alsino/sotmus;A short presentation sotmus2015;no_research;HTML +https://github.com/alsino/strapi-test;;no_research;JavaScript +https://github.com/alsino/style-transfer-subway-art;Training a neural network on subway art - style transfer;no_research;HTML +https://github.com/alsino/svelte-leaflet-template;A simple boilerplate template for a simple map application with svelte and leaflet;no_research;HTML +https://github.com/alsino/taktile-test;;no_research; +https://github.com/alsino/themagicsquare_typography;;no_research;HTML +https://github.com/alsino/tphc-website;;no_research;CSS +https://github.com/alsino/ufosightings;A small semester project on vizualizing UFO sightings in Germany in the summer term 2015 at FH Potsdam;no_research;HTML +https://github.com/alsino/ukraine-map;;no_research;JavaScript +https://github.com/alsino/visitmytent;Visitmyorbit is a portal into the life of contemporary artists working in various fields. The site shows artists' motivations, studio locations as well as 773 connections among them – creating an inside view into the networks of 150 artists presented on visitmytent.;no_research;Svelte +https://github.com/alsino/vmt-network;A quick sketch for a network visualization for vmt using d3 force-directed network and d3 symbols.;research;JavaScript +https://github.com/alsino/webpack-starterkit;Slim Webpack Starterkit with ES6, SCSS, Jade, HMR, Normalize, PureCSS, YAML;no_research;JavaScript +https://github.com/alyonavyshnevska/advanced_natural_language_processing;Advanced Natural Language Processing course. MS Cognitive Systems at Uni Potsdam. WS2018/19;no_research; +https://github.com/alyonavyshnevska/Advent-of-Code;little fun scripts;no_research;Jupyter Notebook +https://github.com/alyonavyshnevska/angular_explorations;;no_research;HTML +https://github.com/alyonavyshnevska/bert_exploration;Exploring the Huggingface implementation for a PyTorch interface for BERT;no_research;Jupyter Notebook +https://github.com/alyonavyshnevska/bert_for_coreference_resolution;Exploring Span Representations in Neural Coreference Resolution;research;Python +https://github.com/alyonavyshnevska/databases;Exploring relational and non-relational databases;no_research; +https://github.com/alyonavyshnevska/datasets;Easy way to host small csv files and diagrams for my workshops;no_research;Jupyter Notebook +https://github.com/alyonavyshnevska/docker_REST_Flask_exploration;Docker, Flask, REST_API and co.;no_research;Python +https://github.com/alyonavyshnevska/dynamic_programming_levenshtein_distance;✅ Dynamic Programming with unit tests and Travis CI;no_research;Python +https://github.com/alyonavyshnevska/homemade_bread;🥖 super lightweight api with mongoDB integration to get recipe links to my favourite homemade sourdough breads;no_research;JavaScript +https://github.com/alyonavyshnevska/intelligent_data_analysis;Projects for the Machine Learning class. University of Potsdam, SS2019. ;no_research;Jupyter Notebook +https://github.com/alyonavyshnevska/malware_detection_dataset_explore;Exploring the CIDDS-001 data set gathered by Hochschule Coburg;no_research;Jupyter Notebook +https://github.com/alyonavyshnevska/problem_solving_walkthrough;In this mini-project I guide you through my journey from facing a problem to solving it;no_research;Jupyter Notebook +https://github.com/alyonavyshnevska/pyTorch_playground;;no_research;Jupyter Notebook +https://github.com/alyonavyshnevska/react_explorations;Exploring React library, building a simple task tracker;no_research;JavaScript +https://github.com/alyonavyshnevska/simple_http_server;A simple http server in python that runs locally and returns valid status codes;no_research;Python +https://github.com/alyonavyshnevska/starting_point_for_new_projects;Templates and code snippets that I often use when starting a new project;no_research;Jupyter Notebook +https://github.com/alyonavyshnevska/test_js;;no_research;JavaScript +https://github.com/alyonavyshnevska/text_visualization_course;Projects completed for Text Visualization Seminar, HPI, SS2019;no_research;HTML +https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India;Analysis of the projected very wet monsoon seasons on the Indian subcontinent using 32 CMIP6 models. Codes for publication: https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2022GL098856;research;Python +https://github.com/AnjaKatzenberger/CMIP6-Indian-Monsoon;Analysis of the projected changes of the Indian summer monsoon using 32 CMIP6 models;no_research;Python +https://github.com/annameide/como-map-workshop;map box interactive map tryouts;no_research;CSS +https://github.com/annameide/HtmlCssProject;Learning version control and github along my first html and css steps.;no_research;HTML +https://github.com/annameide/lucas-code;;no_research;JavaScript +https://github.com/annameide/map-scrollytelling;A scrollytelling website with a focus on mapping.;no_research;HTML +https://github.com/annameide/p5js-experiments;Trying out creative coding with p5js. ;no_research;HTML +https://github.com/annameide/processing_fhp;"Selection of projects created during the winter term 2018/19 in ""Processing for Designers"" class at the University of Applied Sciences Potsdam";no_research; +https://github.com/annameide/werkschau;Werkschauseite zur Bachelorprüfung;no_research;HTML +https://github.com/aodenweller/green-h2-upscaling;Model code and input data of the technology diffusion model for electrolysis capacity;research;R +https://github.com/aodenweller/remind-pypsa;Scripts for the REMIND-PyPSA model coupling;no_research; +https://github.com/arne-cl/abspath;get the absolute paths of files on the command line;no_research;Python +https://github.com/arne-cl/alt-mulig;A place for experimental/educational code;no_research;Jupyter Notebook +https://github.com/arne-cl/apt-downgrade;downgrade packages to those available in your repository. fork of http://code.google.com/p/apt-downgrade/;no_research;Python +https://github.com/arne-cl/balie-ner-cli;Balie (Named Entity Recognition) commandline interface;no_research;Python +https://github.com/arne-cl/bart-coreference-python-wrapper;BART (Beautiful Anaphora Resolution Toolkit) Python wrapper;no_research;Python +https://github.com/arne-cl/bibnorm;bibliography normalization (uppercase/lowercase) for BibTeX files;no_research;Python +https://github.com/arne-cl/bislama-resources;Bislama language resources;no_research; +https://github.com/arne-cl/brat-embedded-visualization-examples;minimal examples of brat annotation visualizations;no_research;JavaScript +https://github.com/arne-cl/discoursegraphs;linguistic converter / merging tool for multi-level annotated corpora. graph-based (using Python and NetworkX).;research;Python +https://github.com/arne-cl/discoursekernels;a collection of kernel functions for natural language processing;no_research;Python +https://github.com/arne-cl/djangosaml2-sso-example-docker;trying to build a running djangosaml2 Single Sign On service provider example;no_research; +https://github.com/arne-cl/docker-nginx-env-example;How to use env variables in ngxinx inside docker-compose.;no_research;Dockerfile +https://github.com/arne-cl/errorfuncs;Golang helper functions to avoid typing if err != nil { ... } 100 times per day.;no_research;Go +https://github.com/arne-cl/fangorn;Automatically exported from code.google.com/p/fangorn;no_research;Java +https://github.com/arne-cl/feng-hirst-rst-parser;fork of Vanessa Wei Feng's RST-style discourse parser;research;Shell +https://github.com/arne-cl/fernbus;commandline interface to busliniensuche.de;no_research;Python +https://github.com/arne-cl/flickr-album-embed-codes;extract HTML embed codes from all images of a Flickr album;no_research;Python +https://github.com/arne-cl/fosay;Automatically exported from code.google.com/p/fosay;no_research;Python +https://github.com/arne-cl/frodo-wii;Automatically exported from code.google.com/p/frodo-wii;no_research;C++ +https://github.com/arne-cl/go-abspath;command-line tool to print absolute paths of all given files;no_research;Go +https://github.com/arne-cl/go-grepurl;;no_research;Go +https://github.com/arne-cl/knitr2notebook;convert knitr R documents into interactive IPython notebooks;no_research;R +https://github.com/arne-cl/language_models;;no_research;Python +https://github.com/arne-cl/learn-node-from-scratch;"My notes on Wes Bos' ""Learn Node"" online course (Node.js, Express, MongoDB).";no_research;CSS +https://github.com/arne-cl/lingconv;a bunch of linguistic converter scripts;no_research;Python +https://github.com/arne-cl/nlgserv;A lightweight JSON wrapper for simplenlg;no_research;Python +https://github.com/arne-cl/nltk-maxent-pos-tagger;maximum entropy based part-of-speech tagger for NLTK;no_research;Python +https://github.com/arne-cl/pandas-gotchas;List of gotchas in Pandas (the Python data analysis library).;no_research; +https://github.com/arne-cl/ppi_graphkernel;all-paths graph kernel for protein-protein interaction extraction;research;Python +https://github.com/Askir/bachelor-thesis-template;A simple latex template for bachelor theses;no_research;TeX +https://github.com/Askir/earthquakerice;;no_research;JavaScript +https://github.com/Askir/ecplise-cdt;;no_research;Java +https://github.com/Askir/elija-rails;;no_research;Ruby +https://github.com/Askir/pt2-uebungen;meine pt2 uebungen;no_research;C++ +https://github.com/Askir/Texas-Holdem-Android;;no_research;Java +https://github.com/Askir/tourneytuesday;A small Vue App with express backend for Lancemenots tournament tuesday;no_research;JavaScript +https://github.com/Askir/Wiiteboard;;no_research;C++ +https://github.com/AvitBhowmik/ATRIC;ATRIC: automated Accumulation Threshold selection and RIparian Corridor delineation;research;R +https://github.com/AvitBhowmik/avitbhowmik;Official website for Avit Bhowmik;no_research;HTML +https://github.com/AvitBhowmik/Countdown_to_Drawdown;;no_research; +https://github.com/AvitBhowmik/gisapp17;"This is the GitHub repository for the block course ""Geoinformation Systems (GIS) Application"" offered by the Institute for Environmental Sciences, University of Koblenz-Landau at the Winter Semester 2016/2017. Please scroll below to read the instructions.";no_research;TeX +https://github.com/AvitBhowmik/gisapp18;"This is the GitHub repository for the block course ""Geoinformation Systems (GIS) Application"" offered by the Institute for Environmental Sciences, University of Koblenz-Landau at the Winter Semester 2018. Please scroll below to read the instructions.";no_research;TeX +https://github.com/AvitBhowmik/GridClimNig;Gridded climate datasets for Nigeria;no_research; +https://github.com/AvitBhowmik/PhD_Defense_Slides_Bhowmik;This repository contains the slides from my Ph.D. defense on December 2, 2015.;no_research;TeX +https://github.com/AvitBhowmik/PhD_Dissertation_Bhowmik;"This repository contains my Ph.D. dissertation. The dissertation has been written and compiled using ""Maggi Memoir Thesis"" (http://www.latextemplates.com/template/maggi-memoir-thesis) template and XeLaTeX, respectively. People, who are not used to or familiar with LaTeX, please download the .pdf file only.";no_research;TeX +https://github.com/AvitBhowmik/Poster-on-Spatial-Statistics-2015;"This repository contains my poster presented at Spatial Statistics: Emerging Patterns 2015 conference, in Avignon, France on June 12, 2015. The title of the poster is ""Estimating pooled within-time series variograms with spatially shifted temporal points"", reference number: P3.03, abstract sequel: SPAT2015_0024. The poster was created using Latex a0poster and multicol packages.";research;TeX +https://github.com/AvitBhowmik/Presentation-at-SEFS9;"This repository contains my slides presented at 9th Symposium of European Freshwater Sciences - SEFS 9 2015 conference, in Geneva, Switzerland on July 6, 2015. The title of the oral presentation is ""Are aerial dispersers good adapters? Association of large scale spatial autocorrelation of semi-aquatic insect trait distribution with climate"", reference number: 00570, session: RS02-Impacts of climate change on freshwater ecosystems. The slides were created using Latex Beamer package and mtheme.";research;TeX +https://github.com/AvitBhowmik/Presentation-slides-on-Spatial-Statistics-2015;"This repository contains my slides presented at Spatial Statistics: Emerging Patterns 2015 conference, in Avignon, France on June 12, 2015. The title of the oral presentation is ""Mapping human risk from contamination of drinking water sources in developing countries"", reference number: O2.24, abstract sequel: SPAT2015_0024.";no_research;TeX +https://github.com/AvitBhowmik/SA17;;no_research;TeX +https://github.com/AvitBhowmik/SSTP;SSTP: Spatially Shifting Temporal Points;no_research;R +https://github.com/AvitBhowmik/summer_academy_15;"""International Summer Academy on Spatial Ecotoxicology and Ecotoxicological Risk Assessment – Using an Open Commmunity Approach"", 07 – 20 September 2015, in University of Koblenz-Landau, Landau in der Pfalz, Germany";no_research;TeX +https://github.com/AvitBhowmik/teaching_materials;;no_research;TeX +https://github.com/AvitBhowmik/testGU;This repository contains the trial lecture and homework for the students in Hochschule Geisenheim University;no_research;TeX +https://github.com/AvitBhowmik/testUP;This repository contains the materials for the trial lecture in University of Potsdam. ;no_research;TeX +https://github.com/Azarozo19/ICESat-2_DEM_Internship;Internship I RSIV;no_research;Jupyter Notebook +https://github.com/Baschdl/hci-robot;;no_research;Arduino +https://github.com/Baschdl/jax-random_projections;sklearn's random projections but fast (using JAX on a GPU);no_research;Python +https://github.com/Baschdl/metapath-embedding;;no_research;Python +https://github.com/Baschdl/RoboCup-Team-Nullpointer;"RoboCup Junior Rescue B - Team ""Nullpointer""";no_research;Java +https://github.com/Baschdl/test-signing;;no_research; +https://github.com/Baschdl/vaccination_checker;Image-based vaccination checker and advisor;no_research;JavaScript +https://github.com/Baschdl/varnish-ban-setup;Setup to reproduce https://stackoverflow.com/questions/65632023/varnish-ban-is-added-but-old-object-is-returned;no_research;VCL +https://github.com/Baschdl/vimagick-django-cms;Minimal setup for django-cms based on https://hub.docker.com/r/vimagick/django-cms/;no_research; +https://github.com/benlowit/Digital-Sketching;Digital Etch-A-Sketch style drawing system. Two potentiometers are used to draw on a 255 x 255 pixel canvas. A USB keyboard connected to the FPGA can change the cursor width, canvas size, and ink color. The representation of the drawing surface is displayed on a VGA monitor connected to the FPGA and on a PC's screen through software that communicates via UART with the FPGA.;no_research;VHDL +https://github.com/benlowit/Microprocessor_Hex-Siren;Hexadecimal sequence cycler and quad-tone siren generator. Written with CodeWarrior in C.;no_research;C +https://github.com/benlowit/Microprocessor_Multisource-Tone-Gen;Final Exam Project for EE360 Microprocessors;no_research;C +https://github.com/benlowit/Microprocessor_Timer-Siren;Digital stopwatch with 10 millisecond resolution and a 3-tone siren. Written with CodeWarrior in C.;no_research;C +https://github.com/benlowit/PS-2-Hangman;Hangman game played with PS/2 keyboard with scan codes decoded using IC chips on a breadboard and translated into ASCII. ASCII characters are then sent via UART to this software to play hangman with a user-friendly GUI and pictures that indicate current game state. The software also sends data via UART to control a breadboard-mounted LCD and 7-segment display to display game state and incorrect guesses remaining. Written using Visual Studio in C#.;no_research;C# +https://github.com/benlowit/Waveform-Analyzer;System made to sample, store, digitally recreate, and analyze waveforms. Signals are sampled using an ADC, stored in RAM, and sent via UART to software that plots the data and performs analyses.;no_research;VHDL +https://github.com/bgailleton/CHONK;LEM prototype crossing Cellular Automata methods with graph theory;no_research;Jupyter Notebook +https://github.com/bgailleton/CV_Boris_Gailleton;My CV;no_research;TeX +https://github.com/bgailleton/DAGGER;Directed Acyclic Graph for digital topoGrahic manipulations Eventually cRoss-platform;research;C++ +https://github.com/bgailleton/helplotlib;;no_research;Python +https://github.com/bgailleton/random_tuto;Read the title;no_research;Python +https://github.com/bgailleton/Subitop_GRANADA;Figure support for my poster at the conference TOPOEUROPE;no_research; +https://github.com/bgailleton/test_web_stuff;;no_research; +https://github.com/bgailleton/three_test;Playing with three.js. ignore;no_research;JavaScript +https://github.com/bgailleton/TVD_Condat2013;Python implementation of the 1D Total Variation Denoising algorithm A Direct Algorithm for 1D Total Variation Denoising (Sign. Proc. Letters, DOI:10.1109/LSP.2013.2278339) using xtensor and pybind11 to bind c++ and numpy.;research;C++ +https://github.com/bgailleton/webtopo_public;;no_research;HTML +https://github.com/bgailleton/wgt;Testing web stuff. Please ignore.;no_research;Jupyter Notebook +https://github.com/bglaetzer/Intelligent-Logistics-Project;Github repo for the intelligent logistics project in the summer semester 2022 at potsdam university.;no_research;Jupyter Notebook +https://github.com/bgroenks96/2DX-GL;The 2DX Open Source Project - Advanced 2D Graphics API for Java;no_research;Java +https://github.com/bgroenks96/AutoMoL;Automated Monadic Logic in the Scala programming language.;no_research;Scala +https://github.com/bgroenks96/cmip-embeddings;Cross-model embedding for CMIP data;no_research;Jupyter Notebook +https://github.com/bgroenks96/csci-5622-project;Survey of dimensionality reduction, regression, and deep learning techniques for climate modeling problems;no_research;Jupyter Notebook +https://github.com/bgroenks96/dnn-community-detection;Community detection in deep nerual networks;no_research;Jupyter Notebook +https://github.com/bgroenks96/fg-tools;Forerunner Games Utility Library;no_research;Java +https://github.com/bgroenks96/generative-downscaling;Research and experiments for downscaling climate/weather data via generative learning;research;Jupyter Notebook +https://github.com/bgroenks96/headerify;Short and simple python tool for batch prepending file headers.;no_research;Python +https://github.com/bgroenks96/java-global-input-hook;Global keyboard/mouse input event handling for Java.;no_research;C +https://github.com/bgroenks96/kubezeug;Utilities for quick and easy distributed computing via dask-kubernetes, with a focus on ML applications.;no_research;Python +https://github.com/bgroenks96/MHS-Collections-Project;Madeira Historical Society project to digitally store historical artifacts for educational and informational use.;no_research;Java +https://github.com/bgroenks96/ml-basics;A small collection of basic machine learning method implementations written in Python;no_research;Jupyter Notebook +https://github.com/bgroenks96/nextcloud-kube;NextCloud kubernetes deployment;no_research;Shell +https://github.com/bgroenks96/normalizing-flows;Implementations of normalizing flows using python and tensorflow;research;Jupyter Notebook +https://github.com/bgroenks96/peril;;no_research;Java +https://github.com/bgroenks96/pyclimdex;Implementation of Climdex indices in Python/xarray/dask;no_research;Python +https://github.com/bgroenks96/SharpGameLib;A collection of libraries and utilities developed while making a 2D platformer in C# and MonoGame;no_research;C# +https://github.com/bgroenks96/SmartProperties.NET;Extension to the .NET INotifyPropertyChanged API that allows you to build a propagation tree for dependent properties.;no_research;C# +https://github.com/bgroenks96/vol-rendering-research;OSU/CSE Volume Rendering mini-project;no_research;Scala +https://github.com/blblblu/asami;simple pixel sorter;no_research;Go +https://github.com/blblblu/Clattr;Clattr - Easily create LaTeX letters (lattr rewritten in C++);no_research;C++ +https://github.com/blblblu/esp8266_led_demo;Remotely control an led that is connected to an ESP8266 over wifi via smartphone app;no_research;Dart +https://github.com/blblblu/lattr;A little application to create letters in LaTeX easily;no_research;Python +https://github.com/blblblu/leri;generate markdown documents from source code comments;no_research;Go +https://github.com/blblblu/mesa-error-test;;no_research;CMake +https://github.com/blblblu/rgba-channel-merge;merge colour channels of multiple images;no_research;Go +https://github.com/blblblu/simple-http-server;really simple (and probably insecure) http server written in python using only tcp sockets;no_research;Python +https://github.com/blblblu/wigl-vorlage;;no_research;TeX +https://github.com/blblblu/wiwi-latex-template;;no_research;TeX +https://github.com/blblblu/yasnake;;no_research;C++ +https://github.com/bmarv/collaborative-online-music;;no_research;JavaScript +https://github.com/bmarv/Currency-Tracker;A Currency Tracker for the most common 30 currencies, that shows also the progress of the last month;no_research;JavaScript +https://github.com/bmarv/Intelligent-Editor-Environment-App;This Editor is a tool for reliable Textanalysis and Random Text Generation. Executable Files for Windows as well as a Documentation in German and a Jupyther-Notebook with relevant Code-Fragments are included in this Project.;no_research;Jupyter Notebook +https://github.com/bmarv/Psychology_Experiment;encoding during the stimulation of the vagus nerve, recognition in an unattended online session;research;Python +https://github.com/bmarv/relief-routing-models;;no_research;Jupyter Notebook +https://github.com/bmarv/SmaliCode-Exploiter;Decompilation of APK-files into .smali Format for Debugging and Analyzing fully compiled Android-APKs.;no_research;Java +https://github.com/bmarv/Summaries-on-AI-topics;Collection of Summaries for a research module at the University of Potsdam in the winter-semester 2019/2020.;no_research; +https://github.com/BodoBookhagen/CameraCalibration;Camera Calibration using OpenCV;no_research;Python +https://github.com/BodoBookhagen/ChanGeom;ChanGeom - Channel Geometry, River Width, and along-stream distance extraction from KML;research;Python +https://github.com/BodoBookhagen/DEM-KPP;Digital Elevation Model (DEM) and KnickZone-Picker (KZP) Analyzer;no_research;Matlab +https://github.com/BodoBookhagen/GMT-NWArg-TOPO-NDVI-PRECIP-COHERENCE;Using GMT to create maps of the central Andes in NW Argentina showing topography, vegetation cover, rainfall and S1 coherence;no_research; +https://github.com/BodoBookhagen/GMT-plot-windvectors-SAM;Plot wind vectors (u and v components) with GMT for South America;no_research;Shell +https://github.com/BodoBookhagen/GMT-SAM-EQ-NDVI-PRECIP;GMT scripts and data for plotting topography, earthquake distribution, rainfall and NDVI vegetation cover for SAM.;no_research;Shell +https://github.com/BodoBookhagen/ICESat-2_SVDA;The Sparse Vegetation Detection Algorithm (SVDA) for ICESat-2 data;research;Jupyter Notebook +https://github.com/BodoBookhagen/isce_processing;Installation, guides, and scripts for processing radar scenes with ISCE;no_research;Python +https://github.com/BodoBookhagen/isce_setup;Installation and setup of ISCE and GIAnT;no_research; +https://github.com/BodoBookhagen/Lidar_PC_interpolation;Lidar Point-Cloud interpolation using computational efficient tools;no_research;Shell +https://github.com/BodoBookhagen/PC_dem_statistics;PointCloud (PC) DEM statistics;no_research;Python +https://github.com/BodoBookhagen/PC_geomorph_roughness;PointCloud (PC) statistics and roughness calculation for geomorphologic analysis;research;Python +https://github.com/BodoBookhagen/PointCloud-to-GMT;Plot a SfM or Lidar PointCloud (PC) with GMT 6;no_research; +https://github.com/BodoBookhagen/PointCloud_to_GMT_maps;From Point Clouds (PC) to GMT maps;no_research;Shell +https://github.com/BodoBookhagen/QuantitativeGeomorphology_IITGn;Workshop on Quantitative Geomorphology at IIT Gandhinagar (February 2020);no_research;Jupyter Notebook +https://github.com/Bostame/Bayesian-inference;;no_research;Jupyter Notebook +https://github.com/Bostame/Behavioral-Authentication-with-Machine-Learning;;no_research;Python +https://github.com/Bostame/capture-market-price-of-Binance;;no_research;JavaScript +https://github.com/Bostame/Dog-Breed-Classifier;;no_research;Jupyter Notebook +https://github.com/Bostame/Natural-Scenes-Classification;;no_research;Jupyter Notebook +https://github.com/Bostame/Predicting-Insurance-Purchases;;no_research;Jupyter Notebook +https://github.com/Bostame/python-to-connect-binance-api;;no_research;Python +https://github.com/Bostame/shareMaster;;no_research;Python +https://github.com/Bostame/Wild-Fire-Prediction;;no_research;Jupyter Notebook +https://github.com/boundter/Advent-of-Code-2021;;no_research;Python +https://github.com/boundter/DAAFi;Data Analysis and Administration for Finances;no_research;Python +https://github.com/boundter/dotfiles;;no_research;Shell +https://github.com/boundter/geclass;Administrative Interface for the G(erman)EClass at the University of Potsdam;no_research;Python +https://github.com/boundter/ising;Simulation of an Ising system for the Computational Physics Course @ University of Potsdam;no_research;Jupyter Notebook +https://github.com/boundter/kuramoto-sivashinsky;Simulation of the Kuramoto-Sivashinsky equation for the Computational Physics Course @ University of Potsdam;no_research;TeX +https://github.com/boundter/nonlinear_systems;Framework for solving ODEs;no_research;C++ +https://github.com/boundter/poster_simulated_annealing;Poster for the lab-course @ University of Potsdam;no_research;TeX +https://github.com/boundter/sam;S(ystem) A(nalysis) M(odule);no_research;C++ +https://github.com/boundter/scripts;Short and handy scripts;no_research;Shell +https://github.com/boundter/simulate_schroedinger;Simulation of the one-dimensional Schrödinger-equation for the Computational Physics Course @ University of Potsdam;no_research;Python +https://github.com/boundter/T8;Rework of the instruction to the Brownian motion experiment @ University of Potsdam;no_research;JavaScript +https://github.com/boundter/toolbox;A collection of useful tools;no_research;C++ +https://github.com/bptlab/active-chor-js;Extension of chor-js for blockchain-based active choreographies;no_research;JavaScript +https://github.com/bptlab/argos;Documentation for the Argos project.;no_research;JavaScript +https://github.com/bptlab/argos-backend;This is the repository for the argos backend server. The server controls and serves product, event type and event data for an event dashboard. It requires an Event Processing Platform, eg. Unicorn;no_research;Java +https://github.com/bptlab/argos-frontend;;no_research;JavaScript +https://github.com/bptlab/ark_automate;An open source RPA tool which uses BPMN to create bots.;no_research;JavaScript +https://github.com/bptlab/ark_automate_local;Execute robots build with ark_automate locally;no_research;JavaScript +https://github.com/bptlab/awesome-master-thesis;A curated list of awesome master thesis related things;no_research;TeX +https://github.com/bptlab/blockchain-choreography;Tamper proof collaborative modelling of choreograpy models based on distributed ledger technology.;no_research;TypeScript +https://github.com/bptlab/blockchain-deferred-choice;;no_research;JavaScript +https://github.com/bptlab/bookshelf-docs;;no_research;JavaScript +https://github.com/bptlab/bookshelf-frontend;;no_research;TypeScript +https://github.com/bptlab/bpi-challenge-2020;The purpose of this repository is to maintain code and text produced to analyze this year's BPI Challenge.;no_research;Jupyter Notebook +https://github.com/bptlab/bpic19;;no_research;Python +https://github.com/bptlab/bpm2019ws-fcm-compliance;Checking Compliance in Data-Driven Case Management;no_research; +https://github.com/bptlab/bpstruct;Archived code from old google code project;no_research;Java +https://github.com/bptlab/bpt-docker-zoo;Docker-compose file to easily deploy bpt lab applications Gryphon, Unicorn and Chimera;no_research;Smarty +https://github.com/bptlab/bpt-iot-website;;no_research;HTML +https://github.com/bptlab/bpt-resource-management;Automatically exported from code.google.com/p/bpt-resource-management;no_research;HTML +https://github.com/bptlab/caz;Generic adapter to handle communication between Unicorn and Third Party APIs;no_research;JavaScript +https://github.com/bptlab/cepta;CEPTA - Complex Event Processing Transportation Analysis;no_research;Java +https://github.com/bptlab/chimera;Chimera: Execution Engine for Case Management;no_research;JavaScript +https://github.com/bptlab/chimera-webservice-mock;Mocked Service to test Chimera Webservice Activitites;no_research; +https://github.com/bptlab/chor-checker;TLAplus based model checking framework for choreographies;no_research;TypeScript +https://github.com/bptlab/chor-checker-frontend;Frontend for the choreography model checking framework;no_research;JavaScript +https://github.com/bptlab/chor-js;An editor for BPMN 2.0 choreography diagrams based on bpmn-js;no_research;JavaScript +https://github.com/bptlab/chor-js-demo;A demo showcasing the chor-js BPMN 2.0 choreography diagram modeler.;no_research;JavaScript +https://github.com/bptlab/conceptual-bot-backend;;no_research;TypeScript +https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;;research;Jupyter Notebook +https://github.com/bptlab/correlation-analysis;"Code for the master thesis ""Deriving Decisive Case Characteristics in Process Performance Analysis"" by Jonas Beyer";no_research;Java +https://github.com/bptlab/data-based-process-variant-analysis;;no_research;Jupyter Notebook +https://github.com/bptlab/ds2020-data-driven-case-management-compliance;;no_research; +https://github.com/bptlab/fCM-Collection;A collection of fCM models;no_research; +https://github.com/bptlab/fCM-design-support;Modeling Tool with Design-Time Support for Fragment-Based Case Management;no_research;JavaScript +https://github.com/bptlab/fCM-Engine;An Execution Engine for fragment-based Case Management (fCM) based on Access/CPN;no_research;Java +https://github.com/bptlab/fCM-query-generator;;no_research;Vue +https://github.com/bptlab/fcm2cpn;;no_research;Java +https://github.com/bptlab/fiber2xes;This project contains a python utility intended to use EHR data coming from fiber to create .xes event logs.;no_research;Python +https://github.com/bptlab/gryphon;web-based modeler based on bpmn.io for fCM case models (to be executed by https://github.com/bptlab/chimera);no_research;HTML +https://github.com/bptlab/holistic-process-platform;A BPMN-based platform that combines BPMS and RPA.;no_research;Vue +https://github.com/bptlab/lola-webservice;A web service wrapper for LoLA 2.0 (Low-Level Analyzer for petri nets);no_research;PHP +https://github.com/bptlab/mantichor-corda;Corda R3 adapter for the Mantichor choreography framework ;no_research;Kotlin +https://github.com/bptlab/mantichor-frontend;Frontend for the Mantichor choreography framework;no_research;Vue +https://github.com/bptlab/mantichor-share;;no_research;TypeScript +https://github.com/bptlab/mantichor-tezos;Tezos adapter for the Mantichor choreography framework ;no_research;TypeScript +https://github.com/bptlab/MdRPA_Library;;no_research;RobotFramework +https://github.com/bptlab/mimic-log-extraction;A CLI tool for extracting event logs out of MIMIC Databases.;no_research;Python +https://github.com/bptlab/model-driven-RPA;Master Project 2023 | Model-driven RPA Bot Development;no_research;HTML +https://github.com/bptlab/odea-light;The purpose of this repository is to provide and maintain code to quantify, interpret, and configure ontology-based event abstraction for process mining.;no_research;Python +https://github.com/bptlab/onto-rpa-frontend;;no_research;Vue +https://github.com/bptlab/onto-rpa-platform;A meta repository for the components of the conceptual bot platform;no_research; +https://github.com/bptlab/orion;;no_research;Python +https://github.com/bptlab/relationships-between-change-patterns;;research;Jupyter Notebook +https://github.com/bptlab/rembrandt;A resource organization and resource usage optimization platform.;no_research;JavaScript +https://github.com/bptlab/rembrandt-backend;The back end for the Rembrandt Resource-Management-Platform.;no_research;TypeScript +https://github.com/bptlab/rembrandt-frontend;The front end for the Rembrandt Resource-Management-Platform.;no_research;Vue +https://github.com/bptlab/rpa-dmn-operation;This repo contains examples how DMN can be integrated in RPA tools.;no_research;C# +https://github.com/bptlab/scylla;Extensible BPMN process simulator;research;Java +https://github.com/bptlab/scylla-ui;UI visualizing results of the BPMN process simulator Scylla;no_research;TypeScript +https://github.com/bptlab/subscription-point-visualizer;Visualizes subscription points in bpmn choreography diagrams.;no_research;JavaScript +https://github.com/bptlab/Unicorn;Unicorn Event Processing Platform;no_research;Java +https://github.com/bptlab/wiki-resources;;no_research;JavaScript +https://github.com/braunfuss/beirut-explosion-insar-yield;;no_research;Jupyter Notebook +https://github.com/braunfuss/BNN-MT;"Bayesian Machine learning based full seismic Moment Tensor estimation example for JGR submission ""Estimation of seismic moment tensors using variational inference machine learning""";no_research;Jupyter Notebook +https://github.com/braunfuss/branch-unwrapping-gmtsar;branch unwrapping for gmtsar outputs in octave with one sided unwrapping convention;no_research;Matlab +https://github.com/braunfuss/eq-distribution-ml;Basic foreshock-aftershock-distribution pattern machine learning with tensorflow;no_research;Python +https://github.com/braunfuss/laquila_kite_container;;no_research; +https://github.com/braunfuss/Palantiri;Seismological Backprojection array tool;no_research;Python +https://github.com/braunfuss/shake;;no_research;Python +https://github.com/braunfuss/SHM_scripts;;no_research;Python +https://github.com/braunfuss/silvertine;;no_research;Jupyter Notebook +https://github.com/braunfuss/thermalintertia;Optimize for real thermal inertia from two differential thermal images;research;Matlab +https://github.com/braunfuss/weathertop;Prior information extraction from near-field surface displacement data;no_research;Python +https://github.com/brechtknecht/.dotfiles;My Personal dotfiles;no_research;Shell +https://github.com/brechtknecht/advent-of-code;;no_research;JavaScript +https://github.com/brechtknecht/Blender-Three-Vue.js-Template;;no_research;Vue +https://github.com/brechtknecht/FabmobilMap;Created with CodeSandbox;no_research; +https://github.com/brechtknecht/FHP-Applaus;Website of the final theses of the graduates of the University of Applied Sciences Potsdam in the department of design.;no_research;PHP +https://github.com/brechtknecht/FHP-Kursplaner;The official class-planner for the design department 🚀 — University of Applied Sciences Potsdam (FHP);no_research;Vue +https://github.com/brechtknecht/FHP-Speiseplan-Telegram-Bot;A Telegram Bot for the Mensa Kiepenheueralle of the University of Applied Sciences Potsdam. 🧁;no_research;JavaScript +https://github.com/brechtknecht/Figjam-Device-Frames-Widget;;no_research;JavaScript +https://github.com/brechtknecht/holytrinity;;no_research; +https://github.com/brechtknecht/influut.js;Inluut is an JavaScript Library wich adds cool color Transition effects to your Pages.;no_research;CSS +https://github.com/brechtknecht/komet;;no_research;CSS +https://github.com/brechtknecht/Minutemen;A Flutter testapp;no_research;Dart +https://github.com/brechtknecht/purple-fox-tokens;;no_research; +https://github.com/brechtknecht/python-pdf-rotate-n-print;A tiny python script, that will take single pages and rotates every odd page and exports everything on one sheet;no_research;Python +https://github.com/brechtknecht/Radeberger-Wichtel;;no_research;PHP +https://github.com/brechtknecht/REST-API-Passphrase-Authentication;This small API can generate Passphrases for Users to authenticate and get/update data from a JSON database via secure JWT webtokens.;no_research;JavaScript +https://github.com/brechtknecht/sollteicheinbiertrinkenApp;;no_research;Objective-C +https://github.com/brechtknecht/starter-kit-webpack-babel-liveserver;A starter Kit wich features ES6 with Babel and Webpack powered by an automaitc refreshing dev-server;no_research;JavaScript +https://github.com/brechtknecht/SwiftUI-Tasker-Database-Demo;Demo Application for Realm Databases for a class called »Neue Softwaregestaltung+« at Fachhochschule Potsdam;no_research;Swift +https://github.com/brechtknecht/SwiftUI.Cru;A prototype for a digital planning tool for musicians. Built with SwiftUI.;no_research;Swift +https://github.com/brechtknecht/throw.sketchplugin;An open-souce alternative to confetti.sketchplugin ☄️;no_research;JavaScript +https://github.com/brechtknecht/umbrella;Weather app wich recommends you the perfect clothing;no_research;JavaScript +https://github.com/brechtknecht/Waste-the-Planet-Survey;Eine Interaktive Informationsvisualisierung zum Thema »Müll & Müll im Meer«. Aus dem Kurs »Storytelling with Data« an der Fachhochschule Potsdam;no_research;Vue +https://github.com/briemadu/codraw-icr-v1;;research;Jupyter Notebook +https://github.com/briemadu/evalNLP;University of Potsdam;no_research;HTML +https://github.com/briemadu/evalNLP-22;;no_research;HTML +https://github.com/briemadu/inc-bidirectional;;research;Python +https://github.com/briemadu/inc-eval-revisions;Framework for evaluation of edits and revisions in incremental sequence labelling.;research;Jupyter Notebook +https://github.com/briemadu/mathLM;;no_research;HTML +https://github.com/briemadu/rl4nlp;Universität Potsdam;no_research;HTML +https://github.com/briemadu/science-and-research;;no_research;HTML +https://github.com/briemadu/scorekeeping;;research;Jupyter Notebook +https://github.com/CaptainUnbrauchbar/asp-assignments;;no_research;Prolog +https://github.com/CaptainUnbrauchbar/asp-language-support;;no_research;JavaScript +https://github.com/CaptainUnbrauchbar/assembly-projects;32bit MIPS Assembly;no_research;Assembly +https://github.com/CaptainUnbrauchbar/cellular-automaton;Just an experiment;no_research;C +https://github.com/CaptainUnbrauchbar/processing-stuff;;no_research;Processing +https://github.com/CaptainUnbrauchbar/programming-assignments;;no_research;Python +https://github.com/CaptainUnbrauchbar/python-math;;no_research;Python +https://github.com/CaptainUnbrauchbar/random-stuff;;no_research;SQF +https://github.com/ChrisYanLuc/Fragebogen-Tabelle;Project for the Physics-Didaktiv Institution of the University of Potsdam;no_research;JavaScript +https://github.com/ClemensKubach/bicycle-bell-sed-models;;research;Jupyter Notebook +https://github.com/ClemensKubach/bicycle-bell-sed-pipeline;;no_research;Jupyter Notebook +https://github.com/ClemensKubach/bicycle-bell-sed-software;;no_research;Python +https://github.com/ClemensKubach/star-galaxy-segmentation;;no_research;Jupyter Notebook +https://github.com/ClemensKubach/vae-art-restoration;;research;Jupyter Notebook +https://github.com/crpiceda/dynamictopography;Lab exercise on dynamic topography for Neotectonics and Geodynamics course at University of Potsdam;research; +https://github.com/crpiceda/PythonScripts;Python scripts to plot, manipulate and/or analyze data;no_research;Python +https://github.com/cslm-lab/.github;;no_research; +https://github.com/cslm-lab/cognitive_skills;Experiment 2 from SFB Phase 1;no_research;TeX +https://github.com/cslm-lab/pcibex;Python and R scripts to make pre-processing of data collected with Prolific/PCIbex easier;no_research;Python +https://github.com/cslm-lab/reliability;reliability;no_research;HTML +https://github.com/cslm-lab/reliability_project;reliability_project;no_research;HTML +https://github.com/ctiedt/bfrs;A brainfuck/Blub interpreter in Rust;no_research;Rust +https://github.com/ctiedt/cranefuck;;no_research;Rust +https://github.com/ctiedt/ctiedt;;no_research; +https://github.com/ctiedt/documentor;Einfaches Dokumentationstool, das ursprünglich für Rogue Inc. gedacht war. Generiert API-Dokumentationen aus Python-Code.;no_research;Python +https://github.com/ctiedt/dotfiles;My dotfiles for linux;no_research;Shell +https://github.com/ctiedt/dwm;My personal patched dwm;no_research;C +https://github.com/ctiedt/dwmstat-rs;;no_research;Rust +https://github.com/ctiedt/egui_wasm_editor;;no_research;Rust +https://github.com/ctiedt/fibonacci;;no_research;Rust +https://github.com/ctiedt/flutter_md_slides;;no_research;Dart +https://github.com/ctiedt/greenscream;;no_research;TypeScript +https://github.com/ctiedt/hpi-mathe2;Ein Versuch, das Skript zur Vorlesung 'Mathematik II' am Hasso-Plattner-Institut zugänglicher zu machen.;no_research;TeX +https://github.com/ctiedt/hpi_lv_crawler;;no_research;Python +https://github.com/ctiedt/influx_client;A Rust library to interact with InfluxDB;no_research;Rust +https://github.com/ctiedt/interruptable_function;;no_research;Rust +https://github.com/ctiedt/kanban_flutter;A simple kanban board built using flutter;no_research;Dart +https://github.com/ctiedt/make-rs;;no_research;Rust +https://github.com/ctiedt/mathe-vorkurs;Notizen zum Mathe-Vorkurs am HPI WS2018/19;no_research;HTML +https://github.com/ctiedt/meeting-notifier;;no_research;Rust +https://github.com/ctiedt/minimal-rust-km;A minimal kernel module using Rust;no_research;Makefile +https://github.com/ctiedt/ramfs-loadable-module;The ramfs file system with comments as a loadable kernel module;no_research;C +https://github.com/ctiedt/rasta-rs;;no_research;Rust +https://github.com/ctiedt/rasta-sys;;no_research;Rust +https://github.com/ctiedt/retry;;no_research;Rust +https://github.com/ctiedt/revpi-tools-rs;;no_research;C +https://github.com/ctiedt/rogue-inc;Informatikprojekt Q4 2018 von Felix Bachstein, Clemens Tiedt und Jonas Tresper;no_research;Python +https://github.com/ctiedt/rsramfs;A Rust Port of the ramfs file system;no_research;Rust +https://github.com/ctiedt/service_levels;;no_research;Rust +https://github.com/ctiedt/sonic-nodes;;no_research;Rust +https://github.com/ctiedt/steam_crawler;;no_research;Rust +https://github.com/ctiedt/studypoints;An app to help overcome procrastination;no_research;Dart +https://github.com/ctiedt/swsl;;no_research; +https://github.com/ctiedt/tangible_soundscape;;no_research;Rust +https://github.com/ctiedt/temperature-example;;no_research;Rust +https://github.com/ctiedt/tome;;no_research;Rust +https://github.com/ctiedt/vcost-prototypes;;no_research;Python +https://github.com/ctiedt/voronoi;A simple Voronoi implementation in Rust;no_research;Rust +https://github.com/ctiedt/vosk-voice-assistant;;no_research;Python +https://github.com/ctiedt/wrapgen;;no_research;Rust +https://github.com/dagtann/auditPoster;Postergrafiken für das DD Beiratsaudit vom 12./13. November 2016;no_research;R +https://github.com/dagtann/blog;;no_research;R +https://github.com/dagtann/boardgames;Analysis of Gabriele Baldassarre's Board Game Dataset;no_research;Python +https://github.com/dagtann/datasciencecoursera;;no_research;HTML +https://github.com/dagtann/esDigitalCareerDay;;no_research; +https://github.com/dagtann/hardTimes;"Replication materials for ""Hard Times and Regime Failure. Autocratic Responses to Economic Downturns""";research;R +https://github.com/dagtann/hrplanner;Track staff availability;no_research; +https://github.com/dagtann/hrps_conflict;Follow up on Cingranelli's and Filippov's critique of Fariss' & Schnakenberg's HRPS;no_research;R +https://github.com/dagtann/hrps_v1;Experimenting with Bayesian IRT modeling based on the Human Rights Protection Scores v1;no_research;R +https://github.com/dagtann/kk2r;Convert example code in Kohler/Kreuter (2017): Datenanalyse mit STATA. 5th ed. Berlin/Boston: Walter de Gruyter to R.;no_research;Stata +https://github.com/dagtann/kruschke2;Exercises and solutions for Kruschke, Doing bayesian data analysis, 2nd edition;no_research;R +https://github.com/dagtann/learning;Snippets and exercises from various textbooks on programming, statistical modelling, and simulation;no_research;HTML +https://github.com/dagtann/legitdev;"Replication package for ""Autokratische Regimelegitimation und soziale Entwicklung""";no_research;R +https://github.com/dagtann/lpthw;Learning Python;no_research;Python +https://github.com/dagtann/mleMidterm;Implement OLS in R;no_research;R +https://github.com/dagtann/mleTermpaper;Replication project for my MLE class at Duke University;no_research;TeX +https://github.com/dagtann/pcqr;"Materials for the two-day workshop ""Introduction to R"" at University of Potsdam, Germany";no_research; +https://github.com/dagtann/pecs;;no_research;R +https://github.com/dagtann/random-data-tables;Created with StackBlitz ⚡️;no_research;Svelte +https://github.com/dagtann/reproducibleResearch;Draft for Reproducible Workflows in Social Science;no_research;TeX +https://github.com/dagtann/stabilityAtr;"Graphs and algorithms for the research project ""Critical Junctures and the Survival of Dictatorships. Explaining the Stability of Autocratic Regimes""";no_research;R +https://github.com/dagtann/svelte-feedback-app;;no_research; +https://github.com/dagtann/teaching;Bits and pieces for teaching;no_research;TeX +https://github.com/dagtann/timeR;Time Tracking, done Shiny;no_research;R +https://github.com/dagtann/vizTricks;This repo holds case studies and tutorials on data visualization using R.;no_research;HTML +https://github.com/dagtann/wimaCareer;Case study material that exemplifies our inhouse data science philosophy;no_research;R +https://github.com/damariszurell/4D-niche-overlap;Codes for: Zurell D, Gallien L, Graham CH, Zimmermann NE (2018) Do long-distance migratory birds track their niche through seasons? Journal of Biogeography 45: 1459-1468.doi: 10.1111/jbi.13351;research;R +https://github.com/damariszurell/CLEWS-EDB;Practicals for the CLEWS-Master module Ecosystem Dynamics and Biodiversity;no_research;HTML +https://github.com/damariszurell/EEC-Macro;"R practicals for the course ""Macroecological analyses"" at Univ. Potsdam";no_research; +https://github.com/damariszurell/EEC-MGC;;no_research;HTML +https://github.com/damariszurell/EEC-QCB;;no_research;HTML +https://github.com/damariszurell/EEC-R-prep;;no_research;HTML +https://github.com/damariszurell/EEC-SDM;"The course **Introduction to species distribution modelling*** is part of the Master module ""Macroecology and global change"" in the Master programme ""Ecology, Evolution and Conservation (EEC)"" at the University of Potsdam. ";no_research; +https://github.com/damariszurell/EFForTS-workshop-2023;Upscaling workshop CRC-990 EFForTS Göttingen 14-Feb-2023;no_research;R +https://github.com/damariszurell/IBM_OptimalForaging;C++ source code for the individual-based model of optimal foraging in white storks introduced in Zurell et al. (2015) Oikos. The model predicts the spatial structure and breeding success of white stork populations in heterogeneous landscapes by explicitly simulating foraging behaviour and home range formation of individuals competing for resources. Because resource depletion is modelled explicitly, the model can predict the maximum carrying capacity of white stork breeding populations in different landscapes, and density-dependent breeding success by inducing fixed stork density levels below carrying capacity. Different behavioural options for the optimal foraging routine and the home range optimisation can be made, and the model also allows tracking individual movement paths. Please note that the code is not optimised for custom use. For any questions, please feel free to contact me via email.;no_research;C++ +https://github.com/damariszurell/RangeshiftR-tutorial;This tutorial will introduce the main features of the new R package RangeShiftR. Examples follow those provided in the original RangeShifter publication (Bocedi et al. 2014): https://doi.org/10.1111/2041-210X.12162.;no_research; +https://github.com/damariszurell/Rcodes_MapNovelEnvironments_SDMs;Inflated response curves and environmental overlap masks for species distribution models SDMs (R codes). Here you can download the R codes for inflated SDM response curves and environmental overlap masks introduced in Zurell et al. (2012) DDI. These simple functions facilitate visualisation of multi-dimensional SDM response and of model extrapolations to novel (=unsampled) environments. Inflated response curves are an extension of conventional partial dependence plots that show the effects of one variable on the response while accounting not only for the average effects of all other variables but also for minimum and maximum (and median and quartile) values. Thus, they are basically an abstracted 2D version of the multidimensional response surfaces. Their advantages are that (1) they are explicit about the shape of the response at different values of all other variables, and (2) make the responses clear if interactions are (implicitly or explicitly) included in SDMs. Environmental overlap masks compare two datasets (sampled data and prediction data, e.g. climate change scenario or different geographical area) and identify novel environments, meaning both environmental conditions beyond the sampled ranges of the single variables and novel combinations of environmental variables. ;no_research;R +https://github.com/damariszurell/SDM-Intro;Introduction to species distribution modelling;no_research;HTML +https://github.com/damariszurell/SSDM-JSDM;Codes for Zurell et al. (2020) Testing species assemblage predictions from stacked and joint species distribution models. Journal of Biogeography 47: 101-113. DOI: 10.1111/jbi.13608.;research;R +https://github.com/DanieleMaselli/gestalten-in-code;;no_research; +https://github.com/DanieleMaselli/Houdini_Python;;no_research;Python +https://github.com/DanieleMaselli/Interacting-with-the-canvas-Web-Audio-API;;no_research;JavaScript +https://github.com/DanieleMaselli/Robot__me;;no_research; +https://github.com/danieljanko98/IADL_post-DBS_longitudinal;;no_research;R +https://github.com/danielrm84/DeepLearning_AnimalVocalizations;This repository includes deep learning models I have developed during my postdoc in Hannover to process mouse lemur vocalizations data. They are in the form of jupyter notebooks. The first model is a binary classification problem intented to remove unwanted noise from the database. The second one is a multiclass supervised classification problem that classifies the data according to predefined categories;research;Jupyter Notebook +https://github.com/danielrm84/Fixed-Zotero-styles;This repository has zotero styles that I have modified to fix some inconsistencies. I have not created the full code, I have just modified specific lines. The original files can be found at https://www.zotero.org/styles;no_research; +https://github.com/danielrm84/My-CNC-Remastered-mods;Here you can find and download the mods I have created for command and conquer remastered. If you would like to use the material for own projects, please give the corresponding credits. Many thanks in advance!;no_research;C++ +https://github.com/danielrm84/Netlogo_Map_Generator;This is a map generator of artificial landscapes for Netlogo. It can be used to create scenarios of fragmented landscapes (habitat suitability maps);research;NetLogo +https://github.com/danielrm84/PanModel33;Hello! this is an eco-evolutionary model that I developed together with my colleagues Sandra Kahl, Sophia Paraskevopoulou, and Remco Folkertsma, as part of my PhD at the University of Potsdam, Germany. It was designed for theory development, communication and learning.;research;NetLogo +https://github.com/danielrm84/Romero-Mujalli-et-al.-BMC-Evolutionary-Biology;This repository contains the data used for the paper in BMC Evolutionary Journal. For this project we used an extended version of the PanModel33 to simulate the evolution of the mutation rate. The PanModel33 can be found in its own repository (see my github repositories);research;NetLogo +https://github.com/danielrm84/Social-Learning-Project-Robotics;This repository contains the simulator I created and used for my research on social learning during my Master studies at the Simon Bolivar University in Venezuela. It consists of individual agents or robots navigating the arena and finding the target feeding patch. The movement behavior of each robot is governed by artificial neural networks (AI). The full simulator is programmed in C++ and can be visualized on Netlogo (optional).;research;C++ +https://github.com/danielrm84/tihoCluster;This R package contains the function (KmeansElbow) used by Langehennig-Peristenidou, Romero-Mujalli et al to automate the categorization of mouse lemur calls (unsupervised cluster analysis);no_research;R +https://github.com/danielrm84/Unsupervised-Clustering;This repository contains 1) a custom R function to automatically find the optimal number of clusters based on the k-means model;no_research; +https://github.com/daqinghou/BEM;Building Energy Modeling (NYSERDA);no_research; +https://github.com/daqinghou/lab1;;no_research;Java +https://github.com/DavidLeonhard/github-slideshow;A robot powered training repository :robot:;no_research;Ruby +https://github.com/davidschlangen/cosine-paris;"Material for the ""Concepts, Composition, and Conversational Coordination"" Lecture Series, Paris 2019";no_research; +https://github.com/delwarhub/Advanced-Natural-Language-Processing-2022;;no_research; +https://github.com/delwarhub/Android-App-for-Health-Management-System;Android App for Health Management System;no_research; +https://github.com/delwarhub/ANLP-2021;;no_research;Jupyter Notebook +https://github.com/delwarhub/Bayesian-Statistical-Inference-ML-2;;no_research;Stan +https://github.com/delwarhub/Current-Highlights-in-NLP;A seminar course ;no_research; +https://github.com/delwarhub/delwarhub;My personal repository.;no_research; +https://github.com/delwarhub/Docker-and-Kubernetes-The-Complete-Guide;Docker and Kubernetes: The Complete Guide;no_research; +https://github.com/delwarhub/How-to-Perform-Logistic-Regression-in-Python;In this short lesson, I will show you how to perform Logistic Regression in Python. This would be very easy. An you will have all the codes.;no_research;Jupyter Notebook +https://github.com/delwarhub/Intelligent-Data-Analysis-Machine-Learning;;no_research; +https://github.com/delwarhub/Introduction-to-Python;;no_research;Jupyter Notebook +https://github.com/delwarhub/Language_Task_and_Feature_Attribution_Analysis;;no_research;Python +https://github.com/delwarhub/Lightweight_Approach_to_Legal_NER;;no_research;Python +https://github.com/delwarhub/Linear-Regression-Car-Driving-Risk-Analysis;Linear Regression Car Driving Risk Analysis based on car speed;no_research;Jupyter Notebook +https://github.com/delwarhub/Linear-Regression-in-Practice-Home-Price-Predict;Predict Simple Home prices based on area in square feet. ;no_research;Jupyter Notebook +https://github.com/delwarhub/Linear-Regression-Model-for-Advertising-Data;Linear Regression Model for Advertising Data;no_research;Jupyter Notebook +https://github.com/delwarhub/Linear-Regression-with-Multiple-Variable-Car-Risk-Analysis;Linear Regression with Multiple Variable Car Risk Analysis;no_research;Jupyter Notebook +https://github.com/delwarhub/Machine-Learning-Algorithms;;no_research;Jupyter Notebook +https://github.com/delwarhub/Matplotlib-Example-Linear-and-Polynomial-Regression-Decision-Tree-Train-Test;In this code you will get the following examples: 1.Matplotlib Example 2.Data Distribution 3.Scatter Plot 4.Linear Regression 5.Polynomial Regression 6.Train/Test 7.Decision Tree;no_research;Jupyter Notebook +https://github.com/delwarhub/Multimodal_Task_and_Feature_Attribution;;research;HTML +https://github.com/delwarhub/Multimodal_Task_with_Prompting_Large_Language_Models;;research;Jupyter Notebook +https://github.com/delwarhub/Natural-Language-Processing-Examples;Natural-Language-Processing Examples;no_research;Jupyter Notebook +https://github.com/delwarhub/Project_Module_Tree_Algorithms;;no_research;Jupyter Notebook +https://github.com/delwarhub/Python-Course;All in One Python;no_research;Jupyter Notebook +https://github.com/delwarhub/R-Basic-Programming;R Basic Programming;no_research; +https://github.com/delwarhub/School-Management-System-Using-Python-and-MySQL;;no_research;Python +https://github.com/delwarhub/SeleniumTest;Selenium with Python Script for Automation Testing;no_research;Python +https://github.com/delwarhub/Sentiment-Analysis-of-Tweet-Data-Using-R-;Programming Language: R Tools: R Studio Final Year Project of M. Sc in Computer Science. Jahangirnagar University. Dhaka Bangladesh. ;no_research;R +https://github.com/delwarhub/Snipe-IT-Open-Source-Asset-Management-;;no_research; +https://github.com/delwarhub/Spam-Classifier;Spam Classifier;no_research;Jupyter Notebook +https://github.com/delwarhub/Text-Analytics-for-Beginners-using-NLTK;;no_research;Jupyter Notebook +https://github.com/delwarhub/Tweeter-Sentiment-Analysis;Tweeter Sentiment Analysis;no_research;Jupyter Notebook +https://github.com/Deux9/bookprynt;Program that outputs the correct page order to print a booklet where one sheet of paper forms the cover and back of the book;no_research;Python +https://github.com/Deux9/LateX-UP;LaTeX - Vorlage für Hausarbeiten an der Universität Potsdam;no_research;TeX +https://github.com/Deux9/myhome;;no_research;HTML +https://github.com/Deux9/runtumble;little simulation of a run and tumble movement;no_research;Python +https://github.com/Deux9/sturzbecher_ss_2015;"Dieses Repository enthält alle Lernunterlagen für die Vorlesung ""Theoretische und empirische Grundlagen der Jugend- und Familiensoziologie"" an der Uni Potsdam im Sommersemester 2015";no_research;HTML +https://github.com/Deux9/toxsync;Sync tox accounts across multiple devices. Only one active device will work.;no_research;Shell +https://github.com/Diego-Dam/Diego-Dam;Config files for my GitHub profile.;no_research; +https://github.com/Diego-Dam/paper_co_creation_mobility_planning_germany;"This repository provides the scripts and data for recreating the results documented by Michelini G., Dametto D., & Michel in the paper ""Participation to co-creation: methods for the involvement of stakeholders in mobility planning in Germany""";research;Jupyter Notebook +https://github.com/Diego-Dam/radon-targeting-analysis;This repository provide the analysis scripts and the data from the radon online targeting experiment;no_research;Jupyter Notebook +https://github.com/Diego-Dam/SmartUpLab-Tools-FH-Potsdam;The repository provide the code for the tools and the models developed as part of the SmartUpLab project at the University of Applied Science Potsdam (May 2019 - August 2022);no_research;GAML +https://github.com/Disc0erg0sum/stream;;no_research;HTML +https://github.com/Disc0erg0sum/TheTimeMachine;This is a project created by Pascal Struck and Jendrik Bradaczek as part of the course „Zeitmaschine“ by Prof. Boris Müller at the University of Applied Sciences Potsdam during the winter semester 20/21.;no_research;JavaScript +https://github.com/discourse-lab/arg-microtexts-part2;An annotated corpus of argumentative microtexts - Part 2;no_research; +https://github.com/discourse-lab/chinese-dimlex;A lexicon of Chinese discourse connectives;no_research;Python +https://github.com/discourse-lab/conflict-annotation-guidelines;Annotation guidelines for annotating Conflicts in the UN Security Council. ;no_research; +https://github.com/discourse-lab/Connective-Lex.info;A web app for a multilingual connective database.;no_research;JavaScript +https://github.com/discourse-lab/dimlex;A Lexicon of German discourse markers;research;XSLT +https://github.com/discourse-lab/DiMLex-Bangla;DiMLex Bangla is a lexicon of Bangla discourse connectives;no_research; +https://github.com/discourse-lab/DisCoDict;A Dictionary of Dutch Discourse Connectives;research; +https://github.com/discourse-lab/DiscourseSegmenter;A collection of various discourse segmenters;no_research;Python +https://github.com/discourse-lab/en_dimlex;A Lexicon of English discourse markers;no_research; +https://github.com/discourse-lab/GraPat;A tool for graph annotations;no_research;JavaScript +https://github.com/discourse-lab/naijalex;Nigerian Pidgin Connective Lexicon;no_research; +https://github.com/discourse-lab/pocores;coreference resolution for German;research;Python +https://github.com/discourse-lab/russian-dimlex;A lexicon of Russian discourse connectives;no_research; +https://github.com/discourse-lab/turkish_connective_lexicon;;no_research; +https://github.com/domoritz/arrow-6-7-perf-test;;no_research;JavaScript +https://github.com/domoritz/arrow-browser-bundle-test;;no_research;JavaScript +https://github.com/domoritz/arrow-deno;Deno wrapper for Apache Arrow;no_research;TypeScript +https://github.com/domoritz/arrow-rollup;repo to demonstrate an issue;no_research;JavaScript +https://github.com/domoritz/arrow-tools;A collection of handy CLI tools to convert CSV and JSON to Apache Arrow and Parquet;no_research;Rust +https://github.com/domoritz/arrow-wasm;Apache Arrow in WebAssembly;no_research;Rust +https://github.com/domoritz/assign-projects;Logic ASP program to calculate optimal placement of students in projects depending on a per student ranking.;no_research;Python +https://github.com/domoritz/backbone-eventdata;This small backbone plugin allows you to pass eventData to your actions;no_research;JavaScript +https://github.com/domoritz/beacon;React to beacons;no_research;Java +https://github.com/domoritz/bias-study;App to run study about bias as a result of exposure to incorrect data;no_research;TeX +https://github.com/domoritz/bob-was-here;bob was here;no_research;Python +https://github.com/domoritz/breakfast;Friday breakfast;no_research;JavaScript +https://github.com/domoritz/cdr;data analysis scripts;no_research;Python +https://github.com/domoritz/ckanext-krzn;Custom CKAN extension for KRZN;no_research;Python +https://github.com/domoritz/clasp-pb;Fork of clasp from potassco with support for pseudo boolean constraint learning;no_research;C++ +https://github.com/domoritz/clingo-wasm;Clingo on the web;no_research;TypeScript +https://github.com/domoritz/CSE512-reports;Reports for CSE 512;no_research;TeX +https://github.com/domoritz/CSE552-Proposal;Project proposal for course CSE 552;no_research;TeX +https://github.com/domoritz/csv2arrow;Convert CSV files to Apache Arrow.;no_research;Rust +https://github.com/domoritz/csv2parquet;Convert CSV files to Apache Parquet.;no_research;Rust +https://github.com/domoritz/D3-App-Template;A template for an interactive web application with D3;no_research;TypeScript +https://github.com/domoritz/datafusion-wasm;;no_research;Rust +https://github.com/Dudderle/mueller-lyer-illusion;"Projektabgabe des Kurses ""Multimedia-Technologie"" der Universität Potsdam";no_research; +https://github.com/Dudderle/Unity-Breakout-Tutorial;;no_research;ShaderLab +https://github.com/e-zolotarevskaya/Ancillary_services_SP;;no_research;Jupyter Notebook +https://github.com/edward-loves-github/creativeChatbot;I am working on a research project that has the aim to create a chatbot that improves your creativity.;no_research; +https://github.com/eileenkammel/AdventOfCode22;;no_research;Python +https://github.com/eileenkammel/AoC2021;;no_research;Go +https://github.com/eileenkammel/Approximate_String_Matching;Approximate String Matching using Burkhard-Keller-Trees;no_research;Python +https://github.com/eileenkammel/EventCal;Slot-Filling Skill for Furhat;no_research;Kotlin +https://github.com/ekaterinailin/AltaiPony;Find flares in Kepler and TESS light curves. Notebooks for quickstart inside.;research;Jupyter Notebook +https://github.com/ekaterinailin/aumic-flaring-spi;;no_research; +https://github.com/ekaterinailin/code-review-up;The University of Potsdam Code Review Group shares their code here.;no_research;Python +https://github.com/ekaterinailin/dustycrocodile;Hack HPI about://environment EU: Digging into European Union Open Data Portal for Water Use ;no_research;HTML +https://github.com/ekaterinailin/ekaterinailinCV;;no_research;TeX +https://github.com/ekaterinailin/exoplanets-seminar;"Useful calculations for the ""Exoplanet detection, formation and evolution"" seminar run @ Uni Potsdam.";no_research;Jupyter Notebook +https://github.com/ekaterinailin/flare-locations-ensembles;;no_research;TeX +https://github.com/ekaterinailin/flare-locations-ensembles-science;;research;Python +https://github.com/ekaterinailin/flares-in-clusters-ii-draft;Paper draft corresponding to the project;no_research;TeX +https://github.com/ekaterinailin/flares-in-clusters-with-k2-ii;Here tables, analysis code, additional information, and ancillary plots for Ilin+2020 (in prep.) are stored. ;no_research;Jupyter Notebook +https://github.com/ekaterinailin/flares-q-learning;Mapping detected flares in TESS and Kepler light curves to the underlying flare event via injection-recovery with Q-learning;no_research;Jupyter Notebook +https://github.com/ekaterinailin/flaring-spi;;research;Jupyter Notebook +https://github.com/ekaterinailin/flaring-spi-paper;Flaring SPI paper including all TESS and Kepler confirmed transiting planets;no_research;TeX +https://github.com/ekaterinailin/GaiaK2PSF;PSF photometry on K2 with Gaia centroids;no_research;Jupyter Notebook +https://github.com/ekaterinailin/k2-panstarrs-sampedro;Matching catalogs for cluster samples.;no_research;Jupyter Notebook +https://github.com/ekaterinailin/lean-site-template;Static site template for EA local group website;no_research; +https://github.com/ekaterinailin/MalachiteMountains;;no_research;Python +https://github.com/ekaterinailin/multiperiod-flares-draft;Paper draft for Malachite Mountains;no_research;TeX +https://github.com/ekaterinailin/my-first-blog;Personal blog: Astrophysics, Effective Altruism.;no_research;Python +https://github.com/ekaterinailin/Orbital_Flare_Declustering;Orbital phase flare de-clustering in close-in star-planet systems;research;Jupyter Notebook +https://github.com/ekaterinailin/plots-of-the-week;Weekly science plots.;no_research;Jupyter Notebook +https://github.com/ekaterinailin/SiberianPine;Analyse statistical samples of stellar flares.;no_research;Jupyter Notebook +https://github.com/ekaterinailin/TESS-UCD-Paper-1;;no_research;TeX +https://github.com/ekaterinailin/TESS_UCD_flares;Find and analyse flares in TESS UCD light curves;research;Jupyter Notebook +https://github.com/ekaterinailin/tic277;;no_research;Python +https://github.com/ekaterinailin/xmm-flareloci-proceedings-2021;;no_research;TeX +https://github.com/ekaterinailin/xmm_for_tic277;XMM-Newton follow-up of TIC 277, an M7 dwarf with a near-polar giant flare;no_research;TeX +https://github.com/everornever/Personal-Website;My first personal wbesite;no_research;HTML +https://github.com/everornever/Project-Air;This project involves a compact cube made of various components to measure and display indoor air quality.;no_research;C++ +https://github.com/everornever/React-Website;This is a personal portfolio Website I created with react. It is not my main website and was only a small project I did for university. ;no_research;JavaScript +https://github.com/everornever/SimpleFit-Website;A simple website for my iOS Fitness App;no_research; +https://github.com/everornever/WRIP;WRIP is short for Weather Road Trip and is a React based Website with a Google Maps API that shows you specific places on a Map with the corresponding weather Information;no_research;JavaScript +https://github.com/ezair/Autograding-System;Web application (using django, docker, bootstrap, gradle, etc...) that compares student submitted assignments to test cases and produces the success rate.;no_research;Python +https://github.com/ezair/Average-Statistics-GUI;Contains Average.exe, a program that calculate mean, median, and mode using C# and microsoft .net framework to make a gui;no_research;C# +https://github.com/ezair/Bank-Account-Mongo-Fun;Just having fun testing out the mongodb C++ api. Using bank account records as an example.;no_research; +https://github.com/ezair/Beat-Saber-Song-Scrapper;A quick way to download beatsaber custom songs.;no_research;Python +https://github.com/ezair/Chocolate-Rating-Prediction;Predicting the rating 1.0 - 5.0 of a given chocolate bar, based off of X features.;no_research;Jupyter Notebook +https://github.com/ezair/CNN-Number-Classification;0 - 9 number classification on the MNIST dataset using a custom trained CNN;no_research;Python +https://github.com/ezair/Covid-19-Data-Analysis;Data Analysis done on a dataset containing columns about covid-19 cases over the course of time.;no_research;Jupyter Notebook +https://github.com/ezair/Crytrography-Ciphers;This repository contains a bunch of different class files for different cryptographic ciphers.;no_research;Python +https://github.com/ezair/Database-Project;Database project. Contains a website that links to a local server. A game made in UE4 also connects to database.;no_research;JavaScript +https://github.com/ezair/DataStructures;This is a collection of Data Structures that I created.;no_research;Java +https://github.com/ezair/Detecting-Prostate-Cancer;Repo containing code on creating a dataset for detecting prostate cancer.;no_research;Python +https://github.com/ezair/Encrypted-Chat-Program;The purpose of this project was to create a peer to peer 2 person encrypted chat program using both AES and Elgamal key exchange;no_research;Python +https://github.com/ezair/Grading-Scripts;This repository contains a collection of python scripts used for grading SUNY Potsdam computer science assignments.;no_research;Python +https://github.com/ezair/Iris-Species-Classification;Code for classifying the species of an iris flower using KNN supervised machine learning.;no_research;Jupyter Notebook +https://github.com/ezair/Kings;This is a python2 program for the purpose of playing the kings card game on any given device.;no_research;Python +https://github.com/ezair/Linear-Regression-Practice;Practice linear regression from scratch and then using Turicreate. ;no_research;Jupyter Notebook +https://github.com/ezair/Logistic-Regression-Classification;Classification using logistic regression on Amazon data. (check out py notebook file for details).;no_research;Jupyter Notebook +https://github.com/ezair/Machine-Learing-Practice;This will contain a few seperate machine learning programs. Each program will for the purpose of practice and nothing more.;no_research; +https://github.com/ezair/Multiple-Linear-Regression;My own implementation of multiple linear regression from scratch (using numpy).;no_research;Jupyter Notebook +https://github.com/ezair/Pokemon-Gen1-Image-Classification;Producing a Convolutional Neural Network for classifying the first 150 pokemon.;no_research;Jupyter Notebook +https://github.com/ezair/Pytorch-Binary-Weather-Classification;Construct a feed forward NN to simulate logistic regression on a weather dataset. We determine if it is going to rain or not. Currently the model performs with 100% accuracy.;no_research;Jupyter Notebook +https://github.com/ezair/Recipe-Scraper;Scrape online recipes that I may want to use later.;no_research; +https://github.com/ezair/Reddit-Sentiment-Analysis;Built an object for analyzing the negativity and positivity level of a given subreddit submission or entire subreddit. The object is built with the intent that it can be used for multiple different projects. Database contains all submissions and there is a script to add to it.;no_research;Python +https://github.com/ezair/Ridege-Regression-Housing-Data;;no_research;Jupyter Notebook +https://github.com/ezair/Ridge-Lasso-Regularization;Example and statistics of running Ridge/Lasso regression. (No need for readme, I use pynotebooks).;no_research;Jupyter Notebook +https://github.com/ezair/Rock-Paper-Scissors;2 Player Rock Paper Scissors game;no_research;Java +https://github.com/ezair/Scheme-Token-Word-Displayer;Display the content of a scheme program with the comments stripped out.;no_research;Java +https://github.com/ezair/Shapes;Collection of classes that are used to calculate area and perimeter of shape;no_research;Java +https://github.com/ezair/Student;This Program creates a Class for students;no_research;Java +https://github.com/ezair/Terminal;My own implimentation of a Linux Shell.;no_research;C++ +https://github.com/ezair/Token-Word-Counter;"Find all ""words"" in a given file and displays then in sorted order. Definition of a ""word"" is in readme.";no_research;Java +https://github.com/ezair/Twitter;"This is repository will contain a collection of programs using the twitter api ""tweepy""";no_research;Python +https://github.com/ezair/Weather-Data-Binomial-Clasisfication;Running logistic regression on weather data in order to classify that a day will snow or not snow.;no_research;Jupyter Notebook +https://github.com/fahaddeshmukh/Causes-of-death-analysis;;no_research;Jupyter Notebook +https://github.com/fahaddeshmukh/dataport;;no_research;Jupyter Notebook +https://github.com/fahaddeshmukh/git;;no_research;Python +https://github.com/fahaddeshmukh/house-price;;no_research;Jupyter Notebook +https://github.com/fahaddeshmukh/multiple-distributions;;no_research; +https://github.com/fahaddeshmukh/Myfaker;;no_research;JavaScript +https://github.com/fahaddeshmukh/Question-pair-nlp;;no_research;Jupyter Notebook +https://github.com/fahaddeshmukh/RSE-project2;;no_research;Jupyter Notebook +https://github.com/fahaddeshmukh/test;;no_research; +https://github.com/FalkMaximilian/lkm_list_mutex_timer;;no_research;C +https://github.com/FalkMaximilian/ParallelProgramming;;no_research;C +https://github.com/FalkMaximilian/Penfactory;Software zum Management des Lagerbestandes der Penfactory;no_research;Java +https://github.com/FalkMaximilian/Python;Some things done with python.;no_research;Python +https://github.com/ff6347/.wilfred;;no_research;JavaScript +https://github.com/ff6347/11EG-B-WS1314-bildspaziergang;"These sketch are part of the course [""Eingabe, Ausgabe. Grundlagen der prozessorientierten Gestaltung""](https://incom.org/workspace/4693) by Monika Hoinkis";no_research;Processing +https://github.com/ff6347/11EG-B-WS1314-bildspaziergang-gpx-data;"the collection of all gpx data. This data is part of the course [""Eingabe, Ausgabe. Grundlagen der prozessorientierten Gestaltung""](https://incom.org/workspace/4693) by Monika Hoinkis";no_research;Processing +https://github.com/ff6347/3d-earth-locations-aep;This is the repo to my After Effects 3D Locations Tutorial;no_research; +https://github.com/ff6347/actions-playground;repo to test actions triggering;no_research; +https://github.com/ff6347/ae-comps-to-graphviz;Export flow of current comp to graphviz;no_research;JavaScript +https://github.com/ff6347/AEMap-footage;;no_research; +https://github.com/ff6347/AEMap-Utilities.jsx;AEMap-Utilities.jsx util scripts for AEMap;no_research;JavaScript +https://github.com/ff6347/AESettingsControl;A Extendscript Class for controlling AE Settings;no_research;JavaScript +https://github.com/ff6347/after-effects-script-snippets;this is a loose collection of js snippets for After Effects ;no_research;JavaScript +https://github.com/ff6347/agent;Art direction Hektor U. programming me.;no_research;Processing +https://github.com/ff6347/AI-connectedNodes;create connected nodes in illustrator. Nuff said?;no_research;JavaScript +https://github.com/ff6347/alfred-color-names;Paste named CSS colors into the frontmost app;no_research;JavaScript +https://github.com/ff6347/alfred-duckduckgo-bangs;A Alfred workflow to insert !bangs (around 13505) into the frontmost app. ;no_research;TypeScript +https://github.com/ff6347/ama;Ask me anything. (Maybe I'll answer);no_research; +https://github.com/ff6347/analogio;Sketches for teaching arduino analog input output @FH-Potsdam;no_research;Arduino +https://github.com/ff6347/anscombe-quartet-in-cran;Plotting Anscombe's quartet in R;no_research;R +https://github.com/ff6347/apple-mail-list-sender;trying to build own blacklist and whitelists by selection;no_research;AppleScript +https://github.com/ff6347/ask-me-anything;A place where you an ask me questions;no_research; +https://github.com/ff6347/atom-run-in-indesign;a starter to run scripts from Atom in InDesign WIP;no_research;JavaScript +https://github.com/ff6347/AudioScanner;Does not scan audio;no_research;Processing +https://github.com/ff6347/auto-typo-adbe-id;This is the code repository for the FH-Potsdam ;no_research; +https://github.com/ff6347/automate-build;testing automated build;no_research;JavaScript +https://github.com/ff6347/aWordpress-ChildTheme;abandonware;no_research;CSS +https://github.com/ff6347/basic-graphs-in-cran;Building basic graphs with ggplot;no_research;R +https://github.com/ff6347/basil-projects-jekyll-poc;A proof of concept;no_research;HTML +https://github.com/ff6347/basil.js.user;My basil.js user folder http://basiljs.ch;no_research;JavaScript +https://github.com/ff6347/batch-find-and-replace;This is a Adobe InDesign script for batch processing FNR xmls;no_research;JavaScript +https://github.com/ff6347/bed-and-breakfast;website for Laila Niklaus;no_research;JavaScript +https://github.com/ff6347/best-rest-test;a small app running on zeit/now https://best-rest-test.now.sh/ to test if there is a possibility for a http connection;no_research;JavaScript +https://github.com/ff6347/Beyond-Processing-Scribbles;FHP WS2010/11 Project;no_research;Java +https://github.com/ff6347/bin;"Some scripts I created. Stored into /usr/local/bin and than always forget about. Read [this article](http://www.leancrew.com/all-this/2013/05/dropboxbin/) and thought: ""Hey good idea but not into the dropbox"" ";no_research;Shell +https://github.com/ff6347/bitmapboogie-imagescanner-jsx;This is an ExtendScript for importing data from the bitmapboogie-imagescanner-of into After Effects;no_research;JavaScript +https://github.com/ff6347/bitmapboogie-imagescanner-of;This is a small OF tool for scanning images;no_research;C +https://github.com/ff6347/block-facebook;Little snitch rule group for blocking Facebook;no_research;TypeScript +https://github.com/ff6347/buildx-test;ööö;no_research; +https://github.com/ff6347/c2c;Sketches for teaching computer 2 computer communication with arduino and processing @FH-Potsdam;no_research;Processing +https://github.com/ff6347/c2c-with-nodejs;Computer 2 Computer Communication done with Node.js, Express.js, Johnny Five and Socket.io.;no_research;JavaScript +https://github.com/ff6347/camWithDolly;creates a cam with a dolly;no_research;JavaScript +https://github.com/ff6347/cheatsets;A collection of cheatsets I like to keep on my desktop. These are commands I use on a not daily basis. To not have to browse through my shell history over and over again, I worte them down. ;no_research;HTML +https://github.com/ff6347/CircleText;Text in a circle using openFrameworks and c++;no_research;C +https://github.com/ff6347/citylab-goes-2-diversitylab;A little journey we took;no_research;HTML +https://github.com/ff6347/color_thief;;no_research;Java +https://github.com/ff6347/color_wheel;simple color wheel in processing;no_research;Processing +https://github.com/ff6347/color_wheel_p5js;simple color wheel;no_research;CSS +https://github.com/ff6347/compify2_slim;reduced version of the compify2.jsx;no_research;JavaScript +https://github.com/ff6347/connected-nodes;create connected nodes. nuff said?;no_research;Processing +https://github.com/ff6347/DC40175;A Arduino library for the DC40175 decimal counter;no_research; +https://github.com/ff6347/debugging-ae-scripts;some debugging and test scripts for use with Adobes Extendscript Engine;no_research;JavaScript +https://github.com/ff6347/depth-sorting-outer-space;just for keeping the script accesible;no_research; +https://github.com/ff6347/details-in-readme;Did you know that you can have some details in a readme here on GitHub?;no_research; +https://github.com/ff6347/digilogio;Sketches for teaching arduino digital/analog input output @FH-Potsdam - you get it? digilogio = digital + analog + input + output.;no_research;Arduino +https://github.com/ff6347/digital-logic-gates;"Fritzing examples and Arduino code for ""Digital Logic Gates Just Using Transistors"" by DeanGPotts";no_research; +https://github.com/ff6347/digitalio;Sketches for teaching arduino digital input output @FH-Potsdam;no_research;C++ +https://github.com/ff6347/DIGITALIO_4017B_Graph;Using CD4017B Decade counter to control a LED Bar;no_research;Arduino +https://github.com/ff6347/DIGITALIO_74HC595_Graph;Controlling a LED Bargraph with a 74HC595 Shiftregister;no_research;Arduino +https://github.com/ff6347/dispatch-from-srht;Testing;no_research; +https://github.com/ff6347/docker-network-with-nginx-reverse-proxy-and-websockets;docker-network-with-nginx-reverse-proxy-and-websockets;no_research;JavaScript +https://github.com/ff6347/docker-playground;my little playground for CI;no_research;TypeScript +https://github.com/ff6347/down-under;;no_research;Ruby +https://github.com/ff6347/dummy-images;;no_research;Shell +https://github.com/ff6347/duration-and-processing;I had to fiddle with duration after seeing somebody fork it on my github feed;no_research;Processing +https://github.com/ff6347/easing;Processing sketch exploring Robert Penners easing functions WIP;no_research;Processing +https://github.com/ff6347/echo-server;;no_research;JavaScript +https://github.com/FH-Potsdam/.github;Welcome to the Interface Design Group at the University of Applied Sciences Potsdam;no_research; +https://github.com/FH-Potsdam/2014-2015-WiSe-15PP-PW-DIY-Multitouch;DIY (Multi) Touch (less) Human Computer Interaction (Projektwochen);no_research;Processing +https://github.com/FH-Potsdam/2014-SoSe-11EG-B-input-output;"This repo is 4 the course ""Eingabe, Ausgabe. Grundlagen der prozessorientierten Gestaltung"" by Monika Hoinkis & Fabian Morón Zirfas";no_research;Processing +https://github.com/FH-Potsdam/2014-SoSe-14W4D-IL-Blockseminar;Repo for teaching collaborative workflows @FH-Potsdam 2014-SoSe-14W4D-IL-Blockseminar;no_research; +https://github.com/FH-Potsdam/add-users-via-github-api;add users from shell script to team;no_research;Shell +https://github.com/FH-Potsdam/ar-prototyping;evaluation of ar prototyping tools;no_research;JavaScript +https://github.com/FH-Potsdam/artomaton;this is just test code. Nothing to see here. Move along;no_research;JavaScript +https://github.com/FH-Potsdam/Basic-Coding-Crash-Course-I;BC×3 I @ University of Applied Sciences Potsdam (Germany);no_research;JavaScript +https://github.com/FH-Potsdam/Basic-Coding-Crash-Course-II;BC×3 II @ University of Applied Sciences Potsdam (Germany);no_research;JavaScript +https://github.com/FH-Potsdam/BedTimeStories-by-GPT-3;;no_research;JavaScript +https://github.com/FH-Potsdam/best-practice-github;Best practices for GitHub;no_research; +https://github.com/FH-Potsdam/bit;;no_research;JavaScript +https://github.com/FH-Potsdam/blockseminar-WS1314-14W4D-IL;written for block seminar @FH-Potsdam Werkstattpraxis 14W4D-IL Interface-Labor WS 2013/2014;no_research; +https://github.com/FH-Potsdam/city-vis-website;cityvis.io;no_research;SCSS +https://github.com/FH-Potsdam/climate-project-collection;Netlify Forms for collecting Climate Change Communication projects;no_research;HTML +https://github.com/FH-Potsdam/connecting-bits;A project of the seminar input output;no_research;JavaScript +https://github.com/FH-Potsdam/controlling-hue;controlling hue;no_research;JavaScript +https://github.com/FH-Potsdam/coursesAPI;A REST API designed for study courses;no_research;JavaScript +https://github.com/FH-Potsdam/coursesViewer;A study courses viewer using the FH-Potsdam/coursesAPI;no_research;HTML +https://github.com/FH-Potsdam/ct-code-examples;All Coding Sessions from the seminar Creative Technologists - Tracing the City https://fhp.incom.org/workspace/8527 ;no_research;JavaScript +https://github.com/FH-Potsdam/ct-interactive;assigment for the seminar CT - Tracing the city;no_research;JavaScript +https://github.com/FH-Potsdam/ct-keyboardhack;Keyboardhack template for the seminar creative Technologist;no_research;JavaScript +https://github.com/FH-Potsdam/ct-making-things-move;Boilerplate/Template for the seminar Creative Technologist - Excercise Making Things Move;no_research;C++ +https://github.com/FH-Potsdam/ct-making-things-move-interactive;Boilerplate for CT seminar;no_research;JavaScript +https://github.com/FH-Potsdam/ct-mtm-a-joseph14;ct-mtm-a-joseph14 created by GitHub Classroom;no_research;C++ +https://github.com/FH-Potsdam/ct-mtm-aaengelberg;ct-mtm-aaengelberg created by GitHub Classroom;no_research;C++ +https://github.com/FH-Potsdam/ct-mtm-AgathaCrystal;ct-mtm-AgathaCrystal created by GitHub Classroom;no_research;C++ +https://github.com/FH-Potsdam/ct-mtm-ahaahaahaa;ct-mtm-ahaahaahaa created by GitHub Classroom;no_research;C++ +https://github.com/FH-Potsdam/ct-mtm-carl-qq;ct-mtm-carl-qq created by GitHub Classroom;no_research;C++ +https://github.com/FH-Potsdam/ct-mtm-fabianmoronzirfas;ct-mtm-fabianmoronzirfas created by GitHub Classroom;no_research;C++ +https://github.com/FH-Potsdam/ct-mtm-kochlisa;ct-mtm-kochlisa created by GitHub Classroom;no_research;C++ +https://github.com/FH-Potsdam/ct-mtm-The-bastART;ct-mtm-The-bastART created by GitHub Classroom;no_research;C++ +https://github.com/FH-Potsdam/ct-tracing-the-city;How to for generating GCode through SVG from code;no_research; +https://github.com/FH-Potsdam/cti-a-joseph14;cti-a-joseph14 created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-aaengelberg;cti-aaengelberg created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-AgathaCrystal;cti-AgathaCrystal created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/cti-AGlazkova;cti-AGlazkova created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-ahaahaahaa;cti-ahaahaahaa created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/cti-BabalouBoi;cti-BabalouBoi created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/cti-carl-qq;cti-carl-qq created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/cti-DanEglau;cti-DanEglau created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/cti-dISCOeRG0sUM;cti-dISCOeRG0sUM created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-fabianmoronzirfas;cti-fabianmoronzirfas created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/cti-fatherhummingbird;cti-fatherhummingbird created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-kennyloeffler;cti-kennyloeffler created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-kochlisa;cti-kochlisa created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-lisa-lh;cti-lisa-lh created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/cti-milanwulf;cti-milanwulf created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-SchmittVa;cti-SchmittVa created by GitHub Classroom;no_research;HTML +https://github.com/FH-Potsdam/cti-The-bastART;cti-The-bastART created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-a-joseph14;ctk-a-joseph14 created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-aaengelberg;ctk-aaengelberg created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-AgathaCrystal;ctk-AgathaCrystal created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-AGlazkova;ctk-AGlazkova created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-ahaahaahaa;ctk-ahaahaahaa created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-BabalouBoi;ctk-BabalouBoi created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-carl-qq;ctk-carl-qq created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-dISCOeRG0sUM;ctk-dISCOeRG0sUM created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-fabianmoronzirfas;ctk-fabianmoronzirfas created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-fatherhummingbird;ctk-fatherhummingbird created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-kochlisa;ctk-kochlisa created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-milanwulf;ctk-milanwulf created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-SchmittVa;ctk-SchmittVa created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/ctk-The-bastART;ctk-The-bastART created by GitHub Classroom;no_research;JavaScript +https://github.com/FH-Potsdam/dataviz-2013;Dataviz Challenges 2013 - class material from the interface design programme @ FH Potsdam;no_research;JavaScript +https://github.com/FH-Potsdam/digenti-api;DIGENTI REST API;no_research;JavaScript +https://github.com/FH-Potsdam/digenti-apps;Open-source web-based tool for area accessibility assessment in the context of disaster management – based on satellite data and geovisualization.;no_research;HTML +https://github.com/FH-Potsdam/digenti-react;;no_research;HTML +https://github.com/FH-Potsdam/digenti-server;;no_research;JavaScript +https://github.com/FH-Potsdam/digenti-tiles;DIGENTI Tile Server;no_research;HTML +https://github.com/FH-Potsdam/dma;"Starter kit for the seminar ""Creative Technologists - Tracing the City"" @ University of Applied Sciences Potsdam (Germany) by Fabian Morón Zirfas";no_research;HTML +https://github.com/FH-Potsdam/docker-node-proof-of-concept;proof of concept on how build a docker container for Node.js apps ;no_research;PHP +https://github.com/FH-Potsdam/doing-papercraft;Workshop docs;no_research;PostScript +https://github.com/FH-Potsdam/doing-projection-mapping;a workshop about projection mapping;no_research; +https://github.com/FH-Potsdam/dome.perimeter;Fulldome Perimetrie Test Application;no_research;Processing +https://github.com/FH-Potsdam/easydriver;Some simple sketches for using the schmalzhaus - easydriver;no_research;Arduino +https://github.com/FH-Potsdam/eingabe-ausgabe;a microsite for the seminar Eingabe/Ausgabe in 2014/2015 - 2015 - 2015/2016;no_research;HTML +https://github.com/FH-Potsdam/eovis;Visualization of the Natural Hazards listed by the NASA Earth Observatory in 2015;no_research;JavaScript +https://github.com/FH-Potsdam/fh-potsdam.github.com;Index of public and open source projects created at the University of Applied Sciences in Potsdam, Germany;no_research;CSS +https://github.com/FH-Potsdam/fhpCoursesScraper;A scrapper for extracting courses information of the University of Applied Science Potsdam;no_research;JavaScript +https://github.com/FH-Potsdam/FHP_VPN_Startscript;Script to simplify VPN usage on campus @vicegold;no_research;AppleScript +https://github.com/FH-Potsdam/fiducial-detection;;no_research;Python +https://github.com/FH-Potsdam/flipdot;playing with flipdots;no_research;Arduino +https://github.com/FH-Potsdam/ForschungsFenster-Logger;"Logger utility functions for the ""Forschungsfenster"" software components.";no_research;JavaScript +https://github.com/FH-Potsdam/FullDome_;Tools & Examples;no_research;Java +https://github.com/FH-Potsdam/generator-ctp5;;no_research;JavaScript +https://github.com/FH-Potsdam/getting-a-grade-for-steel-ant-io;"A check list for creating the documentation for the seminar Input/Output - basics of process oriented design (""Eingabe/Ausgabe. Grundlagen der prozessorientierten Gestaltung"").";no_research; +https://github.com/FH-Potsdam/github-setup-tools;some small tools for setting up github repositories.;no_research;Shell +https://github.com/FH-Potsdam/google-sheets-page-generator;Generate static pages from google sheets. Specifically to present thematic inquiries, as lists and detail pages.;no_research;JavaScript +https://github.com/FH-Potsdam/hello-processing-py-cv-world;Some simple sketches for learning processing and openCV;no_research;Python +https://github.com/FH-Potsdam/hello-processing-py-world;Some sketches created @FH-Potsdam for showing processing.py;no_research;Python +https://github.com/FH-Potsdam/hid-hack-utils;simple processing sketches to help with Human Interaction Device hacking. ;no_research;Processing +https://github.com/FH-Potsdam/Homo-Effectus;Homo Effectus;no_research;Processing +https://github.com/flxw/adventofcode;;no_research;Go +https://github.com/flxw/apcpp16;Repository for lecture materials of Advanced Programming in C++ in winter term 16/17 at HPI;no_research;C++ +https://github.com/flxw/aroundhere;Get to know Berlins monuments around you!;no_research;JavaScript +https://github.com/flxw/bachelor-thesis;My bachelor thesis about selecting job candidates based on their Github profile code contributions and matching them to job descriptions;no_research;TeX +https://github.com/flxw/badass-group;;no_research;R +https://github.com/flxw/blogviz;BlogIntelligence Insights - Chrome extension for displaying supplementary information about indexed pages;no_research;JavaScript +https://github.com/flxw/bs1;Repository for the collaborative groupwork with adi64 (adrian.holfter.de) to solve the tasks for the lecture 'Operating Systems I';no_research;C +https://github.com/flxw/cluster-computing-up;Repository for exercises in SS2017 lecture on Cluster Computing at University of Potsdam;no_research;Jupyter Notebook +https://github.com/flxw/code-repository-mining;;no_research;Python +https://github.com/flxw/codingmasters2013;;no_research;Python +https://github.com/flxw/committed-to-code;A commit generator to fill the GitHub activity timeline :D;no_research;Java +https://github.com/flxw/dbs2;Solutions for the exercises from the database systems 2 lecture at HPI;no_research;TeX +https://github.com/flxw/desktop-photos;;no_research;Java +https://github.com/flxw/developium;A mobile-first, lightweight Ghost theme for presenting oneself as developer and blogger;no_research;CSS +https://github.com/flxw/dictionary-compressor-rs;;no_research;TeX +https://github.com/flxw/domainconverter;;no_research;HTML +https://github.com/flxw/dotfiles;;no_research;Vim Script +https://github.com/flxw/flighttrack;;no_research;JavaScript +https://github.com/flxw/folienizer;A PDF viewer that also allows you to comment, designed for paying attention during a lecture ;no_research; +https://github.com/flxw/getsome;;no_research;Python +https://github.com/flxw/hello-github-actions;;no_research;Dockerfile +https://github.com/flxw/hirebot;;no_research;JavaScript +https://github.com/flxw/icalgen;A small ical-file generation web service built for a seminar at HPI;no_research;JavaScript +https://github.com/flxw/master-thesis-code;The code for my thesis about sequence prediction on business processes ;no_research;Jupyter Notebook +https://github.com/flxw/master-thesis-latex;My master thesis about sequence prediction on business processes;no_research;TeX +https://github.com/flxw/nitro4ppm;A simple framework for facilitating the training of sequence prediction models with different batch construction strategies;no_research;Python +https://github.com/flxw/nsc-tools;Tools that allow you to have a self-updating network-shared pacman cache;no_research;Shell +https://github.com/flxw/numimon;Monitor a programs memory consumption across NUMA nodes along its execution;no_research;Python +https://github.com/flxw/physioplan;;no_research;TypeScript +https://github.com/flxw/playwithpgasus;;no_research;C++ +https://github.com/flxw/pois-praktikum;;no_research;Java +https://github.com/flxw/PracticeOnPower;;no_research;C +https://github.com/flxw/premiumprojekt;;no_research;HTML +https://github.com/flxw/ptuebungen;;no_research;Java +https://github.com/flxw/qt-vs-node-mp3-streaming;Node.js vs Qt/C++ playing a SoundCloud 128k MP3 stream;no_research;C++ +https://github.com/flxw/qtagsort;Sort your music files via tags!;no_research;C++ +https://github.com/flxw/rekor-monitor;A Rekor crawler and monitor;no_research;Go +https://github.com/flxw/rekor-monitor-view-refresher;;no_research;Go +https://github.com/flxw/REMAPSEM;;no_research;C +https://github.com/flxw/rusty-json-completeness-checker;;no_research;Rust +https://github.com/flxw/rusty-ls;;no_research;Rust +https://github.com/flxw/scnrcpt;;no_research; +https://github.com/flxw/scplay;A SoundCloud player for your desktop!;no_research;C++ +https://github.com/flxw/sigstore-local-setup;Configuration files for [TBD];no_research; +https://github.com/flxw/sublime-packages;;no_research; +https://github.com/flxw/tagwalker;Sort or rename music files using information contained in their tags. Also check for specific tag contents.;no_research;C++ +https://github.com/flxw/test-pr-action-repo;;no_research; +https://github.com/flxw/tgrep;grep your music files' tags;no_research;C++ +https://github.com/flying-bear/2018-course-poster;Poster for my 2018 course paper;no_research;Jupyter Notebook +https://github.com/flying-bear/2019_hse_data_analysis;HSE data analysys for linguists;no_research;R +https://github.com/flying-bear/Academic-Writing;My attempts to make my laptop do all the boring chores;no_research;Python +https://github.com/flying-bear/ANLP-project;;no_research;Jupyter Notebook +https://github.com/flying-bear/ANLPotsdam;;no_research;Jupyter Notebook +https://github.com/flying-bear/AutoT;HSE course;no_research;Jupyter Notebook +https://github.com/flying-bear/databases;HSE Data Bases Course;no_research;TSQL +https://github.com/flying-bear/FLA;code for parsing CHILDES corpus;no_research;R +https://github.com/flying-bear/HSE_programming;homeworks and classworks;no_research;Jupyter Notebook +https://github.com/flying-bear/infosearch;HSE course;no_research;Jupyter Notebook +https://github.com/flying-bear/kompluxternaya;;no_research;Jupyter Notebook +https://github.com/flying-bear/modeling_schizo;Trying to apply methods of automatic discourse analysis to my data;no_research;Jupyter Notebook +https://github.com/flying-bear/practice;;no_research;Python +https://github.com/flying-bear/Proofreading;;no_research;TeX +https://github.com/flying-bear/R_2018;The R course materials;no_research;R +https://github.com/flying-bear/Style-Transfer;Final Project for Machine Learning II Course at the University of Potsdam;no_research;Jupyter Notebook +https://github.com/flying-bear/thesis;Automated Assessment of Discourse Coherence in Schizophrenia and Schizoaffective Disorder;research;Jupyter Notebook +https://github.com/flying-bear/verbal_fluency;comparing performance of different word embeddings for researching verbal fluency task in russian;no_research;Jupyter Notebook +https://github.com/FMalerba/LIBS-Spectra-Classification;;no_research;Jupyter Notebook +https://github.com/FMalerba/skbuild_test;;no_research;CMake +https://github.com/FMalerba/tunable-agents-MORL;;no_research;Python +https://github.com/fosler/PLCC;;no_research; +https://github.com/fpottbaecker/cp-template;Competitive Programming CMake template;no_research;CMake +https://github.com/fpottbaecker/foundryvtt-how-to-be-a-hero;Foundry VTT implementation for the How to be a Hero system (https://howtobeahero.de);no_research; +https://github.com/fpottbaecker/homebrew-misc;Some miscellaneous stuff that is not good enough for homebrew-core;no_research; +https://github.com/fpottbaecker/st-data-gen;Data generation utilities for spatial trascriptomics (especially scanpy).;research;Jupyter Notebook +https://github.com/frcroth/advent-of-code-2020;Personal Advent of code 2020 solutions.;no_research;Python +https://github.com/frcroth/advent-of-code-2021;My Advent of code 2021 solutions. 🐠;no_research;Rust +https://github.com/frcroth/BRIEFly;;no_research;Java +https://github.com/frcroth/elections;Simulate elections.;no_research;JavaScript +https://github.com/frcroth/frcroth;;no_research; +https://github.com/frcroth/github-stats;;no_research;Python +https://github.com/frcroth/hpi_gamejam2020_2colors;;no_research;GDScript +https://github.com/frcroth/line-planner;Plan train lines on a map. Just for fun.;no_research;JavaScript +https://github.com/frcroth/murder-game-bot;"A Telegram bot for playing ""Mörderspiel"" - murder game";no_research;Python +https://github.com/frcroth/qinoq-commit-analysis;;no_research;JavaScript +https://github.com/frcroth/sierpinski-random;Draw a Sierpiński triangle with random numbers. Uses python and turtle.;no_research;Python +https://github.com/frcroth/swing-snake;A basic Snake game.;no_research;Java +https://github.com/frcroth/zahlenmaschine;Virtual machine for custom assembly in Browser.;no_research;JavaScript +https://github.com/freenerd/ask-imogen;Midem Hack Day Project;no_research;JavaScript +https://github.com/freenerd/boulevardofbrokenlinks;Notify on broken links;no_research;Go +https://github.com/freenerd/daily-sample-set;Pull latest CC tracks from SoundCloud, find bars with Echonest, Upload samples again;no_research;Ruby +https://github.com/freenerd/downloud;Private link to a label's release | users can download music after they listened to stream and left name/email/feedback;no_research;Ruby +https://github.com/freenerd/ec2-spot-market-analyzer;Locally queries the AWS spot market API for analysis;no_research;JavaScript +https://github.com/freenerd/elevatorsaga;Trying a solution for http://elevatorsaga.com/;no_research;JavaScript +https://github.com/freenerd/expensive-lyrics-display;Using many Novation Launchpads as a display for lyrics;no_research;Ruby +https://github.com/freenerd/extract-epubinfo;Batch extract metadata and covers from .epubs;no_research;Ruby +https://github.com/freenerd/findmypi;Send the local ip address of your Raspberry Pi via email;no_research;Python +https://github.com/freenerd/flickr-uploader;Upload all files of a directory to a flickr photoset. Resume if upload stalls ...;no_research;Ruby +https://github.com/freenerd/go-import-extractor;Extracts a list of imported packages from either a go file or a go package;no_research;Go +https://github.com/freenerd/honeypot;;no_research; +https://github.com/freenerd/hubdrawer;hubdrawer;no_research;JavaScript +https://github.com/freenerd/i-am-sitting-in-a-codec;;no_research;Python +https://github.com/freenerd/import-call-extractor;For a go source file, show list of calls to imported packages;no_research;Go +https://github.com/freenerd/InstaSample;;no_research;Ruby +https://github.com/freenerd/learning-graph-algorithms;learning by doing: implementing graph algorithms;no_research;JavaScript +https://github.com/freenerd/masters-thesis;The Latex source of my Master's Thesis http://freenerd.de/masters-thesis/;no_research;TeX +https://github.com/freenerd/mccabe-cyclomatic;Calculates Thomas McCabe's cyclomatic complexity for a go file or package;no_research;Go +https://github.com/freenerd/passport-flattr;A passport strategy for Flattr;no_research;JavaScript +https://github.com/freenerd/potty-mouth-bands;;no_research;JavaScript +https://github.com/freenerd/rhok-world-map;RHOK World Map;no_research;JavaScript +https://github.com/freenerd/songaday;Music Hack Day Bologna 2013 project. Please disregard.;no_research;Ruby +https://github.com/freenerd/soundcloud-api-wadl;Description of the SoundCloud API in wadl xml;no_research; +https://github.com/freenerd/SoundCloud-Map;SoundCloud Map displays the latest music uploaded to SoundCloud on a Google Maps map;no_research;JavaScript +https://github.com/freenerd/soundcloud-social;Listen to a track on SoundCloud together with others;no_research;JavaScript +https://github.com/freenerd/teletask-cli;Some command-line tools for the TeleTask service of the HPI Potsdam university;no_research;Ruby +https://github.com/freenerd/versioning-saas-paper;"Paper for the HPI master's course ""Software-as-a-Service and Multi-tenancy"" 2013";no_research; +https://github.com/freenerd/wadl-library;Collection of WADL (Web Application Description Language) representations for APIs, extended for Apigee.;no_research; +https://github.com/fsr-de/1327;CMS for a student representatives website;no_research;Python +https://github.com/fsr-de/docs;Dokumente der Fachschaft Digital Engineering an der Universität Potsdam;no_research; +https://github.com/fsr-de/fsr-deployment;Configuration files for the FSR infrastructure deployment;no_research;Dockerfile +https://github.com/fsr-de/myHPI;Django/Wagtail page serving myhpi.de;no_research;Python +https://github.com/georgt99/Lamanizer;Optimizing Linkages by encapsulating rigid components;no_research;C# +https://github.com/georgt99/SymboLinkage;Simulating 3D-linkages in Unity using symbolic kinematics;no_research;C++ +https://github.com/geveh/GLOFdetection;Scripts and input data to detect GLOFs from Landsat images and DEMs;research; +https://github.com/geveh/GLOFhazard;This repository contains the source codes to estimate GLOF peak discharges from the Himalayan lake-size distribtution, and to estimate return periods of GLOF volumes and peak discharges in the entire Himalayas and seven subregions.;no_research;R +https://github.com/geveh/GLOFsusceptibility;Repository to model the susceptibility of Himalayan glaciers to sudden outburst floods.;research; +https://github.com/geveh/IceDamFailures;;research;R +https://github.com/geveh/LakeAndGLOFdetection;This repository contains codes to detect glacier lakes and glacier lake outburst floods (GLOFs) from Landsat time series;no_research; +https://github.com/geveh/MGEW23_WS2018_19;"This is a repository containing instructions, scripts and homework from the lecture ""Basics of Quantifying Natural Hazards"", Geosciences, University of Potsdam. ";no_research;HTML +https://github.com/geveh/ReportingBias;Scripts for estimating historic trends in GLOF occurrences and potential biases in reporting;research;R +https://github.com/geveh/ShadowsOnGlaciers;This repository provides R code to estimate elevation changes in shaded areas of glaciers;no_research;R +https://github.com/goldencm/AOC;advent of code;no_research;Java +https://github.com/goldencm/blanc-os;;no_research;Rust +https://github.com/goldencm/CardGameSuite;Rust practice with a game of GoFish;no_research;Rust +https://github.com/goldencm/init.ubuntu;;no_research;Shell +https://github.com/goldencm/portfolio-website;;no_research;TypeScript +https://github.com/goldencm/resume;;no_research; +https://github.com/goldencm/rust-RSA;;no_research;Rust +https://github.com/goldencm/rust-TypeSpeed;;no_research;Rust +https://github.com/goldencm/student-survey-webapp;A django based web application made for the Software Engineering course at SUNY Potsdam;no_research;Python +https://github.com/GregwiseNoah/Advanced-Computational-Astrophysics;Exercises submitted for the course Advanced Computational Physics at the University of Potsdam;no_research;Jupyter Notebook +https://github.com/GregwiseNoah/FreeCodeCamp;;no_research;Python +https://github.com/GregwiseNoah/GregwiseNoah;Config files for my GitHub profile.;no_research; +https://github.com/GregwiseNoah/link;;no_research;HTML +https://github.com/grpranto/Aider---Web-Application;A platform where both of the faculties and student communicate with each other and get some features. A faculty can take online attendance and add courses. Student can also see their attendance marks, joined their desired courses by putting the enrollment key. ;no_research;Java +https://github.com/grpranto/ANTLR-Project-Student-Information-;A string like “Md. Golam Rasul (2016-1-60-080) (Rampura, Dhaka) (01622925060)” can be covered with this grammar. And a successful parse tree will be generated with the indication name, id (year, semester, dept_code and roll), address, phone_number.;no_research;ANTLR +https://github.com/grpranto/Confusion-Matrix-Calculator;This desktop application returns the following important measurements - Accuracy, precision, sensitivity, specificity, F1-score smoothly!!;no_research;C# +https://github.com/grpranto/CPP;Algorithms, Data Structure;no_research;C++ +https://github.com/grpranto/Hospital-Management;A desktop app where admin can log in and entry the patients admission record. Nunit testing is included in this application.;no_research; +https://github.com/grpranto/Internet-Notifier-Desktop-Application;A simple notifier desktop application which reminds you when the internet is up by beeping sound. It has been developed with the help of QT framework.;no_research;C++ +https://github.com/grpranto/Kuzushiji-Classification-Deep-Learning;;no_research;Jupyter Notebook +https://github.com/grpranto/Laser-Detection-Machine-Learning;;no_research;Jupyter Notebook +https://github.com/grpranto/Medical-Store-Management;Medical store management project using data structure. ;no_research;C++ +https://github.com/grpranto/ML-GUI-software-fault-detection;;no_research;Python +https://github.com/grpranto/Online-shoppers-purchasing-intention-ML;Predict the purchasing intention of online shoppers using Decision Tree, Naive Bayes classifier, Random Forrest, Support Vector Machine algorithms.;no_research;Jupyter Notebook +https://github.com/grpranto/Smart-Car-Parking-System;Arduino based Smart Car Parking System;no_research;C++ +https://github.com/grpranto/solving-real-world-dataset-SQL-Python;;no_research;Jupyter Notebook +https://github.com/grpranto/Track-Covid-19;COVID-19 Coronavirus statistics in real time.;no_research;PHP +https://github.com/grpranto/woocommerce_wordpress;;no_research;PHP +https://github.com/gue-ros/AnaGuerraRosbach;Config files for my GitHub profile.;no_research; +https://github.com/gue-ros/Classification_Memes;Mains task: classify memes as misogynous or not misogynous.;no_research;Python +https://github.com/gue-ros/DeepLearning_LanguageIdentification;Language Identification using Recurrent Architectures. Based on original code by Hande Celikkanat & Miikka Silfverberg;no_research;Python +https://github.com/gue-ros/DeepLearning_SentimentClassification;DeepLearnig course;no_research;Python +https://github.com/gue-ros/Natural_Language_Inference;;no_research;Python +https://github.com/gwastro-2019/problem-set-1;Problem set 1 for the Gravitational Wave Astrophysics lecture, summer term 2019 at Potsdam University, Germany;no_research;Jupyter Notebook +https://github.com/gwastro-2019/problem-set-2;Problem set 2 for the Gravitational Wave Astrophysics lecture, summer term 2019 at Potsdam University, Germany;no_research;Jupyter Notebook +https://github.com/gwastro-2019/problem-set-6;Problem set 6 for the Gravitational Wave Astrophysics lecture, summer term 2019 at Potsdam University, Germany;no_research;Jupyter Notebook +https://github.com/gwastro-2019/problem-set-7;Problem set 7 for the Gravitational Wave Astrophysics lecture, summer term 2019 at Potsdam University, Germany;no_research;Jupyter Notebook +https://github.com/hackpotsdam/hackpotsdam2017;The homepage for a 24 hour held at semi-annually at SUNY Potsdam & Clarkson University.;no_research;HTML +https://github.com/hallerp/atmt_2022;"Materials for the first assignment of ""Advanced Techniques of Machine Translation"" @UZH (Autumn 2022).";no_research;SystemVerilog +https://github.com/hallerp/dyslexia-seqmod;;research;Python +https://github.com/hallerp/stroop-simon-german;PsychoPy implementations of Simon and Stroop task in German;no_research;Python +https://github.com/hannesharnisch/BeautifulSwiftUI;;no_research;Swift +https://github.com/hannesharnisch/dotfiles;;no_research;Shell +https://github.com/hannesharnisch/hannesharnisch;;no_research; +https://github.com/hannesharnisch/IOWarriorInfo;Messen des Spannungsabfalls eines Kondensators im Informatikunterricht;no_research;HTML +https://github.com/hannesharnisch/localizationExcelParser;;no_research; +https://github.com/hannesharnisch/MPConnectivity;Swift library on top of Apples MultipeerConnectivity Framework;no_research;Swift +https://github.com/hannesharnisch/MusicSwift;Library for finding and Playing Music;no_research;Swift +https://github.com/hannesharnisch/PasswordStoreSwift;Package for storing Passwords;no_research;Swift +https://github.com/hannesharnisch/PublishedPropertyWrapper;;no_research;Swift +https://github.com/hannesharnisch/sch_felder;;no_research;Java +https://github.com/hannesharnisch/sch_montecarlo;Monte Carlo simulation mit UI;no_research;Java +https://github.com/hannesharnisch/swiftHTTP;;no_research;Swift +https://github.com/hannesharnisch/SwiftLiveData;;no_research;Swift +https://github.com/hannesharnisch/swiftui-essentials;useful Swiftui components that can be reused;no_research;Swift +https://github.com/hannesharnisch/TiMaTo;TiMaTo zeiterfassungstool für die Arbeitszeit;no_research;HTML +https://github.com/hannesharnisch/WeParty;Create a Party and share Musik;no_research;Swift +https://github.com/hatschito/bbb_logo_geowiss;;no_research; +https://github.com/hatschito/BuildingDetection;Detect buildings by a combination of different filters and clusterin (kmean, sobel, morphological filters);no_research;Python +https://github.com/hatschito/download_bio_reactor_locations;;no_research;Shell +https://github.com/hatschito/Download_Geocoded_Real_estate_data;The following short R script uses the Json parser Jsonlite and fetches gecoded real estate offers via the Nestoria REST API. ;no_research;R +https://github.com/hatschito/maptimeBER;A repo for organizers of maptimeBER sessions ;no_research; +https://github.com/hatschito/Random_Forest_Landsat;RandomForest classification of satellite imagery (Landsat 5 TM / Landat 8 OLI) and validation ;no_research;R +https://github.com/hatschito/Remote_Sensing_Lab;Informations about the Remote Sensing Lab;no_research; +https://github.com/hatschito/Rental_data_download_shell_script_WGET_JQ;Rental_data_download_shell_script_WGET_JQ;no_research;Shell +https://github.com/hatschito/scrape_geocode_rental_data;Script to scrape rental data from the German portal Immobilienscout24 ;no_research;Python +https://github.com/hatschito/Sentinel_dataSearch;;no_research; +https://github.com/hatschito/webodm_intro;An introduction to WebODM;no_research; +https://github.com/hatschito/WFS_Leaflet;WFS in leaflet.js via Ajax;no_research; +https://github.com/Hazem0803/Income-Project;This is a binary classification where classify if the income greater than 50k or less than 50k depends on many features.;no_research; +https://github.com/heiko-etzold/cubeling-app;Source Code of App Cubeling;no_research;Swift +https://github.com/heiko-etzold/cubeling-material;This is an open guide for teachers about the Cubeling App by Heiko Etzold.;no_research;TeX +https://github.com/heiko-etzold/nim-app;;no_research;Swift +https://github.com/heiko-etzold/nim-material;;no_research;TeX +https://github.com/heiko-etzold/teaching-material;;no_research;HTML +https://github.com/heiko-etzold/teaching-stoffdidaktik;Vorlesungsskript zur Stoffdidaktik Mathematik im Wintersemester 2022/23 an der Universität Potsdam bei Dr. Heiko Etzold;no_research;TeX +https://github.com/heyhen/funNCion;predicting LOF vs GOF variant effects in SCN and CACNA1 genes;research;R +https://github.com/heyhen/starter-hugo-research-group;;no_research;TeX +https://github.com/hGl0/BA_Code;Implementation for my bachelor thesis about fair correlation clustering;no_research;Jupyter Notebook +https://github.com/hGl0/Covid-19;Implementation of COVID-19 feature analysis and machine learning techniques to predict outcome of infection;no_research;Jupyter Notebook +https://github.com/hGl0/Cryptology;Implementations for course cryptology at AU;no_research;Python +https://github.com/hGl0/Dynamics-of-the-climate-System-1;Implementation of Myles Model to display changes of temperature over time regarding CO2 changes;no_research;Python +https://github.com/hGl0/IDA;Implementation of project for course Intelligente Datenanalyse/Machine Learning at University Potsdam;no_research;Jupyter Notebook +https://github.com/hGl0/NearestPair;Implementation of algorithms to find the closest pair of points in a set in two dimensional space;no_research;Python +https://github.com/hGl0/Sarcopenia;Data and implementation of statistical analyiss of sarcopenia dataset;no_research;Jupyter Notebook +https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures;"This repository contains all correction schemes proposed and used in the article ""Border effect corrections for diagonal line based recurrence quantification analysis measures"" (submitted to Physics Letters A)";research;MATLAB +https://github.com/hkraemer/InterSpikeSpectra-Matlab;InterSpikeSpectra for Matlab;no_research;MATLAB +https://github.com/hkraemer/InterSpikeSpectra.jl;Obtaining spectra of spike-train-decomposed signals.;no_research;Julia +https://github.com/hkraemer/MCDTS.jl;;no_research;Julia +https://github.com/hkraemer/PECUZAL_Julia;For Hauke and George's code on delay coordinate embedding;research;Julia +https://github.com/hkraemer/PECUZAL_Matlab;PECUZAL implementation in Matlab;research;HTML +https://github.com/hkraemer/PECUZAL_python;;research;Python +https://github.com/hkraemer/Recurrence_Spike_Spectra;Reproducible Code Base for the application of the InterSpike-Spektrum idea to tau-recurrence data from complex systems.;no_research;PostScript +https://github.com/hpi-sam/Adversarial-Digital-Twins;Materials from the course Adversarial Self-Supervised Learning with Digital Twins;no_research;Java +https://github.com/hpi-sam/AI_Ethics_Engineering;Prototypes, Tutorials, Speifications for Engineering Ethical AI Systems;no_research; +https://github.com/hpi-sam/ask-your-repository-api;This service provides an api to store artefacts with their related meta-data and tags and performs machine learning on them;no_research;Python +https://github.com/hpi-sam/ask-your-repository-dialogflow-adapter;NodeJS API for handling voice query fulfilment with Dialogflow.;no_research;JavaScript +https://github.com/hpi-sam/ask-your-repository-docker;Docker Deployment of Ask-Your-Repository;no_research;Shell +https://github.com/hpi-sam/ask-your-repository-old-api;;no_research;JavaScript +https://github.com/hpi-sam/ask-your-repository-web;React Web Application for visualising and managing image data. Main user interface of the Ask You Repository project.;no_research;JavaScript +https://github.com/hpi-sam/bandits-4-self-repair;Multi-Armed bandits models for online learning of self-repair actions;no_research;Jupyter Notebook +https://github.com/hpi-sam/BP2018HG1;Bachelor Project Documentation;no_research; +https://github.com/hpi-sam/digital-fuesim-manv;A German simulation system for training emergency medical services leadership personnel on how to manage Mass Casualty Incidents.;no_research;TypeScript +https://github.com/hpi-sam/digital-fuesim-manv-public-test-scenarios;Public test scenarios for the Digital Fuesim MANV project.;no_research; +https://github.com/hpi-sam/dps.training_shared_files;;no_research;Dart +https://github.com/hpi-sam/ethical-recsys-engineering;Ethical concerns and solutions for engineering recommender systems;no_research; +https://github.com/hpi-sam/Extended-GDNs;Evaluation artifacts for extended Generalized Discrimination Networks;no_research;Java +https://github.com/hpi-sam/GNN-Commenters;Exploration of Graph Neural Network techniques for representation, prediction, and intervention on networks of comments on news sites.;no_research; +https://github.com/hpi-sam/GNN-CommunityInteraction;Repo fro Bastian, Leo and Berkay project;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-Connectomics;Exploration of Graph Neural Networks techniques for Connectomics ;no_research; +https://github.com/hpi-sam/GNN-Course-2020;Lecture Materials;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-Course-2021;Materials of the Graph Neural Networks course taught in Winter Semester 2021 at the Hasso-Plattner Institute University of Potsdam;no_research; +https://github.com/hpi-sam/GNN-Effectants;Investigate different methods for link prediction and their effectiveness for the polypharmacy problem. ;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-EntityLinking;Exploration of Graph Neural Network techniques to represent, predict, and intervene on Entity Linking tasks.;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-for-Knowledge-Graphs;Graph Neural Networks for Knowledge-Graph Systesm ;no_research; +https://github.com/hpi-sam/GNN-NLP;Exploration of Graph Neural Networks for representation, prediction, and intervention in NLP tasks;no_research; +https://github.com/hpi-sam/GNN-SpaceTimeGraphs;Graph Neural Networks utilization for Spatiotemporal graphs. These methods will be applied into the problem of forecasting traffic flow on PEMS-Bay, METR-LA and Seattle Loop Datasets;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN_Graph_Query-Matching;Graph Neural Networks for Graph Query Matching Tasks;no_research;Python +https://github.com/hpi-sam/host-graph-sensitive-rete-nets;Repository containing evaluation artifacts for host-graph-sensitive RETE nets.;no_research;Java +https://github.com/hpi-sam/HT_WithinBetweenGroups;Hypotheses tests for within and between group experiments ;no_research;R +https://github.com/hpi-sam/Incremental-TGGs-for-Multi-version-Models;;no_research;Java +https://github.com/hpi-sam/MachineLearningControl;Machine Learning-Based Control of Dynamical Systems ;no_research;Java +https://github.com/hpi-sam/MarkovModels_Lecture;Hidden Markov Models Learning for Self-Adaptive Systems. Defintion of hidden states, observations, and application of the Baum-Welch algorithm;no_research;Jupyter Notebook +https://github.com/hpi-sam/MARL-TransferLearning;Projects on Transfer Learning for Multi-Agent Reinforcement Learning (MARL) in Self-Adaptive Systems;no_research; +https://github.com/hpi-sam/Meta-Reinforcement-Learning-for-SAS;Exploration of meta-learning methods and techniques in reinforcement learning with appication to self-adaptives systems;no_research; +https://github.com/hpi-sam/minimum-wage-rl;Project to share documentation, source code and analyzes on the topic of simulating effects of minimum wage interventions on employment and other economic metrics.;research;Python +https://github.com/hpi-sam/multi-version-models;Repository containing evaluation artifacts for multi-version models.;no_research;Java +https://github.com/hpi-sam/ProbabilisticModels_WiSe22_23;Projects on Discrete Time Markov Chains, Continuous Time Markov Chains, Hidden Markov Models, Markov Decision Processes;no_research;Jupyter Notebook +https://github.com/hpi-sam/QuantumProgramming;Exercises, Tasks, and Projects for the Course on Quantum Programming;no_research;Jupyter Notebook +https://github.com/hpi-sam/Responsible-AI;Course work of Responsible Artificial Intelligence Project Seminar;no_research; +https://github.com/hpi-sam/rl-4-self-repair;Reinforcement Learning Models for Online Learning of Self-Repair and Self-Optimization;no_research;Jupyter Notebook +https://github.com/hpi-sam/RL.4.Autonomous.Vehicles;Training reinforcement learning agents to coordinate autonomous vehicles ;no_research; +https://github.com/hpi-sam/RL_4_Feedback_Control;Train a reinforcement learning agent online to control a self-healing mechanism;no_research;Jupyter Notebook +https://github.com/hpi-sam/RL_SelfSupervised_GameEngine;"Exploring Self-supervised Self-Adaption Mechanisms Based on Continuous Reinforcement Learning with Application to Game Systems""";no_research; +https://github.com/hpi-sam/robust-marl4sas;Research project on robust multi-agent reinforcement learning (marl) for self-adaptive systems (sas);no_research;Jupyter Notebook +https://github.com/hpi-sam/Safe-RL-4-SAS;;no_research;Python +https://github.com/hpi-sam/sct-teaching-materials;;no_research;TeX +https://github.com/hpi-sam/sct-validation-framework;Tool Support for the Teaching of State-Based Behavior Modeling: A validation framework that simulates and animated environments interacting with the code generated from statecharts to be used for teaching modeling.;no_research;Java +https://github.com/hpi-sam/Spatio-Temporal-Graphs;Projects on Spatio-Temporal Graphs;no_research;Jupyter Notebook +https://github.com/hpi-sam/TGGs-for-Multi-Version-Models;Evaluation artifacts for TGGs for multi-version models;no_research;Java +https://github.com/HPIMakerKlub/Cyberblaster;Cyber! Cyber! Yeah!;no_research;Arduino +https://github.com/HPIMakerKlub/dice;A simple dice pcb to be used a student events;no_research;Eagle +https://github.com/HPIMakerKlub/doorbell;;no_research;Arduino +https://github.com/HPIMakerKlub/ESP8266_Time;A time library, that keeps the current time automatically updated via NTP;no_research;C++ +https://github.com/HPIMakerKlub/Fluepdot;;no_research;Eagle +https://github.com/HPIMakerKlub/Fotobox;Visit the website:;no_research;CSS +https://github.com/HPIMakerKlub/game_controller;A game controller built from Arduino sensors.;no_research;Python +https://github.com/HPIMakerKlub/knitting;Strickmaschinen;no_research; +https://github.com/HPIMakerKlub/LED_Panel;A Reverse-Engineering project for controlling Annax LED panels (from trains).;no_research;Objective-C +https://github.com/HPIMakerKlub/loetworkshop;;no_research; +https://github.com/HPIMakerKlub/notenBox;Eine Box fürs Regal - Lasercut;no_research; +https://github.com/HPIMakerKlub/sensebox;Die Sensebox vom Makerklub;no_research;C++ +https://github.com/HPIMakerKlub/vrsandbox;;no_research;CSS +https://github.com/HPIMakerKlub/Wordclock;Eine einfach nachzubauende Wordclock.;no_research;C++ +https://github.com/hsleonis/achitecture;Achitect website;no_research;PHP +https://github.com/hsleonis/alquran-dashboard;Angular Js dashboard with PHP EL framework;no_research;PHP +https://github.com/hsleonis/bamboo_hr;Python API tool for Bamboo HR management;no_research;Python +https://github.com/hsleonis/basetech;Base Technologies;no_research;PHP +https://github.com/hsleonis/bladewp;Parse plain HTML data and converts to WP snippets;no_research;JavaScript +https://github.com/hsleonis/brandmakers;Builders site with angular js;no_research;PHP +https://github.com/hsleonis/cancer-analysis;Machine Learning Model for Cancer Analysis (Random Forest and Linear Regression);no_research;Jupyter Notebook +https://github.com/hsleonis/development-company;Developer website in WordPress;no_research;PHP +https://github.com/hsleonis/dgroup;Corporate company theme;no_research;CSS +https://github.com/hsleonis/earthquakemap;Voluntery earthquake support and public support wp theme;no_research;PHP +https://github.com/hsleonis/expenser;Desktop app Expense calculator with chromium;no_research;JavaScript +https://github.com/hsleonis/expressworks;Nodeschool.io Expressworks tutorial solutions;no_research;JavaScript +https://github.com/hsleonis/filmmaker-wp-theme;WP minimal theme for company promotion;no_research;PHP +https://github.com/hsleonis/grading_app;Small app in flask displaying student grades;no_research;Python +https://github.com/hsleonis/gulp-frontend-developer;Development environment for frontend developer;no_research;JavaScript +https://github.com/hsleonis/healthy-entrepreneurs;Angular js admin panel;no_research;HTML +https://github.com/hsleonis/image-resizer;Bulk Image resizer with PHP & GD library;no_research;PHP +https://github.com/hsleonis/ios-icon-splash-screen;Generate iOS app icon and splash screen from one image;no_research;PHP +https://github.com/hsleonis/javascripting;Nodeschool.io Javascripting tutorial solutions;no_research;JavaScript +https://github.com/hsleonis/jquery-flipbook;Builders project with jQuery flipbook;no_research;JavaScript +https://github.com/hsleonis/learnyounode;Learn you node official node tutorial solutions;no_research;JavaScript +https://github.com/hsleonis/leoSlider;Cool jquery slider plugin with moving lines.;no_research;JavaScript +https://github.com/hsleonis/machine-learning;Some Machine Learning and Data Science Notebooks.;no_research;Jupyter Notebook +https://github.com/hsleonis/meditation-theme;;no_research;PHP +https://github.com/hsleonis/minimac-laravel;Laravel Minimal Blog;no_research;PHP +https://github.com/hsleonis/ngMaker;Angular project directory structure maker;no_research;JavaScript +https://github.com/hsleonis/seagul-wp-theme;WordPress Theme;no_research;PHP +https://github.com/hsleonis/shahriar-plugin-framework;WP Plugin Framework;no_research;PHP +https://github.com/hsleonis/slack-slash;;no_research;HTML +https://github.com/hsleonis/spa;Single page application - Mini blog with facebook integretion;no_research;PHP +https://github.com/hsleonis/titan-file-upload;This plugin is an extension of Titan Framework. It adds any file upload functionality on Titan Framework which is currently unavailable.;no_research;PHP +https://github.com/hsleonis/tmx-any-post-plugin;This plugin will help you to use any custom post or pages as widget.;no_research;PHP +https://github.com/hsleonis/user-forum;Forum with PHP EL framework for creating REST APIS;no_research;PHP +https://github.com/hsleonis/viewerjs;Viewer JS and PDF demo;no_research;JavaScript +https://github.com/hsleonis/vola-wp-theme;Fully object oriented wp theme;no_research;PHP +https://github.com/hsleonis/woocommerce-massive-customization-theme;Woocommerce practice theme;no_research;PHP +https://github.com/hsleonis/wp-lock-screen;;no_research;PHP +https://github.com/hsleonis/wp-revision-master;Powerful and best post revision control, compare, restore!;no_research; +https://github.com/hsleonis/WP-waterboat;WodrPress theme with LEO's WP framework;no_research;PHP +https://github.com/hsleonis/xportfolio-wp-plugin;xPortFolio is a simple wordpress plugin for easily adding various portfolio on your wordpress site.;no_research;PHP +https://github.com/Hugo-Robalino/IM_Graph_Neural_Network;Center Loss implementation in a Graph Neural Network;no_research;Python +https://github.com/Hugo-Robalino/PM_Asprilo;Warehouse automation with mobile robots, focus: step parallelization;no_research;Classic ASP +https://github.com/Hugo-Robalino/PM_Coreference;Performance evaluation of neuralcoref using the GUM Corpus;no_research;Python +https://github.com/Hugo-Robalino/PM_Text_Mining;Text classification of self reports from teaching students;no_research;Jupyter Notebook +https://github.com/hydrogo/2018_VinoRead_wrkshp;Runoff modeling: as simple as possible, but not simpler. Hydrological modeling workshop.;no_research;Jupyter Notebook +https://github.com/hydrogo/4Y11M2D;;no_research;Jupyter Notebook +https://github.com/hydrogo/beats-of-the-era;;no_research; +https://github.com/hydrogo/blog;;no_research;HTML +https://github.com/hydrogo/DA_and_ML_in_hydrology;"""Data analysis and Machine learning in hydrology"" course materials";no_research;Jupyter Notebook +https://github.com/hydrogo/FIT_ML;Machine learning models determine factors affecting transit line dynamics;no_research;Jupyter Notebook +https://github.com/hydrogo/HMM;hydrological modeling metrics of fit ;no_research;Jupyter Notebook +https://github.com/hydrogo/KALI;KALI;research;Jupyter Notebook +https://github.com/hydrogo/KALIv2;KALIv2;research;Jupyter Notebook +https://github.com/hydrogo/LHMP;Lumped Hydrological Models Playgroud;research;Python +https://github.com/hydrogo/mel;Mass extinction (machine) learning;no_research;Jupyter Notebook +https://github.com/hydrogo/ML_in_hydrology_gs;Getting started with machine learning in hydrology;no_research; +https://github.com/hydrogo/MORS;modern hydrological modeling and forecasting system;no_research;Jupyter Notebook +https://github.com/hydrogo/openforecast;OpenForecast: runoff forecasts for free;no_research; +https://github.com/hydrogo/opennowcast;OpenNowcast: the first end-to-end operational platform for precipitation nowcasting based on deep learning;no_research; +https://github.com/hydrogo/rainnet;RainNet: a convolutional neural network for radar-based precipitation nowcasting;research;Python +https://github.com/hydrogo/rainymotion;Python library for radar-based precipitation nowcasting based on optical flow techniques;research;Python +https://github.com/hydrogo/RFR;;no_research;HTML +https://github.com/hydrogo/RFR-codes;The collection of python scripts and Jupyter Notebooks for the compilation of the Runoff for Russia (RFR v1.0) dataset.;no_research;Jupyter Notebook +https://github.com/hydrogo/SWAP;SWAP (Soil Water - Atmosphere - Plants) land-surface model by Y.M.Gusev and O.N.Nasonova;no_research;FORTRAN +https://github.com/hydrogo/WAT;What about water;no_research; +https://github.com/hydrogo/YaDataNightPrep;;no_research; +https://github.com/iliakur/aoc-2017;Advent of Code 2017;no_research;Jupyter Notebook +https://github.com/iliakur/c-u-later-elevator;;no_research;TeX +https://github.com/iliakur/cogsys-deep-learning;Summer semester 2016, MS in Cognitive Systems. Repo for Deep Learning class.;no_research;Python +https://github.com/iliakur/cogsys-python-intro;Introduction to Python for Cognitive Systems MSc. at University of Potsdam;no_research;Jupyter Notebook +https://github.com/iliakur/datierung;A converter for Latin dates found in medieval documents into conventional format.;no_research;Python +https://github.com/iliakur/dd-agent-docker-compose-mongo-integration;;no_research; +https://github.com/iliakur/dl-gms;Deep Learning with Generative Models;no_research;Jupyter Notebook +https://github.com/iliakur/dotfiles;Configs managed by chezmoi;no_research;Shell +https://github.com/iliakur/europython2016-re;re-Discovering Python's re module;no_research;CSS +https://github.com/iliakur/gum;They say in order to fix anything you need a Russian... and some Gum;no_research;TeX +https://github.com/iliakur/hello-world;;no_research; +https://github.com/iliakur/LaTeX;A collection of templates, bib files and whatever else I find useful related to LaTeX;no_research;TeX +https://github.com/iliakur/minimal;;no_research;Python +https://github.com/iliakur/miteclock;A command-line for the mite time-tracker that gets out of your way!;no_research;Python +https://github.com/iliakur/NLP;A collection of various scripts and progs for the UMass Compsci 585 (Intro to Natural Language Processing) class.;no_research;Python +https://github.com/iliakur/PermJack;;no_research;PHP +https://github.com/iliakur/PhdPlayground;;no_research; +https://github.com/iliakur/pre-commit-hook-prototype;What a hook might look like if it uses the pre-commit framework from Yelp. Documentation scattered around the files.;no_research;Python +https://github.com/iliakur/python-experiments;Playing around with Python :);no_research;Jupyter Notebook +https://github.com/iliakur/revacom-matchmaker;;no_research; +https://github.com/iliakur/revacom-time-tracking;;no_research;Python +https://github.com/iliakur/rita_heallis;;no_research;Python +https://github.com/iliakur/RoboSanta;Make sure all kids big and small get their presents on time!;no_research;Prolog +https://github.com/iliakur/TABot;Some scripts for making a TA's life easier.;no_research;Python +https://github.com/iliakur/test;;no_research; +https://github.com/iliakur/the-three-stooges;Final project for Deep Learning at Uni Potsdam;no_research;Jupyter Notebook +https://github.com/iliakur/vim;Backing up my vim setup.;no_research;VimL +https://github.com/itakouna/helm-chart-template;;no_research; +https://github.com/itakouna/helm-test;;no_research; +https://github.com/itakouna/MicroServicesDocumentation;The docs for the MicroServicesProject;no_research; +https://github.com/itakouna/terraform-provider-gridscale-pk;;no_research;Go +https://github.com/ItsNotYou/cordova-plugin-ntp-analyzer;Cordova Plugin for checking NTP connections;no_research;Java +https://github.com/ItsNotYou/git-sync;git-sync keeps Git repositories in sync;no_research;Python +https://github.com/ItsNotYou/jupyter-quickstart;;no_research;Jupyter Notebook +https://github.com/ItsNotYou/lrs-analysis;;no_research;JavaScript +https://github.com/ItsNotYou/Mobile.UP-Context;;no_research;JavaScript +https://github.com/ItsNotYou/openings-translator;Translates human readable opening hours at the University of Potsdam into OpenStreetMap opening hours;no_research;HTML +https://github.com/ItsNotYou/RaumfinderUniBremen;;no_research;Java +https://github.com/ItsNotYou/RouteMeBA;;no_research;JavaScript +https://github.com/ItsNotYou/SlideOCR;;no_research;Python +https://github.com/ItsNotYou/xapi-spike;;no_research;JavaScript +https://github.com/iuliia-mozhina/Caravan-Insurance-Challenge;Identify potential purchasers of caravan insurance policies;no_research;Jupyter Notebook +https://github.com/iuliia-mozhina/iuliia-mozhina;;no_research; +https://github.com/iuliia-mozhina/Tweet-Sentiment-Extraction;This repository is my semester project in course Intelligent Data Analysis & Machine Learning II in winter semester 2022/23 at the Unive;no_research;Jupyter Notebook +https://github.com/IvanSpirandelli/fastapi-vite-vue-dockerized;This is a template project with a FastAPI (Python) backend and a Vite-Vue frontend. Frontend and backend are dockerized and the template contains a login/logout flow. ;no_research;Python +https://github.com/IvanSpirandelli/kobo;Konter Boulevard;no_research;Elixir +https://github.com/IvanSpirandelli/Masterarbeit-Computational-Topology-and-Random-Simplicial-Complexes;Ivan Spirandellis Masterarbeit;no_research;TeX +https://github.com/IvanSpirandelli/Programming-Exercises-for-Computational-Topology;"This repository contains exercises that were given to the students of the course ""Computational Topology"" at University of Potsdam in 2022. The courses contents were based on Herbert Edelsbrunners ""Computational Topology: An Introduction.""";no_research;Jupyter Notebook +https://github.com/IvanSpirandelli/SolSim.jl;Codebase can be utilized to simulate hard sphere particles in a solvent via the morphometric approach.;no_research;Julia +https://github.com/jakobwalter/ETOC;Exact Testing of Overdispersed Count Data;no_research;HTML +https://github.com/jakobwalter/jakobwalter;;no_research; +https://github.com/jakobwalter/RNAPerm;Permutation tests for RNA-Seq data.;no_research;R +https://github.com/jan-wilhelm/AutoHomeAlexaController;;no_research;Java +https://github.com/jan-wilhelm/AutoHomeLightsSender;Component of my AutoHome System serving as a proxy between the master and the raspi as a slave;no_research;Java +https://github.com/jan-wilhelm/AutoHomeWebInterface;;no_research; +https://github.com/jan-wilhelm/BloxAndroid;;no_research;Java +https://github.com/jan-wilhelm/diagrams;;no_research; +https://github.com/jan-wilhelm/exclamo-website;;no_research;PHP +https://github.com/jan-wilhelm/Flipper;A Flipper game using PyGame;no_research;Python +https://github.com/jan-wilhelm/hpi-mathe3;;no_research;R +https://github.com/jan-wilhelm/MNISTNetwork;Neural Network designed to recognize the digits of the MNIST dataset;no_research;Java +https://github.com/jan-wilhelm/Object2D;A 2D game library with useful functions for graphics and mathematics. Does not include any rendering library. Should be used with pygame;no_research;Python +https://github.com/jan-wilhelm/PeerReview;Review System for school;no_research;JavaScript +https://github.com/jan-wilhelm/TicTacToe;Tic Tac Toe game developed in Python using the www.codeksulptor.org environment;no_research;Python +https://github.com/janalexxxx/dashboard-death;Data visualization of unnatural causes of death all over the world;no_research;HTML +https://github.com/janalexxxx/DCI-Dice-Throwing-Game;;no_research; +https://github.com/janalexxxx/moni;A driving air monitoring vehicle with ecological air filter implementation;no_research;C++ +https://github.com/janalexxxx/om-watch;;no_research;C +https://github.com/janalexxxx/processing-fhp;"Selection of a few Processing projects created as part of the university course ""Processing for Designers"" at FH Potsdam";no_research;Processing +https://github.com/janalexxxx/simple-ar-example;;no_research;C# +https://github.com/janametz2023/janametz2023;;no_research; +https://github.com/JanikRaue/parameter-estimation-for-differential-equations;"This repository was created to store the source code of my master's thesis at the University of Potsdam in mathematics. The topic of the thesis is: ""Parameter estimation for differential equations: A comparison between the use of data assimilation and deep learning."" Janik Raue";no_research;Jupyter Notebook +https://github.com/jannametz/AlgothitmsAlex;Algorithms and Data Structures the following algorithms are represented: Complexity and O-Notation, Stack, Merge Sort and Quick Sort, Binary Search, Towers of Hanoi, Fibonaci Recursion …;no_research;Java +https://github.com/jannametz/bank;;no_research;Java +https://github.com/jannametz/bankApp;Simple BANK Application with ability to manage accounts, transfer money between accounts and manage related transactions;no_research;Java +https://github.com/jannametz/demoMax2;;no_research;Java +https://github.com/jannametz/jannametz;My personal repository;no_research; +https://github.com/jannametz/MaxiBot.java;MaxiVitaminBot Maxi was created to know to find out the benefits of the vitamins and with Vitamins are contained in which products.;no_research;Java +https://github.com/jannametz/TelRan_18_01_2022-database;;no_research;Shell +https://github.com/jannametz/TelRan_18_01_2022-IvanLinux-;;no_research;Shell +https://github.com/jannametz/TelRan_18_01_2022-JavaAndy-;;no_research;Java +https://github.com/jannametz/TelRan_18_01_2022-JavaTanja-;;no_research;Java +https://github.com/jannametz/unicode-table;unicode-table - List of most common Unicode characters;no_research; +https://github.com/jbspeakr/awesome-engineering;My Favourite Engineering Links;no_research; +https://github.com/jbspeakr/cardmarket;;no_research;Go +https://github.com/jbspeakr/codename-gen;Lightweight Codename Generator;no_research;CSS +https://github.com/jbspeakr/datensparsam;Übermittlungssperre - Opt-out private and personal data at governmental record sections in Germany.;no_research;Python +https://github.com/jbspeakr/datensparsam-chromed;Datensparsam.de Chrome-App;no_research; +https://github.com/jbspeakr/datensparsam-foxed;;no_research; +https://github.com/jbspeakr/domainhack.me;DomainHack.me, the World's finest Domain-Hacking Tool;no_research;JavaScript +https://github.com/jbspeakr/el;;no_research;JavaScript +https://github.com/jbspeakr/github-licker;A Github License Checker for Organisational Repositories;no_research;Python +https://github.com/jbspeakr/LaTex-UP;LaTex template University of Potsdam for bachelor- and master-theses and seminary papers.;no_research;TeX +https://github.com/jbspeakr/letterman.py;Python lib for creating DIN 5008 and DIN 676 compliant PDF letters (Under Construction);no_research;Python +https://github.com/jbspeakr/li.cense.it;A Github Repo License Checker;no_research;CSS +https://github.com/jbspeakr/nerdsofalltrad.es;The nerdsofalltrad.es website is a blog about next-generation frontend engineering;no_research;JavaScript +https://github.com/jbspeakr/rennrad;;no_research;HTML +https://github.com/jbspeakr/transaction-api;Demo Transaction API Project;no_research;Java +https://github.com/jbspeakr/uebermittlungssperre;German Übermittlungssperre forms;no_research; +https://github.com/jbspeakr/urbanartcore.eu;;no_research; +https://github.com/jbspeakr/wk;;no_research;HTML +https://github.com/jbspeakr/zxcvbn-matchers-data;;no_research; +https://github.com/jembach/makaira-trailwork-architecture;;no_research;TypeScript +https://github.com/jembach/php-config;;no_research;PHP +https://github.com/jembach/php-database;PHP Database Connection Class;no_research;PHP +https://github.com/jembach/php-errorReporting;;no_research;PHP +https://github.com/jembach/php-file;;no_research;PHP +https://github.com/jembach/php-FormularCreator;;no_research;PHP +https://github.com/jembach/php-menu;;no_research;PHP +https://github.com/jembach/renovate-presets;contains the presets for renovate to be used in other templates;no_research; +https://github.com/jembach/stupo-web-main;contains the open source media education platform stupo;no_research;TypeScript +https://github.com/JenniferPohle/github-slideshow;A robot powered training repository :robot:;no_research;Ruby +https://github.com/JenniferPohle/PHSMM;R package - penalised HSMM estimation;no_research;R +https://github.com/jesse292cmd/jessenwimo-taxi;;no_research; +https://github.com/jesse292cmd/jessenwimotaxiii;;no_research;Python +https://github.com/jgontrum/aiohttp-scraper;A robust asynchronous web scraping client using aiohttp.;no_research;Python +https://github.com/jgontrum/angular-meteor-ionic-Demo;Very basic Ionic app that displays a content in a tab-view or a sidemenu (see branch).;no_research;JavaScript +https://github.com/jgontrum/AStarParser;Basic implementation of the A* parsing algorithm introduced by Klein and Manning in 2003;no_research;Java +https://github.com/jgontrum/cky-parser-optimization;Assignments and materials for the syntactic parsing class at Uppsala University.;no_research;Python +https://github.com/jgontrum/connexion-cookiecutter;Template for building micro service APIs with Connexion, deployed via Docker and running with uWSGI & NGINX.;no_research;Python +https://github.com/jgontrum/CorpusHashtagStatistics;Generates statistics for the hashtag usage in text corpus.;no_research;Python +https://github.com/jgontrum/cv;Code of my CV website + Docker deployment;no_research;HTML +https://github.com/jgontrum/datasciencecoursera;;no_research; +https://github.com/jgontrum/deeplearning-nlp-assignment1;;no_research;Python +https://github.com/jgontrum/deeplearning-nlp-assignment2;;no_research;Python +https://github.com/jgontrum/docker-elck;ELK Stack + Cerebro (former 'kopf'-plugin);no_research; +https://github.com/jgontrum/docker-tensorflow-tutorial;Small introduction to Docker with the example of a Tensorflow use case.;no_research;Makefile +https://github.com/jgontrum/elmo_from_conll;Scripts to collect ELMo layer outputs for sentences from a CoNLL treebank.;no_research;Shell +https://github.com/jgontrum/fastapi_jwt_auth_with_aws_cognito;Example code for my Medium article.;no_research;Python +https://github.com/jgontrum/Flatfinder;Checks real estate websites periodically for new offers and notifies you via email or Prowl push message ;no_research;Python +https://github.com/jgontrum/GeoTweetEstimator;Estimating GPS coordinates of tweets based on the text. Presented at NLP4CMC 2015.;no_research;Python +https://github.com/jgontrum/histogramPostprocessor;Analyses data and lets you create histograms in LaTeX with a build-in console. Created for a class at university.;no_research;Python +https://github.com/jgontrum/indri_suite;Backend and frontend to evaluate information retrieval tasks.;no_research;TypeScript +https://github.com/jgontrum/insomnia-demo;Demo API to reproduce a bug;no_research;Python +https://github.com/jgontrum/instagram-scraper;Crawls hashtags in Instagram and saves them with the image URLs to AWS DynamoDB;no_research;Python +https://github.com/jgontrum/ionic-npm;;no_research;JavaScript +https://github.com/jgontrum/irtg.intersection;Automatically exported from code.google.com/p/irtg.intersection;no_research;Java +https://github.com/jgontrum/jenkins-dind-slave;Finally a *working* Dockerfile for a Docker-in-Docker Jenkins slave;no_research; +https://github.com/jgontrum/jEvalB;Compiles the evalb class from Stanford NLP directly;no_research;Java +https://github.com/jgontrum/jgsnippets;Collection of classes and functions I often use.;no_research;Python +https://github.com/jgontrum/jupyter-Word2Vec-Docker;Jupyter Notebook for Word2Vec + NLP running on Docker. Auth via nginx htpasswd.;no_research;Python +https://github.com/jgontrum/live-berlin-apartment-map;Meteor + Angular work together to show recent Berlin flats on a map.;no_research;JavaScript +https://github.com/jgontrum/lyrics-scrapy;Crawls lyrics from MetroLyrics.com into Elasticsearch;no_research;Python +https://github.com/jgontrum/mailgun-talon;;no_research;Python +https://github.com/jgontrum/make-meteor;Makefile to setup Docker on a Debian / Ubuntu server and deploy your Meteor app;no_research;Makefile +https://github.com/jgontrum/MensaUP-API;An API for the Mensa of the University of Potsdam;no_research;Python +https://github.com/jgontrum/meteor-workshop;A small meteor project that demonstrates how to create apps with meteor + AngularJS + Ionic;no_research;JavaScript +https://github.com/jgontrum/moodcontrol;Code of our hackathon-winning proof-of-concept. (codeFEST8);no_research;Python +https://github.com/jgontrum/multilevel-coarse-to-fine-parsing;Implementation of Charniak et al.'s 'Multilevel Coarse-to-fine PCFG Parsing' for the Syntactic Parsing class at Uppsala University.;no_research;Python +https://github.com/jgontrum/parseridge;Parseridge: A Transition-based Dependency Parser;no_research;Python +https://github.com/jgontrum/PCFG-EM;Implementation of the em-algorithm for PCFGs (inside-outside-algorithm);no_research;C++ +https://github.com/jgontrum/PennToPCFG;Learns an unlexicalized PCFG from a Penn Treebank;no_research;Python +https://github.com/jgontrum/SemanticMachineTranslationEvaluation;A proof-of-concept that using FrameNet based semantic to evaluate MT systems can outperform the BLEU score.;no_research;Python +https://github.com/jgontrum/slackbot-uni-potsdam-cafeteria;Code for a bot for Slack that parses the cafeteria menu from the University of Potsdam website and posts it on a channel.;no_research;Python +https://github.com/jgontrum/spacy-api-docker;spaCy REST API, wrapped in a Docker container.;no_research;Python +https://github.com/jgontrum/spellchecker;Context sensitive spell checker that can be trained on plain text. Project for an automaton class at university.;no_research;Java +https://github.com/jgontrum/Tweegion;Map Tweets to regions by lexical content;no_research;Python +https://github.com/jgontrum/Tweets2SQL;Filter the Twitter Stream and store the Tweets in a MySQL database;no_research;Java +https://github.com/jgontrum/TwitterDialogs;;no_research;TeX +https://github.com/jgontrum/TwitterScripts;Collection of Python scripts to extract data from a Tweet database;no_research;Python +https://github.com/jgontrum/up-mensa-parser;Parses the lunch menu of the three big mensas of the University of Potsdam and writes it into a MongoDB database;no_research;Python +https://github.com/jgontrum/uu-lt-dependency-parsing;;no_research;Python +https://github.com/jgontrum/uu-lt-distributed-index;Implementing a distributed indexing demo for the information retrieval class at Uppsala University.;no_research;Python +https://github.com/jgontrum/uu-lt-machine-learning-for-nlp;Assignments for the NLP Machine Learning class at Uppsala University (http://stp.lingfil.uu.se/~nivre/master/ml.html);no_research;Jupyter Notebook +https://github.com/jgontrum/uu-lt-nlp;Contents for the Natural Language Processing class at Uppsala University HT 2017;no_research;Jupyter Notebook +https://github.com/jgontrum/uu-lt-programming-i;Assignments for the 'Introduction to Programming I' course in the Language Technology Master program at Uppsala University;no_research;Python +https://github.com/jgontrum/uuparser-with-attention;A transistion-based dependency parser utilizing attention for predicting the correct transition/label.;research;Python +https://github.com/jgontrum/WikipediaImageCrawler;Recursively extracts images that are assigned to a category in Wikipedia.;no_research;Python +https://github.com/jhilaire/guidr;An R library to allow bilateral communication with GUIDE;no_research;R +https://github.com/jhilaire/iguide;An R Shiny app to generate and analyse regression trees created with GUIDE;no_research;R +https://github.com/jhilaire/ipcc_authors;;no_research; +https://github.com/jhilaire/netsiams;;no_research;R +https://github.com/jhilaire/rfp;;no_research; +https://github.com/jhilaire/saintsulpice;;no_research;HTML +https://github.com/jhilaire/SGoS2019;Presentation of the science behind the 1.5C climate goal for Smart & Green on Stage 2019;no_research; +https://github.com/jhilaire/ssawosacarb;Data analysis of carbonization patterns in Sub-Saharan Africa (without South Africa);research;R +https://github.com/jhilaire/testingR;;no_research; +https://github.com/josues/deconstructing-storr;This project is part of a seminar at the University of Applied Sciences in Potsdam. It aims to understand and analyse the work of an artist to later transfer it into code.;no_research;JavaScript +https://github.com/josues/deconstructing-storr-code;"This is part of the project ""Deconstructing Master Artists: Marcel Storr""";no_research;JavaScript +https://github.com/josues/github-for-developers-7;;no_research; +https://github.com/josues/hoc_motion;Hour of Code: Motion;no_research;HTML +https://github.com/josues/MTVfirstday;Frequency with which music videos were broadcasted on MTV's first day, 01/08/81, in absolute numbers.;no_research;JavaScript +https://github.com/josues/paths;An exploration of analogue algorithms;no_research; +https://github.com/josues/relativity-and-iss;;no_research; +https://github.com/josues/storr;Deconstructing Master Artists: Marcel Storr;no_research; +https://github.com/josues/time-animal-animation;TickTockTick;no_research;JavaScript +https://github.com/josues/time-deconstruction;;no_research;JavaScript +https://github.com/josues/time-deconstruction-page;;no_research;JavaScript +https://github.com/jrehwaldt/HPI-13SS-Software-Profiling;Software Profiling, Hasso Plattner Institut, University of Potsdam, Germany;no_research; +https://github.com/jrehwaldt/kartoffeldruck-cheats;;no_research; +https://github.com/jrehwaldt/oryx-engine;This is a process engine developed by 6 students of the Hasso-Plattner-Institute, Potsdam Germany, as part of our Bachelor Project.;no_research;Java +https://github.com/jrehwaldt/testcontainers-gh1017;Reproducer for testcontainers-java#1017;no_research;Kotlin +https://github.com/jrehwaldt/UT-12SS-A-Pre-Intermediate-Course-in-Russian;A Pre-Intermediate Course in Russian, University of Tartu, Estonia ;no_research; +https://github.com/jrehwaldt/UT-12SS-Applied-Cryptography;Applied Cryptography, University of Tartu, Estonia;no_research;Java +https://github.com/jrehwaldt/UT-12SS-History-of-Art-of-War;History of Art of War, University of Tartu, Estonia ;no_research; +https://github.com/jrehwaldt/UT-12SS-Principles-of-Secure-Software-Design;Principles of Secure Software Design, University of Tartu, Estonia;no_research; +https://github.com/jrehwaldt/UT-12SS-Project-Management;Project Management, University of Tartu, Estonia;no_research; +https://github.com/jrehwaldt/UT-12SS-Secure-Programming-Techniques;Secure Programming Techniques, University of Tartu, Estonia ;no_research; +https://github.com/jrehwaldt/UT-12SS-Social-Informatics;Social Informatics, University of Tartu, Estonia;no_research; +https://github.com/jujara/jujara;Config files for my GitHub profile.;no_research; +https://github.com/jujara/TerraceM;TerraceM is a Matlab(R) for mapping marine and lacustrine marine terraces using high resolution topography. TerraceM has been designed by Julius Jara, Daniel Melnick and Manfred Strecker at the University of Potsdam, Germany.;no_research;Matlab +https://github.com/jujara/TerraceM_IceSat-2_bathymetry;Matlab scripts to process photon data from the IceSat-2 mission and generate corrected bathymetry ;no_research;MATLAB +https://github.com/jujara/TerraceM_IceSat-2_topography;Series of matlab scripts to map marine terraces using photon data from the IceSat-2 mission;no_research;MATLAB +https://github.com/julians/ants;Ants crawling around, looking for food, living the good life;no_research; +https://github.com/julians/Buchstabensuppe;Abgesuppt.;no_research;Java +https://github.com/julians/fhfighter;Fight the evil logo of the University of Applied Sciences Potsdam;no_research; +https://github.com/julians/ia_logo;Crap shit cockcercise;no_research; +https://github.com/julians/last.miscellaneous;Various things Last.fm. With horrible code. But I should be visualising processes for uni instead anyway.;no_research;PHP +https://github.com/julians/letters;Draws pretty lines based on letters in a text (based on a poster by Boris Müller);no_research; +https://github.com/julians/Mouseographer;Logs your mouse movement, clicks and keyboard input and draws a pretty picture with them. (That’s the plan, anyway.);no_research;C +https://github.com/julians/nunjucks-loader;Nunjucks loader for webpack, supporting both javascript templating and generating static HTML files through the HtmlWebpackPlugin.;no_research;JavaScript +https://github.com/julians/probing-projections;Probing Projections introduces a set of interaction and visualisation techniques to make examining dimensionality-reduced datasets easier.;no_research;CoffeeScript +https://github.com/julians/regex-workshop;;no_research;Python +https://github.com/julians/RemoteStrolling;;no_research;Java +https://github.com/julians/scrapper;;no_research;Python +https://github.com/julians/snowviz;Visualising the world’s snow coverage.;no_research;JavaScript +https://github.com/julians/Text-Visualisation;The code is horrible, but I’ll clean it up once the semester is over. I guess.;no_research; +https://github.com/julians/webseitenscreenshotter;Makes screenshots of websites;no_research;Python +https://github.com/julians/zcraper;Scraping ZON;no_research;Python +https://github.com/juliusgarbe/dotfiles;:wrench: My dotfiles;no_research;Shell +https://github.com/juliusgarbe/juliusgarbe;;no_research; +https://github.com/juliusgarbe/modelling_sandbox;Examples of basic numerical modelling approaches used in ice-sheet modelling and some (very) simple ice-sheet models.;research;Jupyter Notebook +https://github.com/juliusgarbe/pism-debm-simple;Code repository for PISM-dEBM-simple;research;C++ +https://github.com/juliusgarbe/pism_website_test;Repository for a PISM test website;no_research;JavaScript +https://github.com/justTil/xu-web-ai-project-22;Get to know Annie, your new AI friend.;no_research;JavaScript +https://github.com/katjakon/Coreference-Resolution;Ein Projekt für den Kurs Programmierung II im Sommersemester 2021;research;Python +https://github.com/katjakon/data-augment-depparse;Augmenting Data for Dependency Parsing in Low-Ressource Languages;no_research;Python +https://github.com/katjakon/hausa-pos;Hausa Part-of-Speech Tagging in a Low-Resource Scenario. ;no_research;Jupyter Notebook +https://github.com/katjakon/mycroft-word-game-skill;A word guessing game with mycroft;no_research;Python +https://github.com/katjakon/String-Matching;Ein Projekt für das Seminar Programmierung I im Wintersemester 20/21, Universität Potsdam;no_research;Python +https://github.com/katjakon/Terminology-Extraction-CL;Ein Projekt für den Kurs Computerlinguistische Techniken im Wintersemester 2020/21;no_research;Python +https://github.com/katjakon/Text-Mining-Wahlprogramme;Analyse von Wahlprogrammen zur Bundestagswahl - Ein Projekt für das Seminar Textanalyse in den Politikwissenschaften;no_research;R +https://github.com/katjakon/wimmelbild-final;;no_research;Python +https://github.com/KatrinSch/msc-thesis-call-detection;Detection of bird calls during nocturnal migration using machine learning;research;R +https://github.com/kekeritz/RDDR;A repository for my bachelor thesis at the University of Applied Science Potsdam;no_research;CSS +https://github.com/knit-bee/bsc-ndd-paraeval;This repository contains supplementary code for BSc thesis at the University of Potsdam;no_research;Python +https://github.com/knit-bee/ha_stance_detection;Material für Hausarbeit im Kurs Stance Detection, Universität Potsdam, Sommersemester 2021;no_research;Python +https://github.com/knit-bee/paradedup;Find near-duplicates on paragraph level;no_research;Python +https://github.com/knit-bee/parapartition;Split texts (.txt, .xml) into paragraphs;no_research;Python +https://github.com/knit-bee/pig-game;"The dice game ""Pig"" for the command line";no_research;Python +https://github.com/knit-bee/tei-make-corpus;Create a teiCorpus-file from a collection of TEI documents ;no_research;Python +https://github.com/knit-bee/tei-transform;Fix errors in xml document that make it invalid according to TEI P5;no_research;Python +https://github.com/knit-bee/unicode-pig;A (sort of) animated unicode pig for the command line;no_research;Python +https://github.com/krono/camtester;;no_research;Objective-C +https://github.com/krono/cop2016-sidewayscomp;COP 2016 Paper Sideways Composition;no_research;Python +https://github.com/krono/CrayonsInfo;;no_research;Objective-C +https://github.com/krono/dltest;;no_research;C +https://github.com/krono/dotfiles;My Dotfiles;no_research;Emacs Lisp +https://github.com/krono/endianness;;no_research;C +https://github.com/krono/hausbar;Hausbar — personal Homebrew tap;no_research;Ruby +https://github.com/krono/map-keys-on-attach;;no_research;Objective-C +https://github.com/krono/Melanin;A most simple OS X screen saver.;no_research;Objective-C +https://github.com/krono/nocommand;;no_research;Shell +https://github.com/krono/programmingexperience;;no_research; +https://github.com/krono/Squeak-Fonts;;no_research;Python +https://github.com/krono/Squeak-Trunk-Deps;Build nice pdfs from the dependency information from the Squeak trunk.;no_research;Shell +https://github.com/krono/squeaksource3;Seaside-based Monticello code repository for Squeak, Pharo and GemStone;no_research; +https://github.com/krono/SqueakSSL-build;;no_research;Makefile +https://github.com/krono/sshfp-to-tinydns;;no_research;Perl +https://github.com/krono/swathesis;An unofficial LaTeX class for writing theses at the Software Architecture Group, Hasso-Plattner-Institut, University of Potsdam, Germany.;no_research;TeX +https://github.com/krono/toggleBluetooth;Toggle the Bluetooth state on OS X;no_research;C +https://github.com/krono/x509hostmatch;;no_research;C +https://github.com/krr-up/action_juggling_robot;;no_research; +https://github.com/krr-up/asp-dse;ASP-based solution for Design Space Exploration;no_research;Python +https://github.com/krr-up/asp-macros;LaTeX macros for concepts from ASP (originally built for ASP book);no_research;TeX +https://github.com/krr-up/bibliography;📚 BibTeX bibliography files of all papers referenced by the group;research;TeX +https://github.com/krr-up/clingo-explaid;Tools to aid the development of explanation systems using clingo;no_research;Python +https://github.com/krr-up/clinguin-course-scheduling;Course scheduling project using clinguin;no_research; +https://github.com/krr-up/latex-class-ceurart;latex-class-ceurart;no_research;TeX +https://github.com/krr-up/latex-class-lni;;no_research;TeX +https://github.com/krr-up/latex-collaboration-guide;;no_research; +https://github.com/krr-up/latex-paper-template;;no_research;TeX +https://github.com/krr-up/latex-slides-template;Template for creating (blue) slides with LaTeX beamer class;no_research;TeX +https://github.com/krr-up/latex-style-comments;A scaled down version of Torsten's comments style that is hopefully more compatible;no_research;TeX +https://github.com/krr-up/logos;Collection of logos, eg for use in slides;no_research;PostScript +https://github.com/krr-up/mapf-instance-generator;MAPF instance generator;no_research;Python +https://github.com/krr-up/meta-metric-temporal;Experiments in implementing metric temporal answer set programming using metaprogramming.;no_research; +https://github.com/krr-up/metric-temporal-experiments;Various approaches to implementing metric temporal ASP.;no_research;Python +https://github.com/krr-up/notebook;;no_research;Jupyter Notebook +https://github.com/krr-up/path-repair;;no_research; +https://github.com/krr-up/python-project-template;📄 Template for python based projects.;no_research;Python +https://github.com/krr-up/renopro;Reifying non-ground ASP programs.;no_research;Python +https://github.com/krr-up/robot-scheduling-encodings;Encodings and benchmarking for the robot-scheduling paper;no_research;Python +https://github.com/krr-up/study-reg-configuration;Describing the study regulation problem as a configuration problem;no_research; +https://github.com/KrsticM/Arhitektura-racunara;Reseni zadaci iz arhitekture racunara;no_research;Assembly +https://github.com/KrsticM/enovcanik-privacy-policy;;no_research;HTML +https://github.com/KrsticM/Grafika;Predmetni projekti iz grafike - 2018/2019;no_research;C# +https://github.com/KrsticM/HCI-projekat;;no_research;C# +https://github.com/KrsticM/jsd;Jezici specifični za domen;no_research;Python +https://github.com/KrsticM/mbrs;Metodologije brzog razvoja softvera;no_research;Java +https://github.com/KrsticM/ori-2018-e2-vezba;Uradjeni zadatci za vezbu iz predmeta osnove računarske inteligencije(ORI).;no_research;C# +https://github.com/KrsticM/pjisp;Uradjene vezbe sa predmeta programski jezici i strukture podataka. ;no_research; +https://github.com/KrsticM/PMA;Programiranje mobilnih aplikacija;no_research;Java +https://github.com/KrsticM/PMA-backend;Backend za predmet programiranje mobilnih aplikacija;no_research;Java +https://github.com/KrsticM/PP;Uradjeni zadatci za pripremu kolokvijuma iz programskih prevodioca.;no_research;C +https://github.com/KrsticM/SEP;Sistemi Elektronskog Plaćanja;no_research;Java +https://github.com/KrsticM/softProject;SoftProject;no_research;Python +https://github.com/KrsticM/WEB;Zadaci za vezbu iz predmeta web programiranje.;no_research;HTML +https://github.com/kryptokommunist/Audible-GAN;This project sonifies movement through the latent space of a GAN. The project was developed for a data sonification seminar in 2021. ;no_research;Jupyter Notebook +https://github.com/kryptokommunist/board-generator;Generate a spiral game board as an laser cut template;no_research;Python +https://github.com/kryptokommunist/dotfiles;Dotfiles config for ArchLinux using swaywm;no_research;Vim script +https://github.com/kryptokommunist/flipnux;;no_research;Python +https://github.com/kryptokommunist/freecad_development_graphic;This is my attempt at documenting the workflow of the FreeCAD development process;no_research; +https://github.com/kryptokommunist/Jupyter_FreeCAD;GSOC 2020 - A better IPython and Jupyter Notebook Integration for FreeCAD;no_research;Jupyter Notebook +https://github.com/kryptokommunist/kryptokommunist;;no_research; +https://github.com/kryptokommunist/matepi;Controlling an led screen consisting of mate crates (WS2801 chipset led pixels);no_research;C +https://github.com/kryptokommunist/path-length-approximation-deep-learning;;no_research;Jupyter Notebook +https://github.com/kryptokommunist/photobox;;no_research;Python +https://github.com/kryptokommunist/planar_graphs;A learning website about planar graphs.;no_research;HTML +https://github.com/kryptokommunist/Rechenwerk;;no_research;VHDL +https://github.com/kryptokommunist/Rechoir;HPI Bootcamp 2019;no_research;Jupyter Notebook +https://github.com/kryptokommunist/Snake;Snake in form of an Arduino library;no_research;C++ +https://github.com/kryptokommunist/space-bucket;Controlling a space bucket;no_research;Objective-C +https://github.com/kryptokommunist/tolv;tolv - digital light source made in FreeCAD and KiCAD;no_research; +https://github.com/kryptokommunist/walker;"An ""art"" project";no_research;Processing +https://github.com/kryptokommunist/wallbook;Files for creating an wall info display;no_research;Shell +https://github.com/kryptokommunist/wg;WG planning web app with jquery mobile ui;no_research;Ruby +https://github.com/kushal-10/alexAndTheNaiveBoyes;Repository for Project 2 of the course Project Module : Models that Explain Themselves organized at University of Potsdam for Summer Semester 2023. Finetuning DistillBERT for classification;no_research;Jupyter Notebook +https://github.com/kushal-10/aragog;SDF and URDF files for ARAGOG.;no_research; +https://github.com/kushal-10/assignment1;assignment 1 ANLP;no_research;Python +https://github.com/kushal-10/assignment2;Assignment 2 - Intent Classification with FeedForward Neural Network;no_research; +https://github.com/kushal-10/assignment3;Character-level Language Modelling with LSTM;no_research;Python +https://github.com/kushal-10/data;Documets to load into colab;no_research; +https://github.com/kushal-10/data_combined;;no_research; +https://github.com/kushal-10/data_twosidedplatforms;;no_research; +https://github.com/kushal-10/IMGTXTFTS;Repository for Project 3 of the course Project Module : Models that Explain Themselves organized at University of Potsdam for Summer Semester 2023. Textual and Visual Feature extraction ;no_research;Python +https://github.com/kushal-10/langchainqna;Shifting the closed domain QnA from Haystack to Langchain;no_research;Python +https://github.com/kushal-10/probable-invention;Repository for Project 4 of the course Project Module : Models that Explain Themselves organized at University of Potsdam for Summer Semester 2023. Prompting LLMs to solve task;no_research;Jupyter Notebook +https://github.com/kushal-10/solid-eureka;Chat Literature - A closed domain QnA system that answers questions related to any topic provided by the user;no_research;Python +https://github.com/kushal-10/teachrep;Replication for alexa/teach;no_research;Python +https://github.com/kuzminadya/calligrid;;no_research;Clojure +https://github.com/kuzminadya/FHP-Coding-with-Ada;Coding with Ada course at University of Applied Sciences Potsdam (SS 2018);no_research;JavaScript +https://github.com/kuzminadya/FHP-data-interface;;no_research;HTML +https://github.com/kuzminadya/FHP-infovis-D3js;Data Visualization with D3.js course at University of Applied Sciences Potsdam (SS 2017) ;no_research;JavaScript +https://github.com/kuzminadya/FHP-infovis-py;Information Visualization course at University of Applied Sciences Potsdam (SS 2020);no_research;Jupyter Notebook +https://github.com/kuzminadya/l4os;Free logos for open source projects ;no_research;CSS +https://github.com/kuzminadya/mogeefont;A bitmap font for the Mogee game;no_research;Elm +https://github.com/laura-riedel/ASP-miniprojects;Answer Set Probramming (ASP): clingo encodings for solving Sudoku, Seek Numbers, and Minotaur games.;no_research; +https://github.com/laura-riedel/Final-Project-ANLP-21-22;Patronizing and Condescending Language (PCL) detection: A multi-class classification approach.;no_research;HTML +https://github.com/laura-riedel/ML-IDA-1-final-project;Short project exploring the fires dataset of the Montesinho Nature Park.;no_research;Jupyter Notebook +https://github.com/LeonHermann322/hot-prot;;no_research;Jupyter Notebook +https://github.com/LeonHermann322/judgealexa-skill;;no_research;Python +https://github.com/LeonHermann322/taskbot-skill;Assigns challenges to increase the social score of the user. also tells the score when asked.;no_research;Python +https://github.com/leooleh/neighborhood-model-schlaatz;The co-designed interactive agent-based model can be run in GAMA. It was designed as part of a cooperation of the Potsdam University of Applied Sciences (Fachhochschule Potsdam) with ProPotsdam GmbH and explores residential mobility and population dynamics in the Schlaatz neighborhood of Potsdam in the years 2020 to 2035. ;no_research;GAML +https://github.com/leooleh/participatory_modeling_workshop;Participatory Modeling with GAMA-Platform – Workshop at Technologiestiftung Berlin 19/12/17, by University of Applied Sciences Potsdam, Institute for Urban Futures;no_research; +https://github.com/leooleh/ucim-urban-culture-impact;An agent-based model demonstrator for integrating stakeholder knowledge and visualizing spatially explicit potential of cultural offers;no_research;GAML +https://github.com/linusha/bundesweiter-mietendeckel-visualisierung;This repository contains code for an interactive explanation/visualization of the effects a federal rent cap would have in Germany.;research;JavaScript +https://github.com/linusha/dotfiles;Backup of my personal dotfiles for vim, zsh,...;no_research;Shell +https://github.com/linusha/estudiante;A tiny tool to make presentations and demos within `iframes` inside of `lively.next` easier.;no_research;JavaScript +https://github.com/linusha/fino-solarized;;no_research; +https://github.com/linusha/FoDS21-Demo;A repository for demonstrating how to use git, GitHub and RStudio together. Made for the Fundamentals of Data Science Course at the University of Potsdam during the summer semester 2021.;no_research; +https://github.com/linusha/lively-next-direct-renderer-dev;;no_research;JavaScript +https://github.com/linusha/Portable-Binaries;;no_research;Shell +https://github.com/linusha/r4ds;;no_research; +https://github.com/linusha/redshift-blocklet;A simple script for redshift integration in i3blocks.;no_research;Shell +https://github.com/linusha/reference-helper-scripts;A tiny, opinionated helper script to deal with references in scientific manuscripts (mainly in the social sciences).;no_research;R +https://github.com/linusha/twitter-saxony-anhalt-election-2021-sentiment;"Code and data used in the research paper ""Emotions and Information Diffusion on Social Media: A Replication in the Context of Political Communication on Twitter"" (Hagemann, L., Abramova, O.), to be published in AIS Transactions on Replication Research.";no_research;HTML +https://github.com/linusha/twitter-sentiment-2020-election;"Code for data collection, processing and analysis as well as the data-set used for the research paper ""Crafting Audience Engagement in Social Media Conversations: Evidence from the U.S. 2020 Presidential Elections"" presented at HICSS 2022.";research;Python +https://github.com/linusha/whole-lively-catalog;A collection of research papers, articles, books, software, and all things lively.;no_research; +https://github.com/lucashoeft/HackHPI-2023;;no_research;CSS +https://github.com/lucashoeft/huddle;Backend for an Application Similar to ‘Beer With Me’;no_research;Java +https://github.com/lucashoeft/Intelligent-Data-Analysis-2-Project;Image Classification of EuroSAT dataset with CNN and ResNet;no_research;Jupyter Notebook +https://github.com/lucashoeft/Intelligent-Data-Analysis-Project;Project for the Course ‘Intelligent Data Analysis & Machine Learning I’ at the University of Potsdam;no_research;Jupyter Notebook +https://github.com/lucashoeft/lagerverwaltungssystem;Warehouse Management System;no_research;Java +https://github.com/lucashoeft/LSHContributionView;Custom Uiview to Visualize Repeating Activities of a User;no_research;Swift +https://github.com/lucashoeft/Personal-Website;The Repository of My Personal Website;no_research;Sass +https://github.com/lucashoeft/PictoGuessr;Projekt vom BVG Hackathon 2018;no_research;Swift +https://github.com/ludwigfrank/artomaton;Artomaton Java and Node code for Generative Art course by Fabian Moron Zirfas at FH Potsdam;no_research;Java +https://github.com/ludwigfrank/bam;"Server files for the MIT - FHP cooperation course, ""Active Archives"".";no_research;TypeScript +https://github.com/ludwigfrank/bam-visualization;;no_research;TypeScript +https://github.com/ludwigfrank/book-of-shaders;Book of Shaders Project for Retro Future Webdesign at FH Potsdam by Boris Müller in the winter term 2018.;no_research;JavaScript +https://github.com/ludwigfrank/csb-obl9de;;no_research;HTML +https://github.com/ludwigfrank/deconstructing-master-artists;Deconstructing master;no_research;JavaScript +https://github.com/ludwigfrank/design-system-generator;Generate Sketch design systems from json files. Unified naming and values between developers and designers. Simple theme switching, design once, apply different themes easily.;no_research;JavaScript +https://github.com/ludwigfrank/focus-study;;no_research;JavaScript +https://github.com/ludwigfrank/green-enesys;;no_research;JavaScript +https://github.com/ludwigfrank/hidden-perspectives-microsite;;no_research;JavaScript +https://github.com/ludwigfrank/homework;;no_research; +https://github.com/ludwigfrank/hopper-codes;;no_research;TypeScript +https://github.com/ludwigfrank/hopper-utils;Created with CodeSandbox;no_research; +https://github.com/ludwigfrank/hopper-webflow;;no_research;TypeScript +https://github.com/ludwigfrank/hopper-webflow-lib;;no_research;TypeScript +https://github.com/ludwigfrank/latter;Rethinking how we communicate, how we get distracted, losing the ability to focus. Rethinking how we can create conscious awareness of our interactions.;no_research;Dart +https://github.com/ludwigfrank/lu-grid;Css Layout Grid;no_research;JavaScript +https://github.com/ludwigfrank/ludwigfrank;Gatsby starter for a Contentful project from the community. ;no_research;JavaScript +https://github.com/ludwigfrank/particle;Application to control photon particle using SSR, vue and socket.io;no_research;JavaScript +https://github.com/ludwigfrank/podocu;Next lever portfolio manager;no_research;JavaScript +https://github.com/ludwigfrank/portfolio-deprecated;Personal portfolio project.;no_research;JavaScript +https://github.com/ludwigfrank/pudocu;;no_research;JavaScript +https://github.com/ludwigfrank/site;Portfolio;no_research;JavaScript +https://github.com/ludwigfrank/site-deprecated;;no_research;JavaScript +https://github.com/ludwigfrank/site-twotwenty;;no_research;TypeScript +https://github.com/ludwigfrank/threeJSCourse;Three.js course at University of Applied Sciences Potsdam;no_research;JavaScript +https://github.com/ludwigfrank/wildcard-2021;;no_research;JavaScript +https://github.com/maibrittbergh/dischanalapp;A Shiny Web App. Uses R Package dischanalyst to analyze GRDC-Discharge Data in Germany.;no_research;R +https://github.com/maibrittbergh/dischanalyst;;no_research;R +https://github.com/maibrittbergh/edgar_food;Analysis of EDGAR_Food_Dataset;no_research; +https://github.com/maibrittbergh/lfanalyse;"R-Package to analyse discharge data. To get startet ""lfanalyse"" offers fucntions to load and structure the GRDC-Dataset. For the analysis package contains functions for a descriptive overview, a threshold base analysis as well as trend analysis. ";no_research;R +https://github.com/maibrittbergh/lfanalysis;R-package to analyze discharge data. The functions focus on a statistical approach for low flow analysis of the GRDC-dataset.;no_research; +https://github.com/maibrittbergh/lfwebapp;"The idea of this shiny web app is to develop an environment that offers an understandable, easy and compact approach for a low flow analysis. All the functions within this web app are taken from the R-package ""lfanalyse"" and the discharge data is from the GRDC-dataset.";no_research;R +https://github.com/maibrittbergh/statisticalmanual;This is a statistical introduction to a low flow analysis. The goal of this manual is to explain, visualize and discuss the basic statistical concepts by using an interactive approach.;no_research;HTML +https://github.com/maikbilling/GFZ-workshop;;no_research;Python +https://github.com/maikbilling/PreSTo;PreSTo - Precipitation Series Tool - is a tool to generate precipiation data out of historical records;no_research;R +https://github.com/maikbilling/traffic-accidents;;no_research;Jupyter Notebook +https://github.com/majorsl/capnames;This script will capitalize the first letter of every file and directory in the path given.;no_research;Shell +https://github.com/majorsl/convertac3;Locates mkv files and will convert audio tracks to ac3 if not already present.;no_research;Shell +https://github.com/majorsl/deleteprofiles;This script will remove inactive accounts in OS X after a predetermined amount of time.;no_research;Shell +https://github.com/majorsl/filebotsortmedia;Script to sort media using Filebot. Cleans up directories & tags files.;no_research;Shell +https://github.com/majorsl/fixdovecotdates;Fix the file date stamp for Dovecot email if year is 2020.;no_research;Shell +https://github.com/majorsl/iTunesToWebPage;A server and client script to publish iTunes to a webpage.;no_research;Shell +https://github.com/majorsl/mkvconvert;Written quickly to remove a batch of language audio tracks from a series of video files.;no_research;Shell +https://github.com/majorsl/photorename;This script will change the file name of a photo to it's EXIF description to a max of 35 characters.;no_research;Shell +https://github.com/majorsl/piarandom;A simple Bash script to pick a random PIA location from a list.;no_research;Shell +https://github.com/majorsl/pingtest;Tests 2 hosts with ping and upon failure, resets your router with a X10 module.;no_research;Shell +https://github.com/majorsl/setadadmin;Looks for a user to be a member of an Active Directory group and performs an action.;no_research;Shell +https://github.com/majorsl/sonarrepisodescan;A script that parses a directory of files for import into Sonarr.;no_research;Shell +https://github.com/majorsl/unmountbootcamp;Unmounts BOOTCAMP from Desktop in macOS.;no_research;Shell +https://github.com/majorsl/weather;Kludgy weather in html with single image options.;no_research;Shell +https://github.com/majorsl/weather-forecast-io-sm.widget;Ubersicht weather widget.;no_research;CoffeeScript +https://github.com/majorsl/x10;Pre-script for use with heyu to better control X10 modules.;no_research;Shell +https://github.com/majorsl/x10ifttt;Monitors a Dropbox location to trigger events.;no_research;Shell +https://github.com/ManuelSteincke/processing-fhp;"Selection of a few Processing projects created as part of the university course ""Processing for Designers"" at FH Potsdam";no_research;Processing +https://github.com/matthiashimmelmann/HomotopyOpt.jl;;no_research;Julia +https://github.com/matthiashimmelmann/Implicit3DPlotting.jl;Repository for plotting implicitly defined surfaces and curves in R3.;no_research;Julia +https://github.com/matthiashimmelmann/LearnVanishingIdeal.jl;;no_research;Julia +https://github.com/matthiashimmelmann/matthiashimmelmann;Config files for my GitHub profile.;no_research; +https://github.com/matthiashimmelmann/TensegrityEquilibria.jl;;no_research;Julia +https://github.com/maxifischer/aoc_2022;Advent of Code 2022 Scala;no_research; +https://github.com/maxifischer/brandpersonalityprediction;;no_research;Jupyter Notebook +https://github.com/maxifischer/DBpediaOTD;;no_research;HTML +https://github.com/maxifischer/festevolve;;no_research;Python +https://github.com/maxifischer/genre-prediction;"Repository of summer term 2018 seminar project in ""Introduction to Deep Learning""";no_research;Jupyter Notebook +https://github.com/maxifischer/gensim-MCC;Masterthesis on Multi-Prototype Diachronic Word Embeddings;research;Python +https://github.com/maxifischer/kaggle-circadian-rhythm;project of the course Introduction in Computational Neuroscience at University of Tartu;no_research;Jupyter Notebook +https://github.com/maxifischer/rhythm-extraction;"Repository of summer term 2018 seminar project in ""Machine Learning in Audio Applications""";no_research;Jupyter Notebook +https://github.com/maximilian-gelbrecht/ChaoticNDETools.jl;A collection of tools, helper functions and layers to assist working with chaotic Neural Differential Equation in Julia;no_research;Julia +https://github.com/maximilian-gelbrecht/Exercise8.jl;Example solution to the Exercise 8 of the Modelling and Machine of Dynamical System in Julia class at TUM;no_research;Jupyter Notebook +https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl;Julia implementation of the Ghil-Sellers 1D Energy Balance Model;research;Julia +https://github.com/maximilian-gelbrecht/GinzburgLandau.jl;Julia implementation of the Complex Ginzburg Landau equation;no_research;Julia +https://github.com/maximilian-gelbrecht/MCBB.jl;Monte Carlo Basin Bifurcation Analysis;research;Jupyter Notebook +https://github.com/maximilian-gelbrecht/NODEData.jl;Small helper package that provides a struct for sequence learning with Neural ODEs.;no_research;Julia +https://github.com/maximilian-gelbrecht/NPDEChaos;This is the source code of the Neural Partial Differential Equations for Chaotic Processes Paper.;no_research;Julia +https://github.com/maximilian-gelbrecht/SeqData.jl;Small package that provides a data type for sequence learning ;no_research;Julia +https://github.com/maximilian-gelbrecht/SlurmHyperopt.jl;Hyperparameteroptimization with Slurm scripts based on Hyperopt.jl;no_research;Julia +https://github.com/maximilian-gelbrecht/SNDE-Experiments;WIP SNDE Experiments;no_research;Julia +https://github.com/maximilian-gelbrecht/SpeedyExperiments.jl;SpeedyWeather experiments and scripts to test it with Enzyme AD and GPU ;no_research;Jupyter Notebook +https://github.com/maxseidler/IDA2-Project;;no_research;Jupyter Notebook +https://github.com/maxseidler/PAS;Practicum autonome systemen - Nao soccer;no_research;Python +https://github.com/maxseidler/projecteuler;My solutions to the problems on https://projecteuler.net;no_research;Python +https://github.com/maxseidler/tensorflow-benchmarks;;no_research;Python +https://github.com/maxseidler/tensorflow-from-source;Tensorflow wheels build from source;no_research; +https://github.com/maxtillich/bruditv;;no_research;CSS +https://github.com/maxtillich/buttons;;no_research; +https://github.com/maxtillich/drama;;no_research;HTML +https://github.com/maxtillich/HALT;Hungry Angry Lonely Tired - Adaptive rooms;no_research;JavaScript +https://github.com/maxtillich/lateagain;LATE AGAIN - Keyboard Hack project for Physical Interfaces course at University af Applied Science Potsdam (FHP);no_research;JavaScript +https://github.com/maxtillich/Learning-Arduino;;no_research;Arduino +https://github.com/maxtillich/partizipatives-gestalten;;no_research;CSS +https://github.com/maxtillich/retrofuture;;no_research;HTML +https://github.com/maxtillich/trying-angular;;no_research;JavaScript +https://github.com/mcvidomi/MFI;Measure of Feature Importance;research;HTML +https://github.com/mcvidomi/ML2Motif;;no_research;Python +https://github.com/mcvidomi/poim2motif;Assessing motifs in Positional Oligomer Importance Matrices (POIMs).;no_research;Python +https://github.com/mcvidomi/SemiSupCycleGAN;Semi Supervised Cycle GAN ;no_research;Python +https://github.com/miduku/bounce-algorithm;University of Applied Sciences Potsdam;no_research; +https://github.com/miduku/data-shmup; University of Applied Sciences Potsdam;no_research; +https://github.com/miduku/dataset-london-underground-p5js;University of Applied Sciences Potsdam;no_research; +https://github.com/miduku/dataset-planets-p5js;University of Applied Sciences Potsdam;no_research; +https://github.com/miduku/fastplate; A Barebones Responsive SCSS Boilerplate to get started with FastShell (a webdevelopement framework using gulp) ;no_research;CSS +https://github.com/miduku/fireplate;A Barebones Responsive SCSS Boilerplate to get started with fireshell;no_research;HTML +https://github.com/miduku/github-for-developers-7;;no_research; +https://github.com/miduku/hamburg-happy-healthy;;no_research;Vue +https://github.com/miduku/i-see-streams;University of Applied Sciences Potsdam;no_research; +https://github.com/miduku/once-upon-a-facebook;University of Applied Sciences Potsdam;no_research; +https://github.com/miduku/potsdam-wasser; University of Applied Sciences Potsdam;no_research; +https://github.com/miduku/project-luna;Project made at the University of Applied Sciences Potsdam;no_research; +https://github.com/miduku/retro-future-hauptaufgabe;;no_research;Vue +https://github.com/miduku/retro-future-hauptaufgabe-test;;no_research;HTML +https://github.com/miduku/tipping-points;;no_research;Vue +https://github.com/miduku/webentwicklung2016;University of Applied Sciences Potsdam;no_research; +https://github.com/MiroslavVitkov/blog;A simple static PHP page.;no_research;PHP +https://github.com/MiroslavVitkov/cgetset;simple c parser - generates getter/setter methods for all declarations, self-contained;no_research;C +https://github.com/MiroslavVitkov/cogsys;Homework assignments from my courses in Cognitive Systems, University of Potsdam;no_research;Forth +https://github.com/MiroslavVitkov/CV;My actual, up to date, resume.;no_research;TeX +https://github.com/MiroslavVitkov/face;Use OpenCV Haar cascades to identify persons.;no_research;C++ +https://github.com/MiroslavVitkov/gearbox;Rough design of a gerabox in Autodesk Inventor for a coursework;no_research;TeX +https://github.com/MiroslavVitkov/gender;Is the author of a short paragraph male of female?;no_research;Python +https://github.com/MiroslavVitkov/jtut;First steps in Java;no_research;Java +https://github.com/MiroslavVitkov/megaboot;Simple atmega168 bootloader.;no_research;C +https://github.com/MiroslavVitkov/menu;Visit me an have something cooked within 2 hours.;no_research;TeX +https://github.com/MiroslavVitkov/micli;MIcroCLImate controller, a bare metal embedded C11 project.;no_research;HTML +https://github.com/MiroslavVitkov/rat;RAm-only chaT. Inspectable code and industry standard encryption.;no_research;Python +https://github.com/MiroslavVitkov/rocks;Use a SVM to classify rocks by laser ablation spectrum.;no_research;C++ +https://github.com/MiroslavVitkov/rpg;A tabletop role playing game. In Bulgarian. ;no_research;TeX +https://github.com/MiroslavVitkov/rtplot;Realtime temperature plotting utility.;no_research;Python +https://github.com/MiroslavVitkov/scripts;Commands for everyday use;no_research;Shell +https://github.com/MiroslavVitkov/silhouette;Silhouette extraction for pedestrians;no_research;C++ +https://github.com/MiroslavVitkov/sms;Send an SMS via Telenor credentials.;no_research;Python +https://github.com/MiroslavVitkov/TemerutRPG;A silly RPG game in Bulgarian.;no_research;TeX +https://github.com/MiroslavVitkov/thesis;Describes micli in a needlessly long way.;no_research;TeX +https://github.com/MiroslavVitkov/vg;Code for interacting with the Visual Genome dataset.;no_research;Python +https://github.com/MiroslavVitkov/voiceid;Identify diferent persons via microphone input;no_research;Haskell +https://github.com/mittelmark/athi;Calculate the Z-scores based on WHO references;no_research;R +https://github.com/mittelmark/citer;Tcl package to create bibliographies using Bibtex files;no_research;Tcl +https://github.com/mittelmark/dbpp;Repository for the course Databases and Practical Programming at the University of Potsdam;no_research;Python +https://github.com/mittelmark/DGTcl;Pandoc filters for Tcl, GraphViz dot syntax, LaTeX equations, PlantUML, Mermaid, PIC and Pikchr diagrams, R plots, ABC music notation, SQLite code, file includes and code for a few Tcl packages and Tk widgets.;no_research;Tcl +https://github.com/mittelmark/Emil;Minimal object oriented prpgramming for R system similar in syntax to Python;no_research;R +https://github.com/mittelmark/enrigo;Gene ontology term enrichment analysis for a given gene list;no_research;R +https://github.com/mittelmark/guelpe;"Programming code for the Summer school ""Human Growth - Data Analysis and Statistics"" in Gülpe";no_research;R +https://github.com/mittelmark/hanna;R code for the paper - Hermanussen et.al. Winner-loser effects improve social network efficiency between competitors with equal resource holding power. Sci Rep 13, 14439 (2023).;no_research;R +https://github.com/mittelmark/hyperhelp;Tcl/Tk package do display Markdown like help pages in your Tcl/Tk applications.;no_research;Tcl +https://github.com/mittelmark/kroki4tcl;Creates diagrams from textual descriptions using the kroki webservice and Tcl/Tk;no_research;Tcl +https://github.com/mittelmark/microemacs;Jasspa's Microemacs fork - Text editor with GUI and terminal mode, with syntax highlighting, folding, outlines, abbreviations, own extension language, calendar, games, notes, ...;no_research;C +https://github.com/mittelmark/minipy;Small Python package template with some essentials to start new projects.;no_research;Python +https://github.com/mittelmark/mkdoc;Source code documentation tool using embedded Markdown;no_research;Tcl +https://github.com/mittelmark/mm-example-vim;Example plugin for vim text editor with commands using Vimscript, Console application and Python;no_research;Vim Script +https://github.com/mittelmark/oowidgets;Megawidget creation package using TclOO;no_research;Tcl +https://github.com/mittelmark/pandoc-filters;Various filters in Lua and Tcl for the Pandoc document processor;no_research;Lua +https://github.com/mittelmark/pantcl;Document conversion with Tcl based filters using pandoc or Tcl only. Example filter for ABC music, GraphViz, PlantUML, R, Python etc are provided.;no_research;Tcl +https://github.com/mittelmark/pantcl4r;Using the pantcl application as R package for literate programming;no_research;TeX +https://github.com/mittelmark/Rcode;Repository with single file Rscripts;no_research;R +https://github.com/mittelmark/readkit;ReadKit, a viewer/extractor/converter for scripted documents which does not require TclKit or MetaKit.;no_research;Tcl +https://github.com/mittelmark/Rpkg;A generic R package template;no_research;R +https://github.com/mittelmark/shtmlview;A simple standalone viewer and a Tcl/Tk widget to display basic HTML and Markdown files;no_research;Tcl +https://github.com/mittelmark/snha;St. Nicolas House Algorithm implementation in R - predicting correlation networks using association chains;research;R +https://github.com/mittelmark/snha-gui;St. Nicolas House Algorithm - Graphical User Interface;no_research;R +https://github.com/mittelmark/svgconvert;Tcl package to convert svg files to svg, png or pdf files with resizing using the critcl package;no_research;Tcl +https://github.com/mittelmark/tclmain;"Standalone script to run Tcl applications from packages using the ""tclmain -m pkgname"" syntax";no_research;Tcl +https://github.com/mittelmark/tmdoc;Literate programming with Tcl. Embedding Tcl code into Markdown or LaTeX documents with code evaluation.;no_research;Tcl +https://github.com/mittelmark/tsvg;Tcl package to create SVG files easily.;no_research;Tcl +https://github.com/mittelmark/yeti;Yeti - parser and scanner generator for Tcl;no_research;Tcl +https://github.com/MLCogUP/nspeech;Project on neural speech synthesis;no_research;Python +https://github.com/mmrabe/designr;R package for creating and simulating crossed factorial designs;no_research;R +https://github.com/mmrabe/hypr;hypr is an R package for easy translation between experimental (null) hypotheses and contrast matrices as used for linear regression.;research;R +https://github.com/mmrabe/SEAM-2023-Paper;This repository contains the analysis code, and computational models SEAM and SWIFT as used in the Rabe et al. (2023) SEAM manuscript.;no_research;HTML +https://github.com/mohseniaref/blog;;no_research;TeX +https://github.com/mohseniaref/My_Website;;no_research; +https://github.com/mohseniaref/Python-Code;;no_research; +https://github.com/MuenchMan/EtR-Bomb;This is a sketch for building an interactive prop for an escape the room game.;no_research;Arduino +https://github.com/MuenchMan/FHP-MT-containerPort;;no_research;JavaScript +https://github.com/MuenchMan/FHP-TerrorCounter;firstpublish;no_research; +https://github.com/MuenchMan/InputOutput_Delta;First Push;no_research;Processing +https://github.com/MuenchMan/InputOutput_Staubfaenger;An Arduino project for my studies at the University of Applied Science Potsdam;no_research;C++ +https://github.com/MuenchMan/InputOutput_urbanNexus;;no_research;JavaScript +https://github.com/MuenchMan/SNAP.svg_addSVG;;no_research;JavaScript +https://github.com/NAMEhzj/Divide-and-Conquer-in-Agda;;no_research;Agda +https://github.com/NAMEhzj/IPF_GroundOne;n-dimentional Iterative Proportional Fitting for Intervals (and more generally);no_research;Haskell +https://github.com/NAMEhzj/IPF_GroundZero;Newly organized File structure for the IPF and Interval project;no_research; +https://github.com/NAMEhzj/maths-in-agda;trying to implement basic maths stuff in Agda;no_research;Agda +https://github.com/NAMEhzj/miscellaneous-agda;A place for all kinds of little projects;no_research;Agda +https://github.com/NAMEhzj/Newton-Algorithm-and-Midpoint-Method-for-Intervals;;no_research;Haskell +https://github.com/NAMEhzj/Probability;;no_research;Agda +https://github.com/niccokunzmann/.github;;no_research; +https://github.com/niccokunzmann/12characters-art;Pictures used by the 12 characters book;no_research;Shell +https://github.com/niccokunzmann/12characters-orga-material;;no_research; +https://github.com/niccokunzmann/12characters-translations;Translations of the play 12 Characters;no_research;TeX +https://github.com/niccokunzmann/agents;agents that can jump from program to program;no_research;Python +https://github.com/niccokunzmann/app.memory.quelltext.eu;An app for the memory game;no_research;Kotlin +https://github.com/niccokunzmann/Arduino-Monitor;Ever wondered what your arduino does? Use this monitor to see the values the arduino works with and the check for own outputs.;no_research;Python +https://github.com/niccokunzmann/arduinowindowscommandline;Upload sketches to Arduino from the Windows command line;no_research;C++ +https://github.com/niccokunzmann/artikel;Ein Artikel für die HPI Zeitung;no_research; +https://github.com/niccokunzmann/ayab;;no_research;Python +https://github.com/niccokunzmann/Banana-Pong;;no_research; +https://github.com/niccokunzmann/bhagavad-gita-android;Maximum compatible open-source Android App for the Bhagavad Gita;no_research;Java +https://github.com/niccokunzmann/blog;Notes;no_research; +https://github.com/niccokunzmann/calender_merger;merge ICS calenders into one calender;no_research;Python +https://github.com/niccokunzmann/cannon;9te-10te Klasse Cannon Hill Spiel: beschießt Bunker gegenseitig;no_research;Python +https://github.com/niccokunzmann/chemitzer-linuxtage;Repository für die Chemnitzer Linuxtage 2016;no_research;HTML +https://github.com/niccokunzmann/ci-latex;A docker container for Gitlab CI to build papers with Latex;no_research;Dockerfile +https://github.com/niccokunzmann/coloring-book-gallery;This is an open image gallery for everybody's use festuring black and white outline images for drawing.;no_research;Shell +https://github.com/niccokunzmann/comic-cluster;Create Comic images from photos using Python and clustering algorithms;no_research;Jupyter Notebook +https://github.com/niccokunzmann/cp-automated-development;;no_research;Shell +https://github.com/niccokunzmann/cp-docker-development;A docker implementation based on https://github.com/CoderDojo/cp-local-development;no_research;Shell +https://github.com/niccokunzmann/crc8;A module with the CRC8 algorithm for Python 2 and 3;no_research;Python +https://github.com/niccokunzmann/decentral-community-vpn;A decentral city and community VPN for Freifunk;no_research; +https://github.com/niccokunzmann/dev-browser;Web Development Environment on Android which blends in with Termux;no_research; +https://github.com/niccokunzmann/distacc;;no_research;Python +https://github.com/niccokunzmann/dockerhub-build-status-image;Status images for your dockerhub automated build (like those for travis);no_research;Python +https://github.com/niccokunzmann/download_latest;Download files from the latest release.;no_research;JavaScript +https://github.com/niccokunzmann/escape-the-shell;Escape game for hackers following the hacker ethics;no_research;Shell +https://github.com/niccokunzmann/etoys-games;;no_research; +https://github.com/niccokunzmann/ExceptionWithContext;A Python 2.7 exception with the __context__ attribute like in Python 3;no_research;Python +https://github.com/niccokunzmann/firmware-anycubic-kossel-linear-plus;This is the firmware we use for the 3d-printer workshop;no_research;C++ +https://github.com/niccokunzmann/first_timer_scraper;Find pull-requests and issues of first time contributors;no_research;Python +https://github.com/niccokunzmann/flyer-gemeinschaft;;no_research; +https://github.com/niccokunzmann/fossasia-badge-generator;Conference Badges Generator of FOSSASIA;no_research;Python +https://github.com/niccokunzmann/Fossasia-GCI-Task;;no_research; +https://github.com/niccokunzmann/franksTasks;programming an example task tracker with sinatra and maglev :);no_research;Ruby +https://github.com/niccokunzmann/freifunk-berlin-docker-image;Ein Docker-Image mit dem OpenWrt der Berliner Freifunker. OpenVPN ist dabei.;no_research;Dockerfile +https://github.com/niccokunzmann/freifunk-vm;VM which exposes an open WIFI and sends packets through a VPN;no_research;Python +https://github.com/niccokunzmann/fruit-radar-old-devices-proxy;Proxy for the fruit radar app to allow access for old devices;no_research;HTML +https://github.com/niccokunzmann/gemeinschafteninpotsdam;;no_research;HTML +https://github.com/niccokunzmann/gh-pages-edit;github-pages-edit;no_research;Python +https://github.com/nickpodratz/Binarify;An iOS app that enables convenient translation between different binary encodings and natural language.;no_research;Swift +https://github.com/nickpodratz/MensaplanDesktop;A navigation-bar extension that provides quick access to the canteen plan at campus Griebnitzsee (University of Potsdam).;no_research;Swift +https://github.com/nickpodratz/Rhetorica;An iOS app that makes learning stylistic devices for German and English A-levels easy, quick and playful.;no_research;Swift +https://github.com/nickpodratz/sap-hack;The result of a weekend hack. An iOS app that features a sample use-case for SAP's iOS framework.;no_research;Objective-C +https://github.com/NicoNico6/ArchComp;;no_research;Python +https://github.com/NicoNico6/BiBERT_Unofficial;This is the Unofficial implementation of BiBERT paper ;no_research; +https://github.com/NicoNico6/bitorchinfo;;no_research; +https://github.com/NicoNico6/BTransformer;;no_research;Python +https://github.com/NicoNico6/BVDSR;;no_research; +https://github.com/NicoNico6/Hyper-BinaryNet;"This is the code for paper ""Gradients Matters: Designing Binarized Neural Network via Enhanced Infornation Flow""";no_research;Python +https://github.com/NicoNico6/Implement-of-Channel-Pruning-With-Pytorch;Trying to impleament CNN Channel-Pruning algorithm with Pytorch;no_research; +https://github.com/NicoNico6/ShadowRemoval;An impleamention of Towards Ghost-free Shadow Removal using pytorch;no_research;Python +https://github.com/niklhart/pharmetrx-a5-2020;;no_research; +https://github.com/niklhart/statistics-unipotsdam-2021;R online training material for the Statistics course at University of Potsdam, 2021;no_research; +https://github.com/NinaHarlacher/ANLP_AuthorshipAttribution;;no_research;Jupyter Notebook +https://github.com/NinaHarlacher/WordEmbeddings;;no_research;Jupyter Notebook +https://github.com/NinaMohnke/NinaMohnke;;no_research; +https://github.com/noahnawara/eazeweb;;no_research; +https://github.com/noahnawara/processing;"My Projects created as part of the course ""Processing for Designers"" @ University of Applied Sciences Potsdam";no_research;Processing +https://github.com/nonbinarywave/homepage;;no_research;HTML +https://github.com/OST-Observatory/auxiliary_scripts;Various scripts and programs dedicated to astronomical observations and their post-processing;no_research;Python +https://github.com/OST-Observatory/OSTdata;Data archive for the OST;no_research;JavaScript +https://github.com/OST-Observatory/ost_landing_page;Landing page for the OST website;no_research;HTML +https://github.com/OST-Observatory/ost_photometry_package;Phtometry reduction and analysis package for the OST;no_research;Python +https://github.com/OST-Observatory/ost_spectroscopy_package;;no_research;Python +https://github.com/OST-Observatory/reduction_scripts_students;Data reduction scripts for students;no_research;Python +https://github.com/OST-Observatory/weather_station_website;Django website for the OST weather station;no_research;CSS +https://github.com/owrel/cleast;CLingo Enriched AST;no_research;Python +https://github.com/owrel/clindoc;Documentation framework for ASP, from user to contributor;no_research;Python +https://github.com/owrel/cloc;Cloc (CLingo Object Caller) is a Python library for converting clingo's output into Python call(s);no_research;Python +https://github.com/owrel/heatmap-plan-merging;Master Thesis about plan merging using heatmap;no_research;Python +https://github.com/owrel/Isaac;Work assistant;no_research;Python +https://github.com/owrel/owrel;Config files for my GitHub profile.;no_research; +https://github.com/owrel/plan-merging;Research project on MAPF with *Plan Merging* approach: agents' paths computed independently then merged for a valid solution.;no_research;TeX +https://github.com/owrel/Project-KRR;Project in logistic - University of Potsdam;no_research;Python +https://github.com/owrel/project-mapf;Aurélien SIMON - MAPF Project ;no_research; +https://github.com/pacman82/advent-of-code-2022;;no_research;Rust +https://github.com/pacman82/arrow-odbc;Fill Apache Arrow record batches from an ODBC data source in Rust.;no_research;Rust +https://github.com/pacman82/arrow-odbc-py;Read Apache Arrow batches from ODBC data sources in Python;no_research;Python +https://github.com/pacman82/async-events;Waiting for external tasks in asynchronous rust code;no_research;Rust +https://github.com/pacman82/async-recorder;;no_research;Rust +https://github.com/pacman82/atoi-rs;Parse integers directly from `[u8]` slices in safe code;no_research;Rust +https://github.com/pacman82/backtracking;;no_research;Rust +https://github.com/pacman82/boost_synchronized_proposal;A generic type which helps you to protect data not code. Replaces a bare mutex in most situations.;no_research;C++ +https://github.com/pacman82/cargo-wheel;Package executables build with cargo as python wheels;no_research;Rust +https://github.com/pacman82/cellular-automaton;;no_research;Rust +https://github.com/pacman82/cobra-kai-code-dojo;;no_research;Rust +https://github.com/pacman82/connect-four-solver;;no_research;Rust +https://github.com/pacman82/contigious-tree;;no_research;Rust +https://github.com/pacman82/cpp_to_rust_template;;no_research;Rust +https://github.com/pacman82/extract-my-file;A website using wasm to extract your file on your local machine;no_research;Rust +https://github.com/pacman82/force-send-sync;;no_research;Rust +https://github.com/pacman82/fractal-wgpu;;no_research;Rust +https://github.com/pacman82/hash-my-file;;no_research;JavaScript +https://github.com/pacman82/io-arg;Conviniently accept either standard streams or file paths in CLI tools written in Rust as arguments.;no_research;Rust +https://github.com/pacman82/iterrator-rs;;no_research;Rust +https://github.com/pacman82/mandelbrot;;no_research;Rust +https://github.com/pacman82/odbc-api;ODBC (Open Database Connectivity) bindings for Rust.;no_research;Rust +https://github.com/pacman82/odbc-safe;A crate for writing odbc clients in safe Rust;no_research;Rust +https://github.com/pacman82/odbc-sys;FFI (Foreign Function Interface) bindings for ODBC (Open Database Connectivity) for Rust.;no_research;Rust +https://github.com/pacman82/odbc2parquet;A command line tool to query an ODBC data source and write the result into a parquet file.;no_research;Rust +https://github.com/pacman82/rtiow;Ray tracing in one weekend;no_research;Rust +https://github.com/pacman82/rustfest-2018-workshop;libp2p workshop from rusfest;no_research;Rust +https://github.com/pacman82/search-stack-exchange;;no_research;Rust +https://github.com/pacman82/snake;;no_research;Rust +https://github.com/pacman82/throttle;A semaphore service for distributed systems;no_research;Rust +https://github.com/pacman82/unorm;;no_research;Rust +https://github.com/pacman82/yoshukan_hompage;;no_research;HTML +https://github.com/patrickkloesel/break_detection_global;This is a repository for the Break Detection Global Paper (OECD Paper). ;no_research;HTML +https://github.com/patrickkloesel/public;;no_research; +https://github.com/paulalisson/fasttextM;Fast Multilingual Word Embeddings;no_research;R +https://github.com/paulalisson/koRpus_for_linguistics;Using the koRpus package to get lexical diversity and readability scores ;no_research;R +https://github.com/paulalisson/stancon2019;;no_research;Stan +https://github.com/PaulOpu/DL_EmotionDetection;;no_research;Jupyter Notebook +https://github.com/PaulOpu/PaulOpu;;no_research; +https://github.com/PaulOpu/PM_ShallowDiscourseParsing;;no_research;Jupyter Notebook +https://github.com/PaulOpu/ReactCodingChallenge;Quick React Coding Challenge;no_research;JavaScript +https://github.com/PaulOpu/TS_LossFunction;;no_research;Jupyter Notebook +https://github.com/PaulOpu/WelcomeScreen;;no_research;JavaScript +https://github.com/paulrozdeba/2013-Qual-Review-QM;2013 UCSD qual review, quantum mechanics.;no_research; +https://github.com/paulrozdeba/CS250B;Code base for CS 250B (Principles of Artificial Intelligence) projects.;no_research;Python +https://github.com/paulrozdeba/dotfiles;;no_research; +https://github.com/paulrozdeba/integrators;Collection of ODE and SDE numerical integrators.;no_research;Python +https://github.com/paulrozdeba/ios-apps;Some stupidly simple iOS apps.;no_research;Objective-C +https://github.com/paulrozdeba/ipy-notebooks;Just a place to store some ipython notebooks.;no_research; +https://github.com/paulrozdeba/neuralnets;Simple biological neural network simultations.;no_research;Python +https://github.com/paulrozdeba/pyLyapunov;Calculate the Lyapunov spectrum of a dynamical system.;no_research;Python +https://github.com/paulrozdeba/spin-networks;Experimental code, messing around with spin networks.;no_research;Python +https://github.com/paulrozdeba/varanneal;A Python package for state and parameter estimation in partially observed ODE and neural network systems, using variational annealing.;research;Python +https://github.com/PedroSatorreMulet/PedroSatorreMulet;Config files for my GitHub profile.;no_research; +https://github.com/peldszus/alpha-zero-general-lib;An implementation of the AlphaZero algorithm for adversarial games to be used with the machine learning framework of your choice;no_research;Python +https://github.com/peldszus/arg-microtexts;An annotated corpus of argumentative microtexts;research;Python +https://github.com/peldszus/arg-microtexts-multilayer;Argumentative microtexts annotated with RST, SDRT and argumentation structure;research;ActionScript +https://github.com/peldszus/emnlp2015;;research;Python +https://github.com/peldszus/evidencegraph;Evidence graphs for parsing argumentation structure;research;Python +https://github.com/peldszus/groupwise-stratified-kfold;;no_research;Python +https://github.com/peldszus/joty-rstparser-docker;Dockerfile for the Joty 2013 RST Parser;research;Dockerfile +https://github.com/peldszus/mageduel;;no_research;Python +https://github.com/PFischbeck/cn-noise-experiments;"The code and data for the PAKDD 2023 paper ""The Common-Neighbors Metric is Noise-Robust & Reveals Substructures of Real-World Networks""";research;Python +https://github.com/PFischbeck/pygirgs;Python package for girgs and hypergirgs generators;research;Jupyter Notebook +https://github.com/philipp-bode/lock-free-pc;A load-balanced, lock-free implementation of the PC-algorithm for causal inference from high-dimensional data.;no_research;C++ +https://github.com/philipp-bode/random_genre_bot;A Telegram bot that plays random genres on a linked Spotify account.;no_research;Python +https://github.com/plauth/fastica-reloaded;;no_research;C++ +https://github.com/plauth/lib842;;research;C +https://github.com/plauth/lightweight-vm-performance;;no_research;C +https://github.com/plauth/thesis-artifacts;This repository provides a list of code artifacts presented or used in my doctoral dissertation.;no_research; +https://github.com/pluehne/2018-12-11-debug-hyper-issue;Repository to debug issues with git2-rs in conjunction with GitHub API calls made with reqwest via hyper;no_research; +https://github.com/pluehne/2019-01-30-relative-submodule-links;Test repository for showing that relative submodule links aren’t rendered by GitHub;no_research; +https://github.com/pluehne/debug-libgit2-ssl-broken-pipe-issue;Debugging an issue with libgit2: “SSL error: syscall failure: Broken pipe”;no_research; +https://github.com/pluehne/hci-mobile-prototype;Resources for creating Qt prototypes of mobile applications the size of an iPod nano.;no_research;C++ +https://github.com/pluehne/musaeum;🏛️ A clean and responsive Hugo theme for manuals and documentation;no_research;Sass +https://github.com/Poolbar/coLab;Information Visualization_Prof. Marian Dörk_FH Potsdam_SoSe2020;no_research;Jupyter Notebook +https://github.com/Poolbar/my_processing;wip;no_research;Jupyter Notebook +https://github.com/Poolbar/processing_fhp;A selection of sketches created during the SoSe 2019 in the course „Programming with Processing“ at the University of Applied Science Potsdam FHP ;no_research;Processing +https://github.com/Poolbar/time_spiral;;no_research;Processing +https://github.com/potassco/acclingo;Automatic algorithm configuration for clingo;no_research;Python +https://github.com/potassco/anthem;🎼 Translate answer set programs to first-order theorem prover language;no_research;Rust +https://github.com/potassco/asp-date-lib;📅 ASP Library for dates ;no_research;Python +https://github.com/potassco/asp-planning-benchmarks;A repository of ASP planning benchmarks;no_research;ASP +https://github.com/potassco/aspcud;A solver for package problems in CUDF format;no_research;C++ +https://github.com/potassco/aspic-legacy;🏚️ aspic legacy code: last development snapshot from Sep 2016.;no_research;Python +https://github.com/potassco/asprilo;🤖 ASPRILO, an intra-logistics benchmark suite for answer set programming;no_research;Python +https://github.com/potassco/asprilo-encodings;Collection of ASP encodings for asprilo;no_research;CLIPS +https://github.com/potassco/asprilo-seminar;;no_research; +https://github.com/potassco/asprin;💊 Qualitative and quantitative optimization in answer set programming;no_research;Python +https://github.com/potassco/atlingo;Automata for dynamic answer set solving;no_research;C++ +https://github.com/potassco/benchmark-tool;🏎️ Git-mirror of the benchmark-tool;research;Python +https://github.com/potassco/clasp;⚙️ A conflict-driven nogood learning answer set solver;no_research;C++ +https://github.com/potassco/clingcon;⛓️ Extension of clingo to handle constraints over integers;no_research;C++ +https://github.com/potassco/clingcon-theory-rs;Raw Rust FFI bindings to the C API of clingcon library ;no_research;Rust +https://github.com/potassco/clingo;🤔 A grounder and solver for logic programs.;no_research;C++ +https://github.com/potassco/clingo-cmake-example;🏗️ Example how to use the clingo library in a cmake based project.;no_research;C +https://github.com/potassco/clingo-dl;📏 Theory propagator for difference logic using clingo's theory language and C++ API.;no_research;C++ +https://github.com/potassco/clingo-dl-theory-rs;Raw Rust FFI bindings to the C API of clingo-dl library ;no_research;Rust +https://github.com/potassco/clingo-lpx;🧮 A simplistic simplex solver for checking satisfiability of a set of equations.;research;C++ +https://github.com/potassco/clingo-rs;🗝️ Rust bindings to the clingo library;no_research;Rust +https://github.com/potassco/clingo-server;🌐 Clingo via HTTP;no_research;Rust +https://github.com/potassco/clingo-sys;Raw Rust FFI bindings to the C API of clingo library;no_research;Rust +https://github.com/potassco/clingo-vs-telingo-planning;;research;ASP +https://github.com/potassco/clingo-xor; 📟 Clingo + XOR-constraints + Simplex;research;C++ +https://github.com/potassco/clingofmt;♻️ Experimental formatter for clingo code;no_research;Rust +https://github.com/potassco/clingoLP;Theory propagator for linear programming using clingo theory language and interface.;research;Python +https://github.com/potassco/clingomil;Meta-interpretive learning in clingo;no_research;Python +https://github.com/potassco/clingo_derive;derive macro for the clingo::ToSymbol trait;no_research;Rust +https://github.com/potassco/clingraph;🕸️ A visualizer for graphs defined as logic programs;no_research;Python +https://github.com/potassco/clinguin;🐧 Clingo Interactive UI;no_research;Python +https://github.com/potassco/clintest;🧪 A test framework for clingo programs;no_research;Python +https://github.com/potassco/clorm;🗃️ A Python ORM-like interface for the Clingo Answer Set Programming (ASP) reasoner;no_research;Python +https://github.com/potassco/coala;coala is a translation tool for BC to ASP;no_research;Python +https://github.com/potassco/conda;📦 Conda recepies for potassco projects.;no_research;Python +https://github.com/potassco/configuration-encoding;🧩 An encoding for solving configuration problems with ASP;no_research;Python +https://github.com/potassco/eclingo;🧠 A solver for epistemic logic programs.;no_research;Python +https://github.com/potassco/eclingo-prototype;Epistemic logic programming with clingo;no_research;Python +https://github.com/potassco/flatzinc;🫓 A parser for the FlatZinc modelling language;no_research;Rust +https://github.com/potassco/flatzingo;:flamingo: A flatzinc frontend for clingcon ;no_research;Python +https://github.com/potassco/foliage;🍁 Rust crate for first-order logic with integer arithmetics;no_research;Rust +https://github.com/potassco/fz2aspif;Translating flatzinc format to ASP intermediate language aspif. To be used with clingcon-3.x series.;no_research;C++ +https://github.com/potassco/fzn2lp;🥞 A converter from FlatZinc into an ASP fact format;no_research;Rust +https://github.com/potassco/ginkgo;🌱 Generalize learned constraints with ASP;research;C++ +https://github.com/potassco/guess_and_check;Guess and Check Answer Set Programming;no_research;Python +https://github.com/potassco/guide;🦮 An introduction to our Answer Set Programming tools focusing on gringo, clingo, and clasp.;no_research;TeX +https://github.com/potassco/lc2casp;A translator for logic programs with constraint atoms to CASP.;no_research;C++ +https://github.com/potassco/libcsp;;no_research;C++ +https://github.com/potassco/libpotassco;🧱 A utility library used by various potassco projects;no_research;C++ +https://github.com/potassco/mapf-subgraph-instances;Instance set for Solving MAPF under map-to-subgraph transformation;no_research; +https://github.com/potassco/mapf-subgraph-system;🕵️ Solving MAPF under map-to-subgraph transformation with SAT and ASP;no_research;C++ +https://github.com/potassco/mu-gringo;🌱 A prototypical grounder implementation;no_research;Rust +https://github.com/potassco/multiclingo;A simple approach to multi-shot solving with clingo;no_research;Python +https://github.com/potassco/ngo;Non Ground Optimizer for logic programs.;no_research;Python +https://github.com/potassco/pddl-instances;🌍 PDDL instances covering the International Planning Competitions;research;Common Lisp +https://github.com/potassco/planner;An ASP-based planner;no_research;Python +https://github.com/potassco/plasp;🗺️ ASP planning tools for PDDL;no_research;C++ +https://github.com/potassco/plingo;🍀 A system for probabilistic reasoning in clingo;no_research;Python +https://github.com/potassco/python-clingox;🧰 Library with auxilary functions to use along with the clingo module.;no_research;Python +https://github.com/potassco/qasp2qbf;🧊 A translator from quantified answer set programming to quantified boolean formula;no_research;Python +https://github.com/potassco/teaspoon;🥄 ASP encodings to solve the curriculum-based course timetabling problem;no_research;C++ +https://github.com/potassco/tefoli;🐙 Theory Loading For Clingo;no_research;Python +https://github.com/potassco/tel;;no_research;Haskell +https://github.com/potassco/telingo;🕰️ A solver for temporal programs.;no_research;Python +https://github.com/potassco/train-scheduling-with-clingo-dl;🚄 Benchmark scripts, encodings and instances for train scheduling with clingo-dl;no_research;Python +https://github.com/potassco/train-scheduling-with-hybrid-asp;"🚂 Benchmark instances and encoding for the paper ""Train Scheduling With Hybrid Answer Set Programming""";no_research;Python +https://github.com/potassco/tree-sitter-clingo;🌳 Clingo grammar for tree-sitter;no_research;C +https://github.com/potassco/xclasp;A variant of the clasp solver for extracting learned constraints;no_research; +https://github.com/potassco/xls2asp;📊 Convert excel spreadsheets to ASP facts;no_research;Python +https://github.com/potassco/xorro;⚔️ A solver for programs with XOR constraints.;no_research;Python +https://github.com/potsdamer-instrumentalisten/urban;testsite;no_research;JavaScript +https://github.com/prassepaul/datasciencecoursera;repository for datasciencecoursera;no_research; +https://github.com/prassepaul/Getting-and-Cleaning-Data-Course-Project;The code in this repo will create a tidy dataet from the dataset avaiable under: https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip;no_research;R +https://github.com/prassepaul/Learning-Explainable-Representations-of-Malware-Behavior;"This repository contains the code for the paper ""Learning Explainable Representations of Malware Behavior""";no_research;Jupyter Notebook +https://github.com/prassepaul/mlmed_ranking;"Code for the paper ""Matching Anticancer Compounds and Tumor Cell Lines by Neural Networks with Ranking Loss""";no_research;Python +https://github.com/prassepaul/mlmed_transfer_learning;"This repository contains the code for the paper ""Pretraining on In-Vitro and Fine-Tuning on Patient-Derived Data Improves Neural Drug Sensitivity Models for Precision Oncology""";research;Jupyter Notebook +https://github.com/prassepaul/test-repo;This is a test repo.;no_research; +https://github.com/ProblemSolvingIO/materials-up-ws18-19;DO NOT EDIT THE CONTENTS OF THIS REPO DIRECTLY! Publicly available materials that are used in the Problem Solving using Python course during the WS18/19 in the University of Potsdam semester. Generated by ProblemSolvingIO/course-development (private).;no_research;Jupyter Notebook +https://github.com/ProblemSolvingIO/parsons;Parsons problems web app;no_research;JavaScript +https://github.com/psandhaas/sentiment-analysis;Automated sentiment analysis on German & English text corpora;no_research; +https://github.com/pschonev/biBooks;This allows automatic creation of bilingual e-books with two translations of a text as input using an alignment of language agnostic sentence vectors.;no_research;Ruby +https://github.com/pschonev/BirdsEverywhere;Stardew Valley mod that adds many new real life birds and allows the player to track their process as a birder.;no_research;C# +https://github.com/pschonev/bww-app;Beacon Workforce Web Application;no_research;Python +https://github.com/pschonev/clust-o-mat;Clustering for Bundestagswahl 2021 Wahl-O-Mat;no_research;Jupyter Notebook +https://github.com/pschonev/deepanomaly4docs;"Code for Master thesis ""Deep Anomaly Detection for Text Documents"" (University of Potsdam, 2021)";research;Jupyter Notebook +https://github.com/pschonev/ferienhaus-web;;no_research;JavaScript +https://github.com/pschonev/gatsby-netlify-cms-germany;;no_research;JavaScript +https://github.com/pschonev/nextjs-blog-germany;;no_research;JavaScript +https://github.com/pschonev/russian-text-analysis;Scrapes documents from the web and analyzes n-gram frequency.;no_research;Jupyter Notebook +https://github.com/pschonev/workist-recruiting-challenge;;no_research;Jupyter Notebook +https://github.com/rafiberlin/sose2020_image_caption_deep_learning;;no_research;Jupyter Notebook +https://github.com/rafiberlin/sose21-pm-language-and-vision-g1;;no_research;Jupyter Notebook +https://github.com/rafiberlin/ws2018_nlp_project;;no_research;Python +https://github.com/rafiberlin/WS21_IM_map_world_scene_graphs;;no_research; +https://github.com/RalfRothenberger/GreedyMax;Three Algorithms to solve MaxCut: an optimal solver via Integer Linear Programming with Gurobi, an approximative greedy solver and an approximative random greedy solver;no_research;C++ +https://github.com/RalfRothenberger/Power-Law-Random-SAT-Generator;Power Law Random k-SAT Generator;no_research;C++ +https://github.com/rbock/i3-config;My current configuration for i3wm;no_research;Shell +https://github.com/rbock/kiss-templates;"Type safe ""Keep it simple, stupid"" text templates for C++";no_research;C++ +https://github.com/rbock/named_tuple;A tuple that lets you access members by name, too.;no_research;C++ +https://github.com/rbock/presentations;Some of my presentation material;no_research; +https://github.com/rbock/reasoning-about-names;An idea for the C++ standard;no_research; +https://github.com/rbock/sqlpp-concepts-experiments;This is a copy of sqlpp11-0.32 to experiment with concepts lite;no_research;C++ +https://github.com/rbock/sqlpp11;A type safe SQL template library for C++;no_research;C++ +https://github.com/rbock/sqlpp11-connector-mysql;A C++ wrapper for mysql meant to be used in combination with sqlpp11.;no_research;C++ +https://github.com/rbock/sqlpp11-connector-skeleton;A skeleton for writing connector libraries for sqlpp11 (https://github.com/rbock/sqlpp11);no_research;C++ +https://github.com/rbock/sqlpp11-connector-sqlite3;A C++ wrapper for sqlite3 meant to be used in combination with sqlpp11.;no_research;C++ +https://github.com/rbock/sqlpp11-connector-stl;An experimental SQL connector for containers and streams of the C++ Standard Library;no_research;C++ +https://github.com/rbock/sqlpp17;Started to re-write sqlpp11 to sqlpp17 (not even remotely ready yet);no_research;C++ +https://github.com/rbock/sqlpp20;Experimental C++20 port of sqlpp11 ;no_research;C++ +https://github.com/rbock/talks;;no_research; +https://github.com/rbock/vavate;Variants of variadic whatever (e.g. all, any, one, none, type_set);no_research;C++ +https://github.com/resfahani/Codesjl;;no_research; +https://github.com/resfahani/GMD;Construction of a Neural Network Autoencoder to map the Fourier spectral amplitudes of ground motion triggered by earthquakes to a low dimensional manifold;research;Jupyter Notebook +https://github.com/resfahani/GVM-Player;Audiovisual representation of video streams together with multiple audio tracks.;research;JavaScript +https://github.com/resfahani/HRRT;Linear Radon Transform (Slant stack) and its high-resolution version for dispersion curve estimation;no_research;Python +https://github.com/resfahani/SparseTFR;Sparse Time-Frequency representation (Sparse STFT, and Sparse Stockwell transfrom);research;Python +https://github.com/resfahani/SWDCI;Surface Wave Dispersion Curve Inversion;research;Python +https://github.com/resfahani/TFCGAN;Ground motion simulation in the time-frequency domain by conditional GAN and phase retrieval ;no_research;Jupyter Notebook +https://github.com/rherbrich74/2017-resolution;All my public programs that are programmed as part of my 2017 resolution;no_research;Jupyter Notebook +https://github.com/rherbrich74/adventofcode;Solutions to the Advent of Code;no_research;C +https://github.com/rherbrich74/bib;All my BibTeX files;no_research;TeX +https://github.com/rherbrich74/lkc-book;Source Code from Learning Kernel Classifiers;no_research;TypeScript +https://github.com/rherbrich74/noisy_additions;A research note on noisy additions;no_research;TeX +https://github.com/richilino/shortest-superstrings;;no_research;Python +https://github.com/rkaminsk/clingo-jupyter-lite;;no_research;Jupyter Notebook +https://github.com/rkaminsk/cmapf;;no_research;C +https://github.com/rkaminsk/jclingo;;no_research;Java +https://github.com/rkaminsk/jnaclingo;;no_research;Java +https://github.com/rkaminsk/lp2txt;;no_research;Python +https://github.com/rkaminsk/preprocessor;Live demo!;no_research;JavaScript +https://github.com/rkaminsk/pygments_clingo;Syntax highlighting for clingo with pygments;no_research;Python +https://github.com/rkaminsk/python-simplex;;no_research;Python +https://github.com/rkaminsk/vim-swapc;Helper to swap between source and header files in C/C++ projects;no_research;Vim script +https://github.com/rkaminsk/vim-syntax-clingo;📜 Syntax highlighting and auto indentation for clingo/gringo.;no_research;Vim script +https://github.com/rkaminsk/wifi-hotspot;;no_research;Shell +https://github.com/rkaminsk/zsh-completion-clingo;;no_research; +https://github.com/rknaebel/a_little_tensor_flow;;no_research;Jupyter Notebook +https://github.com/rknaebel/bbc-discourse;Discourse Relations extracted from BBC News Corpus for training a shallow discourse parser;research;Python +https://github.com/rknaebel/cpp-class;;no_research;C++ +https://github.com/rknaebel/discopy;End-to-end shallow discourse parser;no_research;Python +https://github.com/rknaebel/discopy-data;;no_research;Python +https://github.com/rknaebel/discopy-vis;;no_research;JavaScript +https://github.com/rknaebel/dl-code-snippets;A collection of code examples for tensorflow and keras. All things from simple ANN, CNN, RNN to complex mind blowing architectures like turing machines, etc;no_research;Python +https://github.com/rknaebel/dl4nlp;;no_research;Jupyter Notebook +https://github.com/rknaebel/grammar_induction;Comes later;no_research;Groff +https://github.com/rknaebel/gym-textgame;;no_research;Python +https://github.com/rknaebel/landslide;Research project on building and evaluating deep learning models for landslides detection on satellite images;no_research;Python +https://github.com/rknaebel/neural-conn-sdp;Contextualized Embeddings for Connective Disambiguation in Shallow Discourse Parsing;no_research; +https://github.com/rknaebel/pp_class_notes;This repository is a collection of assignments done for the parallel programming class.;no_research;C +https://github.com/rknaebel/report-template;;no_research;TeX +https://github.com/rknaebel/screeps-ai;;no_research;JavaScript +https://github.com/rknaebel/textgame-project;;no_research;Python +https://github.com/rmiddelanis/harvey_scaling;;no_research;Python +https://github.com/rmiddelanis/master-thesis;An Evaluation of Layer Transferabilty for Temporal Convolutional Networks;no_research;Python +https://github.com/rmiddelanis/rmiddelanis;Config files for my GitHub profile.;no_research; +https://github.com/rmiddelanis/sandy_paper;;no_research;Jupyter Notebook +https://github.com/rnschmdlr/GAM_project;WIP. This project aims to quantify the information in genome architecture data. An extensive chromatin toymodel is used for internal method development;no_research;Python +https://github.com/roberthirschfeld/programming-experience;;no_research;HTML +https://github.com/rokcestnik/IPID1_inferring_phase_isostable_dynamics_order1;;no_research;Python +https://github.com/rokcestnik/isochrons;Algorithm for computing isochrons of an oscillator;no_research;C +https://github.com/rokcestnik/isostable_coordinates_from_equations;;no_research;Python +https://github.com/rokcestnik/network_reconstruction;Algorithm for reconstructing networks of pulse-coupled oscillators from observations;no_research;C +https://github.com/rokcestnik/nn_phase_rec;;no_research; +https://github.com/rokcestnik/nonlinear_physics_uni_potsdam_2018;A course held at the University of Potsdam in 2018;no_research;C +https://github.com/rokcestnik/oscillator_snap;Python package for modeling oscillatory systems using artificial neural networks;research;Python +https://github.com/rokcestnik/prc_inference;Algorithm for inferring the phase response curve of an oscillator from observations;no_research;C +https://github.com/RoshanRane/active_vision_prednet;3 research questions shall be tackled in this project -;no_research;Jupyter Notebook +https://github.com/RoshanRane/Deep-learning-with-Pytorch-and-FashionMNIST;Demonstration of training and developing CNNs using Pytorch for Fashion-MNIST dataset;no_research;Jupyter Notebook +https://github.com/RoshanRane/Deviance_explained;Deviance explained metric implemented in python;research;Jupyter Notebook +https://github.com/RoshanRane/ML_for_IMAGEN;;research;Jupyter Notebook +https://github.com/RoshanRane/PredNet-and-Predictive-Coding-A-Critical-Review;Performing video classificaiton by using the predictive processing architecture. The model is trained in a self-supervised manner to predict the next frames in videos along with the supervised video action classification task.;research;Jupyter Notebook +https://github.com/RoshanRane/RST-parser;End-to-end automatic RST parser using neural networks. This team-project is developed as part of the Masters course ANLP at the University of Potsdam.;no_research;Jupyter Notebook +https://github.com/RoshanRane/segmentation-moving-MNIST;The Moving-MNIST video dataset reformulated for the task of semantic segmentation.;research;Jupyter Notebook +https://github.com/RoshanRane/tinyYOLO-on-RaspberryPi;A tinyYOLO model implementation with tensorflow to be deployed on a RaspberryPi. The model is trained to detect vehicles in a real-time video captured by the camera mounted on the Raspberry Pi;no_research; +https://github.com/RoshanRane/toybrains;Create a synthetic dataset with toy images of brain MRI slice (2D). Can be used to control for ;no_research;Jupyter Notebook +https://github.com/Rullec/AcousticVisualizer;;no_research;C++ +https://github.com/Rullec/AdjointPythonExample;Some basic examples for adjoint method in python;no_research;Python +https://github.com/Rullec/ARCSim-ImGUI;Configure ImGUI on arcsim (Windows);no_research;C++ +https://github.com/Rullec/argus-win10;configure argus on win10;research;C++ +https://github.com/Rullec/AV-uzgbtymhqo;;no_research; +https://github.com/Rullec/BatchPaperDownloader;Download a BATCH of papers automatically.;no_research;Python +https://github.com/Rullec/EulerOperations;;no_research;C++ +https://github.com/Rullec/feast-win;FEAST Eigenvalue solver, build for win10 (VS2019 + Intel Fortran compiler);no_research; +https://github.com/Rullec/GLViewer;;no_research;C++ +https://github.com/Rullec/Images;Archive;no_research; +https://github.com/Rullec/KinectCap;Imgui based Kinect manager;no_research;C++ +https://github.com/Rullec/MATH;some demo in math learning...;no_research;Matlab +https://github.com/Rullec/Mechanical-arm;Mechanical arm 2018/8/13;no_research;C +https://github.com/Rullec/mwrap-win10;mwrap (mex file generator for matlab and octave), ported to win10;no_research;C++ +https://github.com/Rullec/NextLine;Just a foolish tool...;no_research;Python +https://github.com/Rullec/PathTracer;Experimental Monte Carlo Path Tracer;no_research;C++ +https://github.com/Rullec/Python-MOOC-;;no_research;Python +https://github.com/Rullec/QuadVis;quadratic surface vis;no_research;C++ +https://github.com/Rullec/RL-Exercise;Reinforcement Learning Exercise - Sutton book 2nd edition;no_research;Python +https://github.com/Rullec/SIMBICON;SIMBICON code ported to Ubuntu 18.04;no_research;C++ +https://github.com/Rullec/TestCUDA;;no_research;C++ +https://github.com/Rullec/WaterSim;a simple water simulation project for course homework;no_research;Python +https://github.com/Rullec/YuChenSpider;Scratch for Analytical Data used by YuChen;no_research;Python +https://github.com/s18neel/fastapi_crud_repo;This project is a basic api designed for implementation of CRUD operation using FAST-Api;no_research;Python +https://github.com/s18neel/perseus_api_coding_challenge;This repo consists of the code for the user api functions for the perseus coding challenge;no_research;Python +https://github.com/s18neel/spam-detection-using-bag-of-words;A mini project to detect spam emails on bag of words data;no_research;Jupyter Notebook +https://github.com/s18neel/spark_network_coding_challenge;Solution to Spark network coding Challenge;no_research;Python +https://github.com/sarahkiener/compound-sensitivity;This repository contains the code and matrials that I used in my Master's Thesis to investigate and enhance the sensitivity of trained neural metrics to German compounds.;research;Python +https://github.com/SaswatDash1998/Visual-Word-Sense-Disambiguation;;no_research;Python +https://github.com/sebas524/admin-app;;no_research;JavaScript +https://github.com/sebas524/api-app-gif;;no_research;JavaScript +https://github.com/sebas524/auth-app-angular-frontend;Auth app with log in, logout and register functionality as well as route protection with guards and http request to RESTful API using Angular;no_research;TypeScript +https://github.com/sebas524/auth-app-nest-backend;Created RESTful API for login, logout and register using Nestjs and MongoDB;no_research;TypeScript +https://github.com/sebas524/Blackjack;blackJack project;no_research;Java +https://github.com/sebas524/blogApi;Blog RESTFUL API build using Express and Mongodb;no_research;JavaScript +https://github.com/sebas524/countries-encyclopedia;;no_research;TypeScript +https://github.com/sebas524/country-wiki-app;Country-Wiki, The Free Country Encyclopedia!;no_research;TypeScript +https://github.com/sebas524/e-commerce-api;E-commerce API using NestJs and PostgreSQL. (currently in progress);no_research;TypeScript +https://github.com/sebas524/Employees;employee calculation of salaries OOP;no_research;Java +https://github.com/sebas524/form-app;getting to know template forms and reactive forms;no_research;TypeScript +https://github.com/sebas524/gifs-finder-page;search for any kind of gifs you'd like!;no_research;TypeScript +https://github.com/sebas524/GuessingGame;guess the correct number;no_research;Java +https://github.com/sebas524/heroes-villains-app;;no_research;TypeScript +https://github.com/sebas524/heroes-wiki-react;heroes wiki made with react;no_research;JavaScript +https://github.com/sebas524/heroesAppExpressApi;;no_research;JavaScript +https://github.com/sebas524/heroesWikiApp;get all the info from a particular hero of your choice, and add new ones as well!;no_research;TypeScript +https://github.com/sebas524/infiniteScroll;;no_research;JavaScript +https://github.com/sebas524/joke-teller;;no_research;JavaScript +https://github.com/sebas524/lifecycles;;no_research;TypeScript +https://github.com/sebas524/mapbox-app;;no_research;TypeScript +https://github.com/sebas524/maps-app;;no_research;TypeScript +https://github.com/sebas524/MyHeroesAppAngularFrontend;Website for adding your favorite superheroes! includes CRUD functionality and route protection as well as log in / register functionality! All done using Angular 16 and Angular Material.;no_research;TypeScript +https://github.com/sebas524/MyHeroesAppNodeJsBackend;backend made with mongoDB and NodeJs with Typescript and Express for MySuperheroesApp project.;no_research;TypeScript +https://github.com/sebas524/online-store;* IN-PROGRESS e-commerce online shop that will allows users to search for products and go to checkout and make payments. Using Angular and Angular Material ;no_research;TypeScript +https://github.com/sebas524/patientTrackerApp;Track patient check-ins ADD,DELETE,UPDATE. Made using React and TailwindCss;no_research;JavaScript +https://github.com/sebas524/pipes-and-primeNG;small project to learn about pipes and using PrimeNG;no_research;TypeScript +https://github.com/sebas524/pokemon-backend;this is my repository for this backend made using NestJs;no_research;TypeScript +https://github.com/sebas524/projectManagementApp-look-alike;;no_research;TypeScript +https://github.com/sebas524/pushme;;no_research; +https://github.com/sebas524/quote-generator;vanilla javascript quotes generator. Quotes fetched from API;no_research; +https://github.com/sebas524/quotesApp;quotes;no_research;CSS +https://github.com/sebas524/reactiveFormsApp;;no_research;TypeScript +https://github.com/sebas524/socialMediaApi;;no_research;JavaScript +https://github.com/sebas524/superheroes-app-angular-frontend;Website for adding your favorite superheroes! includes CRUD functionality and route protection as well as log in / register functionality! All done using Angular 16 and Angular Material.;no_research;TypeScript +https://github.com/sebas524/superheroes-app-nestjs-backend;backend made with mongoDB and Nestjs for superheroes project. ;no_research;TypeScript +https://github.com/sebas524/to-do-list;pretty self explanatory :);no_research;JavaScript +https://github.com/sebas524/weather-app;weather app made for uni using Angular.;no_research;TypeScript +https://github.com/sebas524/x-justice-league;git course practice;no_research; +https://github.com/SemanticMultimedia/COAL;web media content analysis framework;no_research;Java +https://github.com/SemanticMultimedia/DBpedia_HITS_Scores;DBpedia_HITS_Scores;no_research; +https://github.com/SemanticMultimedia/DBpedia_PageinLinkCounts_Cleaned;DBpedia_PageinLinkCounts_Cleaned;no_research; +https://github.com/SemanticMultimedia/DBpedia_PageoutLinkCounts_Cleaned;DBpedia_PageoutLinkCounts_Cleaned;no_research; +https://github.com/SemanticMultimedia/DBpedia_PageRank_Scores;DBpedia_PageRank_Scores;no_research; +https://github.com/SemanticMultimedia/JungGraphMeasures;JungGraphMeasures - PageRank and HITS implementations for large RDF graphs ;research;Java +https://github.com/SemanticMultimedia/locopod;LOcal COPy On Demand;no_research;Python +https://github.com/SemanticMultimedia/RefreshQueries;;no_research; +https://github.com/SemanticMultimedia/tlr-java-api;Java API for tailr;no_research;Java +https://github.com/SemanticMultimedia/vocabularies;vocabularies;no_research;HTML +https://github.com/SemjonWilke/ampis;This is an initial approach to implement a simple midi-sequencer/sampler as a raspberry pi project.;no_research;C +https://github.com/SemjonWilke/arduino_projects;;no_research;C++ +https://github.com/SemjonWilke/ble_154_seminar;;no_research; +https://github.com/SemjonWilke/convex_polygons;Softwareprojekt zum Wettbewerb der Computational Geometry Week 2020;no_research;Python +https://github.com/SemjonWilke/Fadenkreuz;shows a Crosshair (or any png) on top of every other window;no_research;Python +https://github.com/SemjonWilke/mygreasemonkeyscripts;;no_research;JavaScript +https://github.com/SemjonWilke/text_to_microphone;;no_research;Python +https://github.com/Shadiouss/Calculate-NDVI;;no_research;Jupyter Notebook +https://github.com/Shadiouss/Plot_NDVi_Indices_Data_plotly;;no_research;Jupyter Notebook +https://github.com/Shadiouss/shadi1988;;no_research; +https://github.com/shahriar-96/LaraTicket;;no_research;PHP +https://github.com/shahriar-96/R;Biostatistics & Epidemiological Data Analysis using R;no_research; +https://github.com/shahriar-96/shahriar;Project;no_research; +https://github.com/Shuwen27/laser-detective-classification;;no_research;Python +https://github.com/Shuwen27/Shuwen27;Config files for my GitHub profile.;no_research; +https://github.com/simonstadlinger/ausarbeitung_reverseInnovation;"Ausarbeitung des Vortrages ""Reverse Innovation"" im Modul Unternehmerische Denken und Handeln der Universität Potsdam - Fakultät Digital Engineering";no_research;TeX +https://github.com/simonstadlinger/Aussage2Tabelle;Erstellt eine Latex-Tabelle aus einer Aussage;no_research;Python +https://github.com/simonstadlinger/cep19-praktikum;;no_research;HTML +https://github.com/simonstadlinger/cprojects;;no_research;C +https://github.com/simonstadlinger/DYOD_2021;;no_research;C++ +https://github.com/simonstadlinger/music-walks-samples;;no_research; +https://github.com/simonstadlinger/pt-bungHPI20172018;shared folders for exercises in the subject Programmiertechnik 1 at Hasso-Plattner-Institut for WS 2017/2018;no_research;Python +https://github.com/simonstadlinger/pt2uebungSS2018;;no_research;Java +https://github.com/simonstadlinger/recipes;A website, where you can enter recipes you found online or in an app and quickly print them for your personal recipes book;no_research;TypeScript +https://github.com/simonstadlinger/zettelkasten;personal zettelkasten merged with second brain;no_research;HTML +https://github.com/SiQube/aoc2022;;no_research;Python +https://github.com/SiQube/scratch;;no_research;Vim Script +https://github.com/Snagnar/basic-iot-server;A very basic server with a few routes for iot devices to connect with;no_research;JavaScript +https://github.com/Snagnar/Caffeinator;Cost tracking system for a students coffee machine using a touchscreen and a rfid reader.;no_research; +https://github.com/Snagnar/CompetitiveReconstructionNetworks;Implementation of the CRN paper;no_research;Python +https://github.com/Snagnar/esp8266-wifi-cred-submit-framework;A framework to submit wifi credentials to your ESP8266 on initial startup. Can also be used t o change wifif credentials stored on the ESP;no_research; +https://github.com/Snagnar/FanOfDoom;A Fan of Doom;no_research;C++ +https://github.com/Snagnar/generic_data_logger;A generic approach to using data loggers to store sensor data. It supports also status and error output over led blinking patterns.;no_research;C++ +https://github.com/Snagnar/spokenRobot;A speech assistant for e.g. home automatisation with pocketsphinx detecting a keyword and googles speech api for voice transcription;no_research;C++ +https://github.com/Snagnar/spotify-restart-on-ad;Restarts the Spotify Desktop Client on Ubuntu when ads are played;no_research;Shell +https://github.com/Snagnar/WinningRobot;This Robot is totally gonna win this competition.;no_research;C++ +https://github.com/sodhinchu/CV_Learning;;no_research;Jupyter Notebook +https://github.com/sodhinchu/NLP_Learning;;no_research; +https://github.com/sodhinchu/Python_Learning;;no_research;Jupyter Notebook +https://github.com/SoenBeier/AG_Ehrenamt;Zur Ausarbeitung eines Antrages an den Senat der Uni Potsdam;no_research; +https://github.com/SoenBeier/Bachelorarbeit;Makroskopische und mikroskopische Betrachtung der Motilität von Pseudomonas putida in Gelen;no_research; +https://github.com/SoenBeier/BAfoeG;Hier werden Verbesserungsvorschläge für das Bundesausbildungsförderungsgesetz gesammelt. Eine Idee ist die Einführung der Förderverlängerung aufgrund von außeruniversitärer ehrenamtlicher Tätigkeiten. ;no_research; +https://github.com/SoenBeier/diffusion_map;;no_research;Jupyter Notebook +https://github.com/SoenBeier/Grundpraktikum_Fehlerfortpflanzung;zur Berechnung der Standardabweichung bei Fehlerfortpflanzung im Grundpraktikum;no_research;Python +https://github.com/SoenBeier/Menstruationsartikel;;no_research; +https://github.com/SoenBeier/ModSimAufgaben;;no_research;Jupyter Notebook +https://github.com/SoenBeier/PPF-Optische-Pinzette;"Videodateien zum Versuch ""O6 - Optische Pinzette"" des Physikalischen Praktikums für Fortgeschrittene ";no_research; +https://github.com/SoenBeier/predictive_informations;Uniprojekt - Modul: Complexity Science;no_research;MATLAB +https://github.com/SoenBeier/Schachspiel;Projekt - ModSim2018;no_research;Python +https://github.com/SoenBeier/scientific_computing_Projekt;Projektarbeit im 3. Semester B.Sc. Physik ;no_research;C++ +https://github.com/Software-Engineering-Group-UP/FAIR-test;Analysis of research software testing in university of potsdam ;no_research;Jupyter Notebook +https://github.com/soslavsk/geomorphSAR;Set of functions to use synthetic aperture radar (SAR) time series for geomorphic analysis. See more in our paper here: https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2019JF005141;no_research;MATLAB +https://github.com/soslavsk/SAR_PAA;Identify potentially affected areas (PAA) after a damage event using synthetic aperture radar;no_research;MATLAB +https://github.com/sthiele/aspif-parser;aspif parser;no_research;Rust +https://github.com/sthiele/mrn-canvas;An item canvas using relm;no_research;Rust +https://github.com/sthiele/myconfigs;;no_research;Shell +https://github.com/sthiele/pyasp;A convenience wrapper for the ASP tools gringo, gringo4 and clasp;no_research;Python +https://github.com/sthiele/SCM-collection;Collection of posts related to: Reasoning over the transitional behavior of dynamic systems using sign consistency constraints;no_research;TeX +https://github.com/sthiele/sgf-navigator;navigate SGF files for Go;no_research;Rust +https://github.com/sthiele/versuch;;no_research;Rust +https://github.com/sthiele/yewexample;A wasm frontend with yew;no_research;Rust +https://github.com/Studierendenschaft/Dokumente;;no_research; +https://github.com/susuhahnml/asp-game-ml-strategies;;no_research;Jupyter Notebook +https://github.com/susuhahnml/asp-game-strategies;Learning game strategies in ASP (clingo) using minimax and inductive logic programming (ILASP) :clubs: :game_die:;research;Python +https://github.com/susuhahnml/atlingo;Temporal Logics with Automatons;no_research;Python +https://github.com/susuhahnml/awsome-factory-associator;Provides a syntax to define factories with any kind of association. Helping you create models and the environment needed for each test with inline awesome configuration. This hook works with Sails.js framework and using Sequelize as ORM.;no_research;JavaScript +https://github.com/susuhahnml/digforasp-slides;;no_research; +https://github.com/susuhahnml/forIssue;Sails project to show waterline issue;no_research;JavaScript +https://github.com/susuhahnml/js_osus;Ejercicios de JS;no_research;JavaScript +https://github.com/susuhahnml/streamlit-issue;Describing the streamlit feature-issue;no_research;HTML +https://github.com/swilharm/anlp-aleksandra-nailia-sebastian;;no_research;Jupyter Notebook +https://github.com/swilharm/hierarchical-bi-lstm-pos-tagger;;no_research;Python +https://github.com/swilharm/hri-dialog-manager;;no_research;Jupyter Notebook +https://github.com/swilharm/kaggle-petfinder-adoption-prediction;Kaggle Competition: PetFinder.my Adoption Prediction;no_research; +https://github.com/swilharm/mapf-fan-sebastian;;no_research;Python +https://github.com/szugyiedit/Advent_of_Code_2018;;no_research;Jupyter Notebook +https://github.com/szugyiedit/Conceptual_Complexity_of_Encyclopedia_Texts;This repository contains data, code and results for my Individual Module at the Cognitive Systems M.Sc. of Potsdam University;no_research;Jupyter Notebook +https://github.com/szugyiedit/dimlex-hu;Lexicon of Hungarian Discourse Connectives;no_research; +https://github.com/szugyiedit/test_vscode;;no_research;Jupyter Notebook +https://github.com/TamaraAtanasoska/AMR_ArgumentSimilarity;Argument and opinion mining Project Module - Reproduction project;research;Python +https://github.com/TamaraAtanasoska/ASP-Timetable;The final project for the introductory couse on ASP(declarative programming) at the University of Potsdam.;no_research;Jupyter Notebook +https://github.com/TamaraAtanasoska/BerlinMumsLearnToCode;A list of recourses for Berlin mums wanting to join the tech side and learn programming.;no_research; +https://github.com/TamaraAtanasoska/ClubCloud;ClubCloud;no_research;Python +https://github.com/TamaraAtanasoska/dialogue-history;Language, Vision and Interation Project Module - Reproduction Project;no_research;Python +https://github.com/TamaraAtanasoska/IDA-Final-Project;"The final project for the ""Intelligent Data Analysis and Machine Learning I"" module";no_research;Jupyter Notebook +https://github.com/TamaraAtanasoska/SemEval-2022-Task-8-Multilingual-News-Article-Similarity;"A final project for the course ""Advanced Natural Language Processing"" for the winter semester 2021/22. Part of the program Cognitive Systems at the University of Potsdam.";no_research;Python +https://github.com/TamaraAtanasoska/womenInTech;PyLadies Workshop;no_research;Python +https://github.com/tasmi/BigData_Class;;no_research; +https://github.com/tasmi/earthengine_code_snippets;Short code snippets using the GEE Python API;no_research;Python +https://github.com/tasmi/GNSS_TopoBlocking;Check for topographic obstuctions to satellite view for a given location;no_research;Python +https://github.com/tasmi/HillslopeAsymmetry;;no_research;Python +https://github.com/tasmi/SnowmeltTracking;Algorithm for tracking the onset and end of the snowmelt season from passive microwave data;research;Python +https://github.com/tasmi/Transects;Create a set of windows perpendicular to a given line shapefile;no_research;Python +https://github.com/tasmi/triangle_colorbar;Create a trianglular meshgrid of colors to plot arbitrary RGB color scales ;no_research;Python +https://github.com/tasnimul-unipotsdam/-segmentation-pipeline;;no_research;Python +https://github.com/tasnimul-unipotsdam/Deep-learning-approach-to-correct-segmentation-masks-of-femoral-bones-and-uncertainty-estimation;;no_research;Python +https://github.com/tasnimul-unipotsdam/EuroSAT;;research;Python +https://github.com/tasnimul-unipotsdam/ms_thesis;This repository contains code that are used in my thesis. ;research;Python +https://github.com/tasnimul-unipotsdam/Writing-TFRecords;;no_research;Python +https://github.com/tE3m/adventofcode;My solutions for Advent of Code in Python, only using built-in libraries;no_research;Python +https://github.com/tE3m/BWInf;Meine Lösungen für die 39., 40. und 41. Runde des Bundeswettbewerbs Informatik.;no_research;Python +https://github.com/tE3m/mixed-messages;A portfolio project from Codecademy.;no_research;JavaScript +https://github.com/tE3m/SmartConnections;;no_research;TypeScript +https://github.com/Tee994/Processing-for-Designers-FHP;"Processing projects as a part of the university course ""Processing for Designers"" at FH Potsdam";no_research;Processing +https://github.com/thogaertner/assignment_fohc;Fundamentals of healthcare assignment;no_research;JavaScript +https://github.com/thogaertner/thogaertner;Config files for my GitHub profile.;no_research; +https://github.com/thomas-muench/ms-optimalcores;LaTeX source files for the paper of determining an optimal spatial sampling configuration for Antarctic ice cores based on ECHAM5-MPIOM-wiso past1000 isotope data.;no_research;TeX +https://github.com/TillF/directional_CRNS;Illustrate theoretical discernability and accuracy of CRNS signal of a directional CRNS probe;research;HTML +https://github.com/TillF/Einf_Modellierung;"Präsentationen und Übungen zum Seminar ""Einführung in die Modellierung""";no_research;R +https://github.com/TillF/FDR2soilmoisture;R-package for processing data of FDR-measurements to obtain soil moisture;no_research;R +https://github.com/TillF/MMEMO;Scripts and data used in a study to assess the impact of various model enhancements on the performance of a hydro-sedimentological model.;no_research;R +https://github.com/TillF/ppso;R-package for optimization with Particle Swarm Optimization or Dynamically Dimensioned Search;no_research;R +https://github.com/TillF/SDI-logger;Data logger for logging SDI-sensor data to SD-card with RTC-time stamp on Arduino;no_research;C++ +https://github.com/TillF/SoilDataPrep;Prepare soil data for WASA;no_research;R +https://github.com/TillF/soils4wasa;scripts for assisting in parameterizing the soil information for WASA-SED (deprecated);no_research;R +https://github.com/TillF/ssc_prediction;prediction of sedigraphs and hydrographs from other predictors using RF / QRF;research;R +https://github.com/TillF/WASA-SED;WASA-SED is a numerical model for simulation hydrological and sediment fluxes from meso-scale catchments (Mueller et al., 2010). This repository contains documentation, sample data set and source code. ;no_research;Fortran +https://github.com/TillF/wasa_tests;Test for WASA-SED;no_research;R +https://github.com/Tim-TheEnchanter/Decomp-Ordering-Encodings-MAPF;"This repo will include the encodings -- written or altered by me -- that I intend to use for my Bachelor Thesis about ""Decomposition and Ordering Strategies for the Multi-Agent Pathfinding Problem"" ";no_research;Jupyter Notebook +https://github.com/Tim-TheEnchanter/MAPF-Seminar_Project;This will contain everything needed for the MAPF project of the respective Seminar at the University of Potsdam (2021, work in progress);no_research;Jupyter Notebook +https://github.com/Timmate/check-my-time;A simple time and attendance system.;no_research;Python +https://github.com/Timmate/face-alignment-notebooks;Notebooks featuring the use of the face_alignment Python library ;no_research;Jupyter Notebook +https://github.com/Timmate/get-git-lfs-size;Get an estimate of the size of a Git LFS-enabled repo or a folder within such a repo.;no_research;Python +https://github.com/Timmate/typingrace-nabiraem-bot;A bot for typingrace.nabiraem.ru game competition on fast typing.;no_research;Python +https://github.com/TimRichter/agdaTest;just some experiments;no_research;Agda +https://github.com/TimRichter/automata;finite state .s.o. in idris;no_research;Idris +https://github.com/TimRichter/BirdLists;;no_research;Agda +https://github.com/TimRichter/CartesianSeminar;Notes and Material for the Cartesian Seminar at the University of Potsdam;no_research; +https://github.com/TimRichter/CId;a little category theory in Idris;no_research;Idris +https://github.com/TimRichter/margritLaTeX;Tex Code;no_research;TeX +https://github.com/ToBraun/RECFLOW;;no_research;Jupyter Notebook +https://github.com/ToBraun/RECLAC;RECLAC Python package;research;Jupyter Notebook +https://github.com/ToBraun/SRC-surrogates;;no_research;Jupyter Notebook +https://github.com/tortinator/eclingo;;no_research;TeX +https://github.com/TScheffler/2019ESSLLI-discparsing;Shallow Discourse Parsing class at ESSLLI 2019;no_research;Python +https://github.com/TScheffler/2019HCH-conv;"This is a repository for the class ""Discourse on Social Media"" in the 2nd Heidelberg Computational Humanities Summer School 2019.";no_research;Jupyter Notebook +https://github.com/TScheffler/2020grammarly_ws;Workshop on Shallow Discourse Parsing at Grammarly, Kyiv, 2020;no_research;Jupyter Notebook +https://github.com/TScheffler/Connectives;;research; +https://github.com/TScheffler/GermanTwitterApril2013;Corpus of German Tweets from April 2013;no_research; +https://github.com/TScheffler/publications;;no_research;TeX +https://github.com/TScheffler/Questions-in-Discourse;;no_research; +https://github.com/TScheffler/TagQuestions;Ressources related to tag questions;no_research; +https://github.com/TScheffler/Teaching;;no_research;Jupyter Notebook +https://github.com/TScheffler/TwitterCorpora;;no_research;Python +https://github.com/TScheffler/UK_DiMLex;Lexicon of Ukrainian connectives;research; +https://github.com/tschlemm/tschlemm;Config files for my GitHub profile.;no_research; +https://github.com/tzwenn/altivecmm;A C++ wrapper for Altivec (VMX) intrinsics.;no_research;C++ +https://github.com/tzwenn/gmod-oculus;Oculus Rift support for Garry's Mod;no_research;C++ +https://github.com/tzwenn/homebrew-multitoe;Homebrew forumula for installing MultiToe;no_research;Ruby +https://github.com/tzwenn/learn_power8;A pointless POWER8 playground.;no_research;C++ +https://github.com/tzwenn/luksfs;Mount a LUKS device using FUSE;no_research;Python +https://github.com/tzwenn/MathGenealogy;Downloading and displaying academic ancestry;no_research;Python +https://github.com/tzwenn/moalinna;A web interface to store SSH keys for pubkey auth in a database.;no_research;Python +https://github.com/tzwenn/myLambda;A minimalistic functional language. Play ground for wannabes. ;research;Python +https://github.com/tzwenn/nupkux;Nupkux is a small kernel for an Unix-like operating system, developed on x86-architecture. It aims to offer a POSIX-compatible interface.;no_research;C +https://github.com/tzwenn/om-parser-rub;OpenMensa feed provider for AKAFÖ RUB canteens;no_research;Python +https://github.com/tzwenn/PokeDuino;Generate Pokemon (Gen I) on your computer and transfer them to a GameBoy using an Arduino relay.;no_research;Python +https://github.com/tzwenn/pwrHTM;Cross compiler library for hardware transactional memory on POWER;no_research; +https://github.com/tzwenn/pyh264decode;Decode H.264 packets with external avcC to YUV frames;no_research;C +https://github.com/tzwenn/PyOpenAirMirror;An open source AirPlay mirroring server in Python for iOS 6-8;no_research;Python +https://github.com/tzwenn/pyrlang;BEAM-VM in RPython. Fork of https://bitbucket.org/hrc706/pyrlang/;no_research;Erlang +https://github.com/tzwenn/shairdrop;Some information gathered on Apple's Airdrop for OS X. Example scripts added.;no_research;Python +https://github.com/tzwenn/SimpleVideoInput;A simple class, that uses ffmpeg to create OpenCV images from local video files.;no_research;C++ +https://github.com/tzwenn/StuPa-Tools;Eine Sammlung von Werkzeugen zur Sitzungsvorbereitung des Studierendenparlaments der Universität Potsdam.;no_research;Python +https://github.com/tzwenn/tagged-int-bf;Comparison of different integer types in RPython with BF;no_research;Python +https://github.com/tzwenn/tenca; An eemaill-like interface for mailman3.;no_research;Python +https://github.com/tzwenn/tenca-webui;Simple Flask-based WebUI to manage and confirm mailinglist requests with tenca;no_research;Python +https://github.com/tzwenn/translit_de;Cyrillic translit keyboard layout (based on german layout);no_research; +https://github.com/tzwenn/ubuntu-latex-fonts;For all those who like to use the Ubuntu Font Family in LaTeX.;no_research; +https://github.com/ubpot/eFormular;A Workflow-System used @ Potsdam University Press;no_research;JavaScript +https://github.com/ubpot/test;Erste Schritte;no_research; +https://github.com/University-of-Potsdam-MM/Alexa;;no_research;Python +https://github.com/University-of-Potsdam-MM/cff2pages;This package should create a generic page based on your cff.;research;Python +https://github.com/University-of-Potsdam-MM/contactJS-cordova-dummy;A Cordova dummy project with all the necessary configurations to use contactJS.;no_research;JavaScript +https://github.com/University-of-Potsdam-MM/EventsApp;;no_research;JavaScript +https://github.com/University-of-Potsdam-MM/Freiraum.UP;This repository is now maintained at the internal Git server at University of Potsdam.;no_research;TypeScript +https://github.com/University-of-Potsdam-MM/GRANT;GRANT - GRafische ANwendungen auf Taktilen Displays;research;C# +https://github.com/University-of-Potsdam-MM/helix_media_lib;;no_research;PHP +https://github.com/University-of-Potsdam-MM/jsFiddleGithubDemo;;no_research;JavaScript +https://github.com/University-of-Potsdam-MM/login-provider;;no_research;TypeScript +https://github.com/University-of-Potsdam-MM/mail-portlet;;no_research;Java +https://github.com/University-of-Potsdam-MM/MensaApp;Multi-platform mensa app built with phonegap.;no_research;JavaScript +https://github.com/University-of-Potsdam-MM/Mobile.UP;Mobile.UP;no_research;TypeScript +https://github.com/University-of-Potsdam-MM/MoodlePlugin_PDFChecker;Moodle Plugin to check accessibility of PDF files;no_research;PHP +https://github.com/University-of-Potsdam-MM/motivate-adaptationengine;;no_research;JavaScript +https://github.com/University-of-Potsdam-MM/motivate-mobile-client;;no_research;JavaScript +https://github.com/University-of-Potsdam-MM/motivate-rulegenerator;;no_research;Java +https://github.com/University-of-Potsdam-MM/OpenSocial-Spike;;no_research;JavaScript +https://github.com/University-of-Potsdam-MM/orcid;This Typo3-Extension allows researchers to integrate their publications form ORCiD into a Typo3 website.;no_research;JavaScript +https://github.com/University-of-Potsdam-MM/PDF-Accessibility-Check;PDF-Accessibility-Check for Moodle-Plug-in;no_research;Java +https://github.com/University-of-Potsdam-MM/reflect-block_pushnotification;;no_research;PHP +https://github.com/University-of-Potsdam-MM/reflect-local_reflect;;no_research;PHP +https://github.com/University-of-Potsdam-MM/Reflect.UP;Reflect.UP;no_research;TypeScript +https://github.com/University-of-Potsdam-MM/Tool.UP;;no_research;TypeScript +https://github.com/University-of-Potsdam-MM/wordsup-moodle;;no_research;PHP +https://github.com/University-of-Potsdam-MM/wordsup-ws;;no_research;PHP +https://github.com/University-of-Potsdam-MM/zukunftstag2022-game;This is a archive. The project has moved to: https://gitup.uni-potsdam.de/zukunftstag/icons;no_research;JavaScript +https://github.com/UP-macroecology/EBBA_Niche_vs_Range_shifts;Niche and range shifts analyses of European breeding bird atlas data.;research;R +https://github.com/UP-macroecology/Malchow_DemogEnv_2022;"Supplementary informaion to the publication: ""Demography-environment relationships improve mechanistic understanding of range dynamics under climate change"" by Anne-Kathleen Malchow, Florian Hartig, Jette Reeg, Marc Kéry, and Damaris Zurell.";research;R +https://github.com/UP-macroecology/Malchow_IBMcalibration_2023;"This is supplementary material to the publication ""Fitting individual-based models of species range dynamics to long-term monitoring data"" by Anne-Kathleen Malchow, Guillermo Fandos, Urs G. Kormann, Martin Grüebler, Marc Kéry, Florian Hartig, Damaris Zurell.";research;R +https://github.com/UP-macroecology/ODMAP;;research;R +https://github.com/UP-macroecology/Response_Summerschool;;no_research;R +https://github.com/UP-RS-ESP/addem;Analysis of Distributions from Digital Elevation Models (ADDEM);no_research;Python +https://github.com/UP-RS-ESP/bpl;Python module to work with bounded power-law (BPL) distributed random variables.;no_research;Python +https://github.com/UP-RS-ESP/Codes;Codes pertinent for the analysis for remote sensing or earth-surface data;no_research;Python +https://github.com/UP-RS-ESP/CorrCoef;Python C-extension for memory efficient and multithreaded Pearson product-moment correlation coefficient estimation using OpenMP;no_research;C +https://github.com/UP-RS-ESP/DEM-KZP;Digital Elevation Model (DEM) and KnickZone-Picker (KZP) Analyzer (http://onlinelibrary.wiley.com/doi/10.1002/2017JF004250/full);research;Matlab +https://github.com/UP-RS-ESP/demnets;Digital Elevation Model Networks;no_research;C +https://github.com/UP-RS-ESP/DEM_ConnectedComponents;Connected Components (CC) from longitudinal river profiles for debris flow mapping;no_research;Jupyter Notebook +https://github.com/UP-RS-ESP/dtm-surface-area-and-slope;Tools for the estimation of surface area of digital terrain models (DTMs) and its effect on slope distributions;no_research; +https://github.com/UP-RS-ESP/Gaussian-kernel-interpolation;Voxelize a point-cloud variable via Gaussian kernel interpolation to voxel centers;no_research;Python +https://github.com/UP-RS-ESP/GeologicalRemoteSensing_Manuals;Manuals (Markdown, PDF) for Python, Remote-Sensing Software, and SSH installation;no_research;TeX +https://github.com/UP-RS-ESP/GEW-DAP04-WS201819;;no_research;Python +https://github.com/UP-RS-ESP/GEW-DAP05-2018;;no_research;Python +https://github.com/UP-RS-ESP/LidarPC-KDTree;Comparison of KDTree implementations for Lidar PointClouds (PC);research;Jupyter Notebook +https://github.com/UP-RS-ESP/mfdrouting;Multiple Flow Direction (MFD) flow routing after Freeman (1991);research;C +https://github.com/UP-RS-ESP/MinGrid;MinGrid creates a gridded DEM from point clouds by the minimum elevation per grid cell;no_research;C +https://github.com/UP-RS-ESP/mkt;Python module to compute the Mann-Kendall test for trend in time series data;no_research;Python +https://github.com/UP-RS-ESP/msc-rsiv;MSc Remote Sensing, geoInformation, and Visualization at the University of Potsdam;no_research;Ruby +https://github.com/UP-RS-ESP/Normalize;Normalize time series by quantile normalization to the normal distribution.;no_research;C +https://github.com/UP-RS-ESP/Planet2MintPy;Convert offset calculation from PlanetScope data (PS2, SD) to MintPy format for Inversion;no_research;Python +https://github.com/UP-RS-ESP/PointCloudWorkshop-June2017;Point-Cloud Workshop from 7-9 June 2017;no_research;Matlab +https://github.com/UP-RS-ESP/PointCloudWorkshop-May2022;Point Cloud and Change Detection in the Geoscience;no_research;Jupyter Notebook +https://github.com/UP-RS-ESP/PointCloudWorkshop-Oct2019;From point clouds and full-waveform data to DEM analysis (Sep-30 to Oct-4 2019);no_research;Python +https://github.com/UP-RS-ESP/qreg;Python module to carry out quantile regression;no_research;Python +https://github.com/UP-RS-ESP/TopoMetricUncertainty;Uncertainties in topographic metrics due to truncation errors and elevation uncertainty;research;Python +https://github.com/uplug/battleships;Learning Project;no_research; +https://github.com/uplug/Hello-World;First Project;no_research; +https://github.com/uplug/satzung;;no_research; +https://github.com/uplug/Vortraege;Die Vorträge der upLUG;no_research;TeX +https://github.com/uplug/Werbematerial;Werbematerial;no_research; +https://github.com/vasishth/ABC_MethodsX_JML_Vasishth2019;This is the source code and data for a methods paper accompanying the paper by Jäger, Mertzen, Van Dyke and Vasishth, 2019. See OSF repo.;no_research;TeX +https://github.com/vasishth/agrmtreflexives;Large-sample Multilab replication attempt of Dillon et al 2013;no_research; +https://github.com/vasishth/ARLVasishth;Supplementary material to accompany the paper: Some right ways to analyze (psycho)linguistic data;no_research;HTML +https://github.com/vasishth/bayescogsci;Draft of book entitled An Introduction to Bayesian Data Analysis for Cognitive Science by Nicenboim, Schad, Vasishth;no_research;HTML +https://github.com/vasishth/BayesianLinearModeling;Lecture notes for the Bayesian linear modeling course taught in winter semester at the University of Potsdam;no_research; +https://github.com/vasishth/BayesLMMTutorial;Tutorial files to accompany Sorensen, Hohenstein, and Vasishth paper: http://www.ling.uni-potsdam.de/~vasishth/statistics/BayesLMMs.html;no_research; +https://github.com/vasishth/embraceuncertainty;Code and data to accompany the paper: Shravan Vasishth and Andrew Gelman. How to embrace variation and accept uncertainty in linguistic and psycholinguistic data analysis. Linguistics, 59:1311--1342, 2021. doi: https://doi.org/10.1515/ling-2019-0051;no_research; +https://github.com/vasishth/EMLAR2021BayesTutorial;;no_research;HTML +https://github.com/vasishth/EMLAR2022BayesTutorial;Materials for the EMLAR Bayes 1 and 2 tutorials;no_research;R +https://github.com/vasishth/ESSLLI2015Vasishth_Week1;Material for ESSLLI 2015 (Week 1) course entitled Statistical methods for linguistic research: Foundational Ideas;no_research;R +https://github.com/vasishth/ESSLLI2015Vasishth_Week2;This repository contains the code and slides for the Statistics Methods course taught in Week 2 at ESSLLI 2015, Barcelona.;no_research;PostScript +https://github.com/vasishth/ExpLing;Reproducible code and data for the chapter New Directions in Statistical Analysis for Experimental Linguistics;no_research;TeX +https://github.com/vasishth/FGME_Stan_2017;Repository for all lecture notes, code, and data relating to the Stan workshop at FGME 2017 in Tuebingen, Germany.;no_research;TeX +https://github.com/vasishth/FoundationsOfMathematics;Lecture notes for the foundations of mathematics course taught in winter semester as part of the MSc in Cognitive Systems.;no_research;TeX +https://github.com/vasishth/frequentiststatscogsci;;no_research;HTML +https://github.com/vasishth/Freq_CogSci;Linear mixed models in Linguistics and Psychology: A Comprehensive Introduction;no_research;TeX +https://github.com/vasishth/Goettingen_brms_intro;Introduction to using brms for linear mixed models;no_research;TeX +https://github.com/vasishth/guitar-notes;Notes on music theory etc.;no_research;Shell +https://github.com/vasishth/Hamburg2019;The role of replicability in Bayesian data analysis;no_research;HTML +https://github.com/vasishth/HubermanBreathing;Reanalysis of a paper in Cell Reports in Medicine from the Huberman lab in Stanford on breathing.;research;HTML +https://github.com/vasishth/HusainEtAlJEMR2015;Data and code relating to Husain, Narayanan, Vasishth, 2015. Integration and prediction difficulty in Hindi sentence comprehension: Evidence from an eye-tracking corpus. Journal of Eye Movement Research, 8(2):1-12, 2015.;research;Stan +https://github.com/vasishth/InFrequentlyUsedCommands;Here are some commands etc. that I sometimes need to do, but never can remember.;no_research; +https://github.com/vasishth/IntroBayesSMLP2021;This is the course home page for Intro Bayes at SMLP 2021.;no_research;TeX +https://github.com/vasishth/IntroBDAatHPI;Code and other materials for the Introduction to Bayesian Data Analysis taught on the Open HPI platform.;no_research; +https://github.com/vasishth/IntroductionBayes;An introduction to Bayesian Data Analysis: A one-week course;no_research;HTML +https://github.com/vasishth/IntroductionBDA;An Introductiion to Bayesian Data Analysis;no_research;TeX +https://github.com/vasishth/IntroductionStatistics;An introduction to statistics from scratch. Prerequisites: Basic knowledge of R.;no_research;R +https://github.com/vasishth/IntroLMMs_IITKanpur;;no_research; +https://github.com/vasishth/Intro_Bayes_CogSci;An Introduction to Bayesian Data Analysis for Cognitive Science, Vasishth, Nicenboim, Schad, to appear, CRC Press;no_research;HTML +https://github.com/vasishth/jopbayes;Code and data for the Journal of Phonetics article entitled Bayesian data analysis in the phonetic sciences: A tutorial introduction;no_research;HTML +https://github.com/vasishth/lingpsych;"Datasets and models included in the book ""Linear Mixed Models for Linguistics and Psychology: A Comprehensive Introduction"". ";no_research;R +https://github.com/vasishth/LissonEtAlAphasia;;no_research; +https://github.com/vasishth/LM;;no_research;R +https://github.com/vasishth/MaetzigEtAl2018;Code and data to accompany Paul Mätzig, Shravan Vasishth, Felix Engelmann, David Caplan, and Frank Burchert. A computational investigation of sources of variability in sentence comprehension difficulty in aphasia. Topics in Cognitive Science, 10(1):161-174, 2018. ;no_research;Common Lisp +https://github.com/vasishth/manuscript_LogacevVasishth_CogSci_SMCM;Code + Data for the Logacev & Vasishth paper on underspecification and parallel processing. Proposes the SMCM as a task-dependent model of ambiguity resolution.;research;TeX +https://github.com/vasishth/manuscript_LogacevVasishth_TQJEP_Underspecification;Code + Data for the Logacev & Vasishth paper on underspecification models. Compares the quantitative fit of several models of underspecification.;no_research;TeX +https://github.com/vasishth/MetaAnalysisJaegerEngelmannVasishth;All data and code related to the paper This github archive contains all data and code that relate to the following paper: Lena A. Jäger, Felix Engelmann, and Shravan Vasishth. Similarity-based interference in sentence comprehension: Literature review and Bayesian meta-analysis. Journal of Memory and Language, 2016. Accepted.;no_research; +https://github.com/vasishth/MetaAnalysisJaegerEngelmannVasishth2017;Code and data to accompany paper by L.A. Jäger, Engelmann, & Vasishth, 2017. Similarity-based interference in sentence comprehension: Literature review and Bayesian meta-analysis. Journal of Memory and Language. doi:10.1016/j.jml.2017.01.004;research;R +https://github.com/vasishth/MichiganLinguistics2020talk;slides and materials for Michigan talk on Feb 6, 2020;no_research; +https://github.com/vasishth/MixtureChinese;Mixture Models of Chinese Relative Clause Processing;no_research; +https://github.com/vasishth/MPILeipzig2019;Materials for the MPI Leipzig workshop and hands-on session on open science;no_research;TeX +https://github.com/vasishth/MScDissertationVasishth;Code+documentation and data to accompany my MSc dissertation in statistics from the School of Mathematics and Statistics, Sheffield, UK.;no_research; +https://github.com/vasishth/MScStatisticsNotes;These are cheat sheets and notes I made as part of an MSc in Statistics, at the University of Sheffield, UK.;no_research;TeX +https://github.com/vasishth/musictheory;Notes on music theory (specifically for classical guitar);no_research;Shell +https://github.com/vasishth/NicenboimVasishthPart2;Code and data to accompany the article Statistical methods for linguistic research: Foundational Ideas - Part II, by Bruno Nicenboim and Shravan Vasishth. Language and Linguistics Compass, 2016. doi: 10.1111/lnc3.12207;research;R +https://github.com/vasishth/OrdinaryDifferentialEquations;Notes on ODEs;no_research; +https://github.com/vasishth/PaapeVasishthLanguageSpeech2015;This repository has the data and code for the paper: Dario Paape and Shravan Vasishth. Local coherence and preemptive digging-in effects in German. Language and Speech, 2015.;no_research; +https://github.com/vasishth/powerpose;Reanalysis of Carney, Cuddy, and Yap 2010 data on power posing.;research;Stan +https://github.com/vasishth/ProcessingPolarity;Code and data for the paper: Shravan Vasishth, Sven Bruessow, Richard L. Lewis, and Heiner Drenhaus. Processing Polarity: How the ungrammatical intrudes on the grammatical. Cognitive Science, 32(4):685-712, 2008.;no_research;R +https://github.com/vasishth/ReproducibleWorkflows;Materials for MPI Leipzig workshop: https://www.cbs.mpg.de/events/23219/1413783;no_research;TeX +https://github.com/vasishth/RetrievalModels;Website to accomany book Sentence Comprehension as a Cognitive Process ;no_research;Common Lisp +https://github.com/vasishth/rstyleguidepotsdam;Style guide for R coding, University of Potsdam;no_research;TeX +https://github.com/vasishth/SafaviEtAl2016;Data and code for Molood Sadat Safavi, Samar Husain, and Shravan Vasishth. Dependency resolution difficulty increases with distance in Persian separable complex predicates: Implications for expectation and memory-based accounts. Frontiers in Psychology, 7, 2016.;no_research;R +https://github.com/vasishth/sccp;Project page for Sentence Comprehension as a Cognitive Process: A Computational Approach, by Shravan Vasishth and Felix Engelmann (to appear sometime around 2020, Cambridge University Press). This book was funded by the Volkswagen Foundation.;no_research; +https://github.com/vasishth/smlp;Main website for the summer school Statistical Methods in Linguistics and Psychology;no_research;HTML +https://github.com/vasishth/SMLP2017;Summer School: Statistical Methods for Linguistics and Psychology, 2017, University of Potsdam, Germany;no_research;HTML +https://github.com/vasishth/SMLP2018;Statistical Methods for Linguistics and Psychology, University of Potsdam, Germany, 10-14 September 2018;no_research; +https://github.com/vasishth/smlp2019;Statistical Methods for Linguistics and Psychology, University of Potsdam, Germany;no_research; +https://github.com/vasishth/smlp2020;;no_research;HTML +https://github.com/vasishth/smlp2021;The Fifth Summer School in Statistical Methods for Linguistics and Psychology;no_research;HTML +https://github.com/vasishth/smlp2022;The website for SMLP 2022, 12-16 Sept 2022.;no_research;HTML +https://github.com/vasishth/smlp2023;Summer school 2023 (Sept 11-15 2022);no_research;HTML +https://github.com/vasishth/StanJAGSexamples;Example code using Stan and JAGS for psycholinguistic data;research;R +https://github.com/vasishth/Statistics-lecture-notes-Potsdam;Lecture notes from a statistics course I teach at Potsdam;no_research;TeX +https://github.com/vasishth/StatisticsNotes;Everything I learnt in graduate school in statistics.;no_research;CSS +https://github.com/vasishth/StatSigFilter;The Statistical Significance Filter;no_research;R +https://github.com/vasishth/SubsettingProblem;This repo contains the code relating to two blog posts at https://vasishth-statistics.blogspot.com/;no_research; +https://github.com/vasishth/testing;test;no_research; +https://github.com/vasishth/uncertainty;;research;R +https://github.com/vasishth/vasishth;Config files for my GitHub profile.;no_research; +https://github.com/vasishth/VasishthEtAl2013PLoSONE;Data and code for the paper Shravan Vasishth, Zhong Chen, Qiang Li, and Gueilan Guo. Processing Chinese Relative Clauses: Evidence for the Subject-Relative Advantage. PLoS ONE, 8(10):1-14, 10 2013.;no_research; +https://github.com/vasishth/VasishthLab;Psycholinguistic Data and Example Analyses from Vasishth Lab (Potsdam);no_research;R +https://github.com/vasishth/VasishthNicenboimPart1;This repository contains the code and data that accompany the paper: Statistical methods for linguistic research: Foundational Ideas - Part I, by Shravan Vasishth and Bruno Nicenboim. Language and Linguistics Compass 10/8 (2016): 349–369, doi: 10.1111/lnc3.12201.;research;R +https://github.com/vasishth/VasishthSuckowLewisKern2011;Data and code for Shravan Vasishth, Katja Suckow, Richard L. Lewis, and Sabine Kern. Short-term forgetting in sentence comprehension: Crosslinguistic evidence from head-final structures. Language and Cognitive Processes, 25:533-567, 2011.;no_research;HTML +https://github.com/vasishth/VNEBTiCS2019;code for the draft of the paper by Vasishth et al: Computational models of retrieval processes in sentence processing;research;R +https://github.com/vasishth/webpage;Home page of Shravan Vasishth;no_research; +https://github.com/verdeev/docs;;no_research; +https://github.com/vykimo/GPSD;GPSD project ;no_research; +https://github.com/vykimo/twitter_best_date;"""Best tweet post date prediction"" @ Individual interdisciplinary project 2017/2018, Supervisors: Tobias Scheffer & Paul Prasse, Submission Date: 02.03.2018 @ University of Potsdam, Germany";no_research;Python +https://github.com/wanko/clingo-dl-theory-example;;no_research;Python +https://github.com/wanko/dse;;no_research;Python +https://github.com/wanko/warehouse-management-generator;ASP-based instance generator for the Warehouse Management Problem;no_research;Python +https://github.com/warpaint97/AFKMouseMover;This python program will move your mouse automaticall when you are AFK during a game to avoid being kicked.;no_research;Python +https://github.com/warpaint97/AutoAim;This is an auto aim bot written in python that utilizes a YOLO model from openCV to detect people on your PC's screen and takes control of your mouse to click on that person's upper body.;no_research;Python +https://github.com/warpaint97/bachelorarbeit-aaron-bishop;Design und Durchführung einer systematischen Literaturrecherche zur Erlangung eines vereinheitlichten Verständnisses des Begriffs „Metaverse“;no_research;Python +https://github.com/warpaint97/Homepage;This is Aaron Bishop's Homepage;no_research;HTML +https://github.com/warpaint97/NeuroevolutionFlappyBird;A Neural Network that learns to play Flappy Bird through a genetic Algorithm;no_research;JavaScript +https://github.com/warpaint97/plan-merging-project;Project in Intelligent Logistics - University of Potsdam;research;Jupyter Notebook +https://github.com/warpaint97/Tetris;Just a simple Tetris replica made with p5.js;no_research;JavaScript +https://github.com/Wetterprophet/1-zickzack_algorithm;Repo for analogue algorithm project within course “Eingabe/Ausgabe — Fundamentals of process oriented design” FHP - University of Applied Sciences Potsdam;no_research;Python +https://github.com/Wetterprophet/2-raspi_slime;project within course “Eingabe/Ausgabe — Fundamentals of process oriented design” FHP - University of Applied Sciences Potsdam.;no_research;Arduino +https://github.com/Wetterprophet/3-time;project within course “Eingabe/Ausgabe — Fundamentals of process oriented design” FHP - University of Applied Sciences Potsdam.;no_research;Arduino +https://github.com/Wetterprophet/colorfinderundermousewithserial;first try without serial comm;no_research;Processing +https://github.com/Wetterprophet/DS2413-2in_ringbuffer_try;touch input from 2 QT1011 plus DS2413;no_research;C++ +https://github.com/Wetterprophet/eingabe_ausgabe_sose15;;no_research;Python +https://github.com/Wetterprophet/fingerspelling-gesture-glove;kNN for recognizing Fingerspelling Gestures from Sensor Glove -- Fork from https://gitlab.com/linev8k/in-hand-gesture-glove;no_research;Python +https://github.com/Wetterprophet/input-output-sose-data;temporary repo for the io seminar @ FHP;no_research; +https://github.com/Wetterprophet/interpart;installation for moabit;no_research;Python +https://github.com/Wetterprophet/Stepperclock;First Try to control a Clock with a stepper motor using the Schmalzhaus Driver;no_research; +https://github.com/Wetterprophet/stepperclock-analogin;control a wall clock with a stepper motor using the schmalzhaus driver;no_research;Arduino +https://github.com/whuiskamp/Paleo_SAM_proxies;Matlab scripts for work on Paleo-SAM recons using proxy data;no_research;MATLAB +https://github.com/whuiskamp/POEM_PALMOD;Scrips for preparing LGM simulations using POEM model;no_research;Python +https://github.com/whuiskamp/POEM_SLC;Tool for implementing dynamic sea level and land-sea mask changes in a coupled Earth System Model;no_research;Python +https://github.com/whuiskamp/SAM_pseudoproxy;Scripts for work on theoretical reconstruction skill of SAM using pseudoproxies;no_research;MATLAB +https://github.com/wschwanghart/DEMs;A lightweight repository for DEM examples for TopoToolbox;no_research; +https://github.com/wschwanghart/GEE-GIS03;Environmental spatial statistics course at the University of Potsdam;no_research; +https://github.com/wschwanghart/GIS-Geohazards-Georisks;MGEW28 course at the University of Potsdam;no_research;Matlab +https://github.com/wschwanghart/kriging;2D-interpolation using geostatistics;no_research;Matlab +https://github.com/wschwanghart/manning;Solve Mannings equation for discharge given an irregular cross section;no_research;Matlab +https://github.com/wschwanghart/ncquantreg;Non-crossing polynomial quantile regression;research;Matlab +https://github.com/wschwanghart/subplotlabel;Labels for subplots in a composite figure;no_research;MATLAB +https://github.com/wschwanghart/ttspatstat;Spatial statistics using TopoToolbox (upcoming);no_research; +https://github.com/wschwanghart/variogram;Experimental (Semi-) Variogram;no_research;Matlab +https://github.com/wschwanghart/variogramfit;fits different theoretical variograms to an experimental variogram;no_research;Matlab +https://github.com/wschwanghart/wofe;Weights of Evidence for Landslide Susceptibility Analysis;no_research;Matlab +https://github.com/xarxaxdev/autocomplete_suggestion;This is a project done in order to implement an autocomplete, often user in forms or search boxes;no_research;Scala +https://github.com/xarxaxdev/dfki;;no_research;Python +https://github.com/xarxaxdev/docker-dash-BI;Shows ;no_research;Python +https://github.com/xarxaxdev/FIB;FIB-UPC is where I studied my Bachelor's Degree in Computer Science, in Barcelona;no_research;Jupyter Notebook +https://github.com/xarxaxdev/furhat_exercises;Exercises done for the furhat sdk on Dialogue Modeling, uni potsdma;no_research; +https://github.com/xarxaxdev/gans_blanc;;research;Python +https://github.com/xarxaxdev/IDAML_spam_project;;no_research;Python +https://github.com/xarxaxdev/Similar_document_detector;This program allows you to detect copied documents;no_research;C++ +https://github.com/xarxaxdev/Technical_assesments;;no_research;Python +https://github.com/xarxaxdev/webClassifier;;no_research; +https://github.com/XiaoxiangGuanGFZ/FloodRiskSeminar;materials for the flood risk seminar (University of Potsdam);no_research;R +https://github.com/XiaoxiangGuanGFZ/GR4J;GR4J hydrological model;research;R +https://github.com/XiaoxiangGuanGFZ/HydroModel;rainfall runoff hydrological model (XAJ新安江水文模型);no_research;R +https://github.com/XiaoxiangGuanGFZ/kNN_MOF_cp;k-nearest resampling (kNN) and method-of-fragments (MOF) based rainfall temporal disaggregation model conditioned on circulation patterns (cp) (written in c);research;C +https://github.com/XiaoxiangGuanGFZ/KNN_MOF_CPs;weather variable temporal disaggregation model;research;Python +https://github.com/XiaoxiangGuanGFZ/MokshaChess;Moksha Chess indexing system (解脱棋索引系统);no_research;R +https://github.com/XiaoxiangGuanGFZ/PET_models;potential evapotranspiration models in hydrology;no_research;R +https://github.com/XiaoxiangGuanGFZ/RCCC-WBM;Water Balance hydrological model from RCCC;research;R +https://github.com/XiaoxiangGuanGFZ/xHM;cross-scale hydrological model;no_research;C +https://github.com/yadavhimanshu059/AcceptabilityStudy;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachReplicationDutch_List1;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachReplicationDutch_List2;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachReplicationDutch_List3;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachReplicationDutch_List4;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachReplicationGerman_List1;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachReplicationGerman_List2;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachReplicationGerman_List3;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachReplicationGerman_List4;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachRSVPDutch_List1;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachRSVPDutch_List2;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachRSVPDutch_List3;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachRSVPDutch_List4;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachRSVPGerman_List1;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachRSVPGerman_List2;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachRSVPGerman_List3;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachRSVPGerman_List4;;no_research;JavaScript +https://github.com/yadavhimanshu059/BachSPRDutch_Testing;;no_research;JavaScript +https://github.com/yadavhimanshu059/crossing_constraints_baselines;;research;Python +https://github.com/yadavhimanshu059/DLM-ICM-baselines;;no_research;Python +https://github.com/yadavhimanshu059/Hindi_DS_to_PS_Conversion;The algorithm can be run with input SSF format of Hindi-urdu Dependency Treebank. It will generate Phrase structure trees for the corresponding dependency trees. A have given a sample of dependency tree file that can be used as an input.;research;Python +https://github.com/yadavhimanshu059/Hindi_DS_to_PS_Conversion_v2.0;This version of conversion algorithm handles non-projective trees. In addition to generating phrase structure trees for projective dependencies, the current version also converts the non-projective dependencies. This version of the our algorithm successfully converts 98.2% of the dependency trees.;research;Python +https://github.com/yadavhimanshu059/LV05;R package for using Lewis and Vasishth (2005) model. Under testing.;research;R +https://github.com/yadavhimanshu059/measures_of_nonProjectivity;;no_research;Python +https://github.com/yadavhimanshu059/RatingStudyTesting;;no_research;JavaScript +https://github.com/YanaPalacheva/Advent-of-code;Solutions for Advent of Code 2020;no_research;Jupyter Notebook +https://github.com/YanaPalacheva/avoidance_study;"Question Avoidance Study: the final project for the ""Question Processing"" module at Uni Potsdam.";research;Jupyter Notebook +https://github.com/YanaPalacheva/experiments_neuralcoref;Neuralcoref adapted for Russian;research;Jupyter Notebook +https://github.com/YanaPalacheva/fd_code_challenge;;no_research;Python +https://github.com/YanaPalacheva/GoldMineProject;;no_research;Java +https://github.com/YanaPalacheva/lyrics-generation;Song lyrics generation based on RNN&Markov poetry generator.;research;Python +https://github.com/YanaPalacheva/Pacman;Implementation of Pacman: hand-made down to the last pixel.;no_research;C++ +https://github.com/YanaPalacheva/perturbation_study;This repo contains experiment configuration files for speech perturbation study.;no_research;Python +https://github.com/yanweiser/Beyond-Task-Success-But-Bert;;research;Jupyter Notebook +https://github.com/yanweiser/DL;;no_research;Python +https://github.com/yanweiser/DL-assignment1;first assignment of the deep learning in NLP course;no_research;Python +https://github.com/yanweiser/Minesweeper;Minesweeper pygame projekt;no_research;Python +https://github.com/yanweiser/ML-assignments;;no_research; +https://github.com/yanweiser/ML_final_project_WEISER;final project of the Course Machine Learning and Intelligent Data Analysis at the University of Potsdam lead by Prof. T. Scheffer;no_research;Jupyter Notebook +https://github.com/yerkesoul/Machine-learning-project-Income-prediction;Income prediction:whether a person earns less or more than 50.000;no_research;Jupyter Notebook +https://github.com/yerkesoul/NLP-assignmetns;Natural language processing course assignments;no_research;Jupyter Notebook +https://github.com/yerkesoul/Sentiment-Analysis-on-Twitter-data;100 tweets, which contain the word Kazakhstan,are taken with the help of tweepy library and consequently sentiment analysis is done. This is the unsupervised analysis due to lack of data, the result is poor. ;no_research;Jupyter Notebook +https://github.com/yerkesoul/Subjectivity-Classification;"Replication and extention of Alhindi et al. (2020) for course ""Mining opinions and arguments"".";no_research;Jupyter Notebook +https://github.com/yuxizhang11/publications;Some of the publications made during the studies at the Hochschule für Wirtschaft und Recht Berlin;no_research; +https://github.com/zentrum-lexikographie/corpus-schema;TEI-P5 Schema for Annotated Text Corpora @ ZDL;no_research;Python +https://github.com/zentrum-lexikographie/dwds-addon;Browser extension adding shortcuts to DWDS queries;no_research;JavaScript +https://github.com/zentrum-lexikographie/dwdsmor;SFST/SMOR/DWDS-based German Morphology;research;XSLT +https://github.com/zentrum-lexikographie/e-Lexicography-2019;Course materials for the compact course in digital lexicography held at the University of Potsdam;no_research;Jupyter Notebook +https://github.com/zentrum-lexikographie/e-lexicography-2020-WiSe;Wintersemester 2020;no_research;Python +https://github.com/zentrum-lexikographie/e-lexicography-2021-WiSe;Wintersemester 2020/21;no_research; +https://github.com/zentrum-lexikographie/elexicography-WiSe2023;Course materials for the compact course in digital lexicography held at the University of Potsdam;no_research;Jupyter Notebook +https://github.com/zentrum-lexikographie/eval-de-lemma;;research;Jupyter Notebook +https://github.com/zentrum-lexikographie/ttml2tei;Convert ttml to tei xml format;no_research;Python +https://github.com/zentrum-lexikographie/wikimedia;Data Exchange Routines between the ZDL and Wikimedia Projects;no_research;Clojure +;;research; +https://github.com/andrewdolman/dwdr;Climate data from the Deutscher Wetterdienst (German weather service);no_research;R +https://github.com/andrewdolman/ecostattoolkit;An R package to implement and test the ECOSTAT toolkit for estimating nutrient boundaries;no_research;R +https://github.com/andrewdolman/luftr;Analyse luftinfo sensor data;no_research;R +https://github.com/andrewdolman/Maehrlein_et_al_length_mass_data;;research;R +https://github.com/andrewdolman/nlar;Data from the National Lakes Assessment as an R package;no_research;R +https://github.com/andrewdolman/phytotraitr;An R data package for phytoplankton traits;research;R +https://github.com/EarthSystemDiagnostics/climproxyrecords;R data package containing the Marcott and Shakun proxy record compilations, GISP2, and other data.;no_research;R +https://github.com/EarthSystemDiagnostics/corit;An R package to calculate time scale dependent correlations.;no_research;R +https://github.com/EarthSystemDiagnostics/cpt-picarr;;no_research;R +https://github.com/EarthSystemDiagnostics/Dolman14C_2021;Code to reproduce the analyses in Dolman et al. (2021) Estimating bioturbation from replicated small-sample radiocarbon ages;no_research; +https://github.com/EarthSystemDiagnostics/ecustools;An R package of miscellaneous functions for the ECUS/SPACE group.;no_research;R +https://github.com/EarthSystemDiagnostics/esdpublic;Metapackage to ease installation of all public ESD R packages and their dependencies.;no_research;Dockerfile +https://github.com/EarthSystemDiagnostics/exNGT;A bundle of R scripts to analyse extended North Greenland Traverse firn core data;no_research;R +https://github.com/EarthSystemDiagnostics/geostools;An R package of tools to assist with handling geoscientific problems;no_research;R +https://github.com/EarthSystemDiagnostics/grfxtools;An R package of tools to assist with various plotting tasks;no_research;R +https://github.com/EarthSystemDiagnostics/hamstr;An rstan implementation of Bacon-like age-depth modelling but with hierarchically structured multi-resolution depth scales.;research;R +https://github.com/EarthSystemDiagnostics/hamstrbacon;Interface between rbacon and hamstr;research;R +https://github.com/EarthSystemDiagnostics/Hathorne-Dolman-Laepple-2023;Code to reproduce figures 2 and 3 in Hathorne et al. (2023);no_research;R +https://github.com/EarthSystemDiagnostics/HolSNR;;no_research;R +https://github.com/EarthSystemDiagnostics/laepple22-commentbova;Code for Laepple et al., 2022, Nature Communications Arising ;no_research;R +https://github.com/EarthSystemDiagnostics/MonsoonMinimalModel;"Minimal model for monsoon precipitation for manuscript ""Position and orientation of the westerly jet determined Holocene rainfall patterns in China, Nature Communications, 2019""";no_research;R +https://github.com/EarthSystemDiagnostics/ncdftools;An R package of tools to handle NetCDF files ;no_research;R +https://github.com/EarthSystemDiagnostics/optimalcores;An R software project to analyse optimal ice core locations.;research;R +https://github.com/EarthSystemDiagnostics/orbitalforcing;R package for calculating orbital forcing of the climate. (data package);no_research;R +https://github.com/EarthSystemDiagnostics/paleospec;PaleoSpec is an R package to assist the analysis of variance and power spectra;no_research;R +https://github.com/EarthSystemDiagnostics/pfields;An R package to analyse gridded field data.;no_research;R +https://github.com/EarthSystemDiagnostics/piccr;A bundle of R functions to correct and calibrate raw Picarro cavity ring down spectroscopy stable isotope data.;no_research;R +https://github.com/EarthSystemDiagnostics/proxysnr;An R package to separate the common signal from local noise in climate proxy records using spectral analyses.;research;R +https://github.com/EarthSystemDiagnostics/prxytools;An R package of tools to assist with proxy analyses;no_research;R +https://github.com/EarthSystemDiagnostics/psem;Proxy Spectral Error Model;research;R +https://github.com/EarthSystemDiagnostics/sedproxy;An R package for modelling sediment archived climate proxy records.;research;R +https://github.com/EarthSystemDiagnostics/shinysedproxy;shiny app for sedproxy;no_research;R +https://github.com/EarthSystemDiagnostics/simproxyage;An R package to simulate age uncertainty in layer-counted climate proxy records.;research;R +https://github.com/EarthSystemDiagnostics/simulate-picarro;simple simulation of Picarro measurement process;no_research;R +https://github.com/EarthSystemDiagnostics/stattools;An R package of tools for statistical analyses;no_research;R +https://github.com/EarthSystemDiagnostics/topoExtract;extract interpolated values from raster along ice-flow trajectories;no_research;R +https://github.com/EarthSystemDiagnostics/TrenchR;An R package to analyse and plot trench-like proxy records;research;HTML +https://github.com/GPawi/CarbStock21k;;research;Jupyter Notebook +https://github.com/GPawi/Interview_Task_Oxford;Task for the post of 154468 - Researcher;no_research;Python +https://github.com/GPawi/LANDO;LANDO: Linked age-depth modeling;research;Python +https://github.com/GPawi/LANDOnline;Repository for LANDO on binder / docker;research;MATLAB +https://github.com/GPawi/MAYHEM;"This repository contains scripts, figures and listings of data sources for the publication by Pfalz et al. - ""Harmonizing heterogeneous multi-proxy data from lake systems"". (submitted to Computers & Geosciences in 2020)";research;Jupyter Notebook +https://github.com/mhoerhol/LinkToRstudio;This is a test to identify the link to Rstudio;no_research; +https://github.com/slisovski/23-143-D-INSPIRES-B;;research; +https://github.com/slisovski/ArcticSeasonalChange;Quantifying the response of Landscape Seasonality and its Predictability across Arctic gradients in the context of Climate Change.;no_research;HTML +https://github.com/slisovski/Bauer_et_al.-2018-JApplEcol;Supplemental code: Bauer et al. 2018 Journal of Applied Ecology;research;C++ +https://github.com/slisovski/BTGodwit_Alaska_SnowNDVI;Seasonal characteristics and trends of snow melt data and vegetation greenup within the bar-tailed godwit (Limosa lapponica) breeding range in Alaska, US.;research; +https://github.com/slisovski/btg_snowAK;Analysis of snowmelt timing across years within the bar-tailed godwit breeding range in Alaska;no_research;HTML +https://github.com/slisovski/COTEtracks;;no_research; +https://github.com/slisovski/CurlewSands_RedNStints;https://slisovski.github.io/CurlewSands_RedNStints/;no_research;CSS +https://github.com/slisovski/ESA_PVIR_d4.1;;no_research; +https://github.com/slisovski/FourSeasons;R package to calcualte major seasonal components;no_research;R +https://github.com/slisovski/GeoLight;R Package: Light-level geolocation analysis tool;no_research;R +https://github.com/slisovski/GeoLocTools;Tools for ligth level geolocation;no_research;R +https://github.com/slisovski/GeoX_autumnSchool2020;GeoX Young Academy Autumn School 2020 - Website;no_research;HTML +https://github.com/slisovski/IndoEuropeanFlyway_Rosefinch;Code and supplementary description: https://slisovski.github.io/IndoEuropeanFlyway_Rosefinch/;no_research;HTML +https://github.com/slisovski/Inspires;;research; +https://github.com/slisovski/invMovement;R package to identify and extract movement information from solar geolocation data.;research;R +https://github.com/slisovski/ISBA;;no_research; +https://github.com/slisovski/LenaDeltaPhenology;;no_research;HTML +https://github.com/slisovski/Lisovski-et-al.-2016-AmNat;Supplememtary Materials;research; +https://github.com/slisovski/Lisovski-et-al.-2017-ICB;;no_research;R +https://github.com/slisovski/Lisovski-et-al.-2017-Oikos;;research;R +https://github.com/slisovski/Lisovski-et-al.-2018-CurrBiol;Workflow of analyses done for Lisovski et al. 2018 Current Biology;no_research;R +https://github.com/slisovski/Lisovski-et-al.-2018-JApplEcol;"Code for publication ""The differential role of migrants and residents in local avian influenza infection dynamics""";no_research;C +https://github.com/slisovski/migrationSDP;migrationSDP;no_research;C++ +https://github.com/slisovski/MovSim;Movement visualisation of bar-tailed godwit migration along the East Asian-Australasian Flyway;no_research;R +https://github.com/slisovski/Optimal-migration-along-the-Indo-European-Flyway;Simulation code for: The Indo-European Flyway: Opportunities and constraints reflected by Common Rosefinches breeding across Europe. Lisovski et al. 2021 Journal of Biogeography;research;R +https://github.com/slisovski/PolarGeolocation;Geolocation in high latitudes with 24 hours daylight;no_research;HTML +https://github.com/slisovski/Sander_et_al_Analyses;Supplemental code for Sander et al. 2021;no_research; +https://github.com/slisovski/Schmaljohann-et-al.2017-FrontZool;Supplementary Material;no_research; +https://github.com/slisovski/sdpMig;Modeling Optimal Migration;no_research;HTML +https://github.com/slisovski/seasonalChange;;no_research;R +https://github.com/slisovski/Seasonality;"R code for project ""Shifting Seasons in a Changing World""";no_research;R +https://github.com/slisovski/SGAT_calibration_movement;Code and description of methods that can be applied to calibrate light-level geolocation data and perform movement analysis;research;R +https://github.com/slisovski/SiberianWindSOMs;Self Organising Maps to investigate Siberian wildfire charcoal dispersal;no_research;R +https://github.com/slisovski/slisovski.rbind.io;Research website;no_research;SCSS +https://github.com/slisovski/soiRSDA;Packaga to access NDVI data on soi server;no_research;HTML +https://github.com/slisovski/TheGeolocationManual;The nuts and bolts of light-level geolocator analyses:;no_research;Glyph +https://github.com/slisovski/TwGeos;R Package: Basic data processing for light-level geolocation archival tags;no_research;R +https://github.com/slisovski/van-Gils-et-al.-2016-Science;Appendix: van Gils et al. 2016 Science;research;R +https://github.com/slisovski/VWSGapp;;no_research;R +https://github.com/slisovski/VWSGReport;;no_research; +https://github.com/slisovski/Yamaura-et-al.-2016-JAB;R scripts for analysis of Stonechat migration;no_research;R +https://github.com/thomas-muench/ms-optimalcores;LaTeX source files for the paper of determining an optimal spatial sampling configuration for Antarctic ice cores based on ECHAM5-MPIOM-wiso past1000 isotope data.;no_research;TeX +https://github.com/tlaepple/paleolibrary;;no_research;R +https://github.com/tomfreeze/Cryo;;no_research; +https://github.com/tomfreeze/CryoGrid3-xice_mpi;;no_research; +https://github.com/tomfreeze/Cryogrid3_Flake_Git;Cryogrid3 with Flake;no_research; +https://github.com/tomfreeze/Cryogrid_Git;;no_research;Matlab +https://github.com/tomfreeze/Cryogrid_Gitnew2;;no_research; +https://github.com/twollnik/ti1;;no_research; +https://github.com/twollnik/YETI;A bottom-up traffic emission calculation tool developed at the Institute for Advanced Sustainability Studies in Potsdam and built in Python.;research;Python +https://github.com/0xMilly/ctf;Various detailed CTF write-ups I wrote over the time.;no_research;Python +https://github.com/1st1/async_pep;A new PEP to add async/await;no_research;Python +https://github.com/1st1/dotfiles;;no_research;Python +https://github.com/1st1/edgedb-python;EdgeDB Python Driver;no_research; +https://github.com/1st1/edgedb-quick-demo;;no_research;JavaScript +https://github.com/1st1/greenio;Greenlets for asyncio;no_research;Python +https://github.com/1st1/httptools;;no_research;Python +https://github.com/1st1/pgbase;;no_research;Python +https://github.com/2start/0ps-microservice-dev-setup;This repository showcases a docker swarm development and deployment setup for microservices with minimal operational overhead. ;no_research;Python +https://github.com/2start/anno20;;no_research;JavaScript +https://github.com/2start/bayesian-abtesting;Experiments and excersise solutions to the Udemy course Bayesian Machine Learning in Python: A/B Testing;no_research; +https://github.com/2start/data-prep-warmup;;no_research;Jupyter Notebook +https://github.com/2start/ddm-akka-handson;Contains the solutions to akka excersises in the module distributed datamanagement at the HPI.;no_research;Scala +https://github.com/2start/docker-compose-ansible;Docker Compose with Ansible Image;no_research;Dockerfile +https://github.com/2start/hasura-helm-chart;Kubernetes Helm chart to deploy Hasura and initialize the metadata and migrations from a git repository.;no_research;Mustache +https://github.com/2start/hasura-metadata-reloader;A lightweight tool that reloads hasura metadata. If inconsistencies are found they can be reported to sentry.;no_research;Go +https://github.com/2start/imdb-rating-predictor;The imdb database is used to train a model that predicts the average rating of movies.;no_research;Jupyter Notebook +https://github.com/2start/ml4pm;Machine Learning for Precision Medicine Course Excersises;no_research;Jupyter Notebook +https://github.com/2start/python-datastructures;Implementations of common datastructures in Python. ;no_research;Python +https://github.com/2start/scala-datastructures;;no_research;Scala +https://github.com/2start/telegram-reminder-bot;A simple reminder bot for the telegram messenger using Python3 + AWS EC2 + DynamoDB.;no_research;Python +https://github.com/2start/TreeBasedLearning;;no_research;Scala +https://github.com/2start/weatherToneForecasting;ScaDS Hackathon 2018;no_research;Scala +https://github.com/Aaronzinhoo/cicd_demo;Demo to test circleci + docker + nginx CI/CD pipeline;no_research;JavaScript +https://github.com/Aaronzinhoo/Classification;Least Squares Classification vs K-Nearest Neighbors;no_research;Matlab +https://github.com/Aaronzinhoo/Collaborative-Filtering;Using Collaborative Filtering to create a Recommendation System based on explicit feedback;no_research;Python +https://github.com/Aaronzinhoo/color_cube;Color classification using a clustering method that groups colors into buckets;no_research;Python +https://github.com/Aaronzinhoo/Command-Line-Smaple;Using command line to make git repository;no_research;Python +https://github.com/Aaronzinhoo/company-org-block;A duplication of company-org-block from xenodium;no_research;Emacs Lisp +https://github.com/Aaronzinhoo/cut-and-paste-augmentation;"Simple way to ""cut and paste"" objects onto different backgrounds to create synthetic images";no_research;Python +https://github.com/Aaronzinhoo/DeepFashion2_with_MobileNetv2;Clothing Identification on Deep Fashion Dataset using Mobile Net v2.0;no_research;Python +https://github.com/Aaronzinhoo/dotfiles;My dotfiles;no_research;Emacs Lisp +https://github.com/Aaronzinhoo/dynamic-component;Exploring ways to dynamically load components in Angular;no_research;TypeScript +https://github.com/Aaronzinhoo/fun-components-lib;A components library to be used with fun-lib repo;no_research;TypeScript +https://github.com/Aaronzinhoo/fun-lib;Test lib of interfaces for dynamic-component repo;no_research;TypeScript +https://github.com/Aaronzinhoo/hello-world;My first repository;no_research; +https://github.com/Aaronzinhoo/ICF_Paper;ICF paper exploring the benefits of collaborative filtering using an implicit matrix transformation to speed up training without losing accuracy;no_research; +https://github.com/Aaronzinhoo/K-Means;An implementation of K-Means based on L-2 metric.;no_research;Python +https://github.com/Aaronzinhoo/K-Means-Clustering;Using K-Means Clustering to segment an image of Royce Hall ;no_research;Matlab +https://github.com/Aaronzinhoo/lsp-min-project;;no_research;HTML +https://github.com/Aaronzinhoo/microfrontend-example;A microfrontend example utilizing Angular and Module Federation;no_research;TypeScript +https://github.com/Aaronzinhoo/My-Emacs-Config;My configuration for emacs25;no_research;C +https://github.com/Aaronzinhoo/Neural-Network-Classification;An attempt to implement a Neural Network and test it on the Caltech101_silhouettes dataset;no_research;Python +https://github.com/Aaronzinhoo/Nonlinear-regression-using-Gaussian-processes;Using Gaussian Processes to perform Nonlinear Regression;no_research;Matlab +https://github.com/Aaronzinhoo/PCA-demo;Using PCA to reduce size of data needed to process;no_research;Python +https://github.com/Aaronzinhoo/PCA-vs-LS;An applied comparison of PCA vs least squares approach on hyperspectral image material segregation ;no_research;Matlab +https://github.com/Aaronzinhoo/PCA_Theory;A theoretical perspective to PCA and how to manually apply it to images.;no_research;Matlab +https://github.com/Aaronzinhoo/product-scraper;Simple program interface to create and manage scrapers for websites that rank products;no_research;Python +https://github.com/Aaronzinhoo/simple-segmentation;A simple program to segment foreground items from the background;no_research;Python +https://github.com/Aaronzinhoo/SingleShotDetector-TF;Single Shot Detector created in Tensorflow;research;Python +https://github.com/Aaronzinhoo/Spectral-Clustering-demo;Utilizing Spectral Clustering on generated graphs;no_research;Python +https://github.com/abstraktor/capybara-bootstrap;;no_research;Ruby +https://github.com/abstraktor/coj;context oriented j programming;no_research;HTML +https://github.com/abstraktor/FamTen;Zugeschlagen! Die Backbone-App für DEIN Familien-Tennis-Turnier!;no_research;JavaScript +https://github.com/abstraktor/gitintro;just do demonstrate git with github;no_research; +https://github.com/abstraktor/git_notifier;a tiny git notification server written in sinatra;no_research;Ruby +https://github.com/abstraktor/iamhere;;no_research;JavaScript +https://github.com/abstraktor/MPS_MROTest;A project that tests the method resolution order in MPS;no_research; +https://github.com/abstraktor/multileveldebugging-QoppaS;qoppa in squeak;research;HTML +https://github.com/abstraktor/nano.web;hacky qt code for simulating a particular ipod nano application on symbian;no_research;C++ +https://github.com/abstraktor/racket-port_scanner;scan for open ports with tcp-connect or syn-scan;no_research;JavaScript +https://github.com/abstraktor/Redmine-Wiki-Documentator;Mark wiki pages as user documentation and allow explicit access to users that are not allowed to view the wiki.;no_research;Ruby +https://github.com/abstraktor/require.js;this script adds the require function to the global scope to require libraries once ;no_research;JavaScript +https://github.com/abstraktor/StorageInstance.js;just another html5 sessionStorage abstraction that enables you to act with different Storages;no_research;JavaScript +https://github.com/abstraktor/tokenizes;GemPlugin for using jquery.tokeninput.js in rails;no_research;Ruby +https://github.com/adamscybot/adam-thomas.co.uk;My personal profile built using Remix, deployed on Netlify and integrated with Stack Overflow API;no_research; +https://github.com/adamscybot/gh-actions-test-status-extension;A Chrome extension that gives a live view of the state of your tests on a GitHub action job by parsing TeamCity log lines from the log output. No phone home, all local.;no_research; +https://github.com/adamscybot/hyper-alt-click;DEPRECATED: An experimental (hacky) plugin to allow moving the cursor by alt+click'ing in hyper -- much like iTerm and Terminal.app;no_research;JavaScript +https://github.com/adamscybot/open-ci-signals-log-specification;🔎 An early stage specification for a structured logging format that could be used to improve observability of CI build runs, agnostic to the CI system.;no_research; +https://github.com/adamscybot/projectorjs;A small no-dependencies JavaScript library that enables the display of overlays on native HTML5 video elements, or (optionally) video elements powered by videojs. ;no_research;JavaScript +https://github.com/adamscybot/webpack-serve-issue-232;;no_research;JavaScript +https://github.com/adi64/maerklinspass;Arduino-based Märklin controller (Motorola protocol);no_research;C++ +https://github.com/adi64/terminus;Game Programming Seminar 2014/15;no_research;C++ +https://github.com/adi64/what-the-FAT;Decoder for the FAT (File Allocation Table) formats FAT12 and FAT16;no_research;C +https://github.com/Adrian-St/beewars;;no_research;JavaScript +https://github.com/Adrian-St/PuppetFiles;;no_research;Puppet +https://github.com/Adrian-St/Test;For Testing;no_research; +https://github.com/Adrian-St/whiteboard-detection;Used to detect Text and Post-its in a Whiteboard Image. Text can also be recognized.;no_research;C++ +https://github.com/Adrian-St/whiteboard-text-recognition;Everything related to the image segmentation part of my thesis. For the text detection see: https://github.com/Adrian-St/whiteboard-detection;no_research;Python +https://github.com/adtac/borg-docker-volume;A script to backup a Docker volume's contents using Borg;no_research;Shell +https://github.com/adtac/cherry-pick-bot;Automatically cherry-pick commits from PRs and merge them;no_research;Go +https://github.com/adtac/climate;The swiss-army knife of utility tools for Linux.;no_research;Shell +https://github.com/adtac/commento;A fast, bloat-free comments platform (Github mirror);no_research;Go +https://github.com/adtac/exterminate;Break Python programs with a single import;no_research;Python +https://github.com/adtac/fssb;A filesystem sandbox for Linux using syscall intercepts.;no_research;C +https://github.com/adtac/go-akismet;Go library for accessing the Akismet API;no_research;Go +https://github.com/adtac/go-lcns;A license key generation and verification library for Go;no_research;Go +https://github.com/adtac/gollum-alpine;An alpine-based Docker image for Gollum, a simple wiki;no_research; +https://github.com/adtac/hollow-heap;Hollow Heaps;no_research;C++ +https://github.com/adtac/lexicon-loop;Identify cycles in the English dictionary. Written in C because nobody does that anymore.;no_research;C +https://github.com/adtac/linc;A boring interpreted programming language that I built in high school.;no_research;C++ +https://github.com/adtac/lost-in-translation;Like Chinese whispers, but with different languages and on your browser. So not like Chinese whispers.;no_research;JavaScript +https://github.com/adtac/nutshell;A command shell with a low memory footprint because it doesn't do much.;no_research;C +https://github.com/adtac/openmp-graph;Graph algorithms implemented in OpenMP;no_research;C +https://github.com/adtac/relevant-xkcd;There's always a relevant XKCD.;no_research;Go +https://github.com/adtac/shell-fn-cache;Like Python's lru_cache, but for shell functions;no_research;Shell +https://github.com/adtac/termtype;Simulate keypresses to record asciinemas.;no_research;Python +https://github.com/adtac/testlr;;no_research;Rust +https://github.com/adtac/weepushover;Push notifications from WeeChat to Pushover;no_research;Python +https://github.com/adtac/wikiphilosophy;Every EN Wikipedia article eventually leads to Philosophy, I'm told.;no_research;Python +https://github.com/adulau/A-great-and-wonderful-team;What makes great and wonderful teams?;no_research; +https://github.com/adulau/abstract-key-server;Abstract key server (aks) is a minimal PGP key server to support communities;no_research;Python +https://github.com/adulau/active-scanning;Network scanning using BGP announces;no_research;Python +https://github.com/adulau/active-scanning-techniques;A compilation of network scanning strategies to find vulnerable devices;no_research; +https://github.com/adulau/adulau;;no_research; +https://github.com/adulau/aha;AHA - Adaptive Honeypot Alternative (historical repository);no_research;C +https://github.com/adulau/art;website - foo.be/art;no_research;SCSS +https://github.com/adulau/artificial-or-natural-text;Artificial Or Natural Text (AONT) is an experiment to provide a score to detect if a text is artificial or natural;no_research;Python +https://github.com/adulau/bgpranking-API;Simple whois-like services for BGP Ranking;no_research;Perl +https://github.com/adulau/binary-indexer;A serie of tools to index binaries;no_research;Python +https://github.com/adulau/crl-monitor;CRL Monitor - X.509 Certificate Revocation List monitoring and X.509/Subject caching;no_research;Python +https://github.com/adulau/dc11331;Repository of DEF CON group DC11331 of Paris. List of talks and links to slides, or hosted slides. Thanks to our guests! Website: dc11331.com;no_research; +https://github.com/adulau/dcfldd;dcfldd - enhanced version of dd for forensics and security;no_research;C +https://github.com/adulau/dcu-tools;dcu-tools are tools used for fetching and analyzing (private) Microsoft Digital Crimes Unit feeds;no_research;Python +https://github.com/adulau/DIY-face-masks;a selection of easy reusable face masks to make;no_research;Shell +https://github.com/adulau/dnscap;Patched version of dnscap (network capture utility designed specifically for DNS traffic) ;no_research;C +https://github.com/adulau/DomainClassifier;DomainClassifier is a Python (2/3) library to extract and classify Internet domains/hostnames/IP addresses from raw unstructured text files following their DNS existence, localization or attributes.;no_research;Python +https://github.com/adulau/dotfiles;Minimal dotfiles and scripts used on my various GNU/Linux hosts;no_research;Shell +https://github.com/adulau/FASCIA;FASCIA is an open source software to collect, aggregate and store IMSI and related information including MCC, MNC, LAC and CellID (or other meta-information);no_research; +https://github.com/adulau/foo.be;foo.be website - jekyll ;no_research;SCSS +https://github.com/adulau/Forban;"Forban is a p2p application for link-local and local area networks. Forban works independently from the Internet and uses only the local area capabilities to announce, discover, search or share files. Forban relies on HTTP and it is ""opportunistic"".";no_research;Python +https://github.com/adulau/foss-tools;;no_research;TeX +https://github.com/adulau/gitlog2timesheet;generate timesheet from git logs;no_research;Python +https://github.com/adulau/hack-lu-2016;hack.lu 2016 website;no_research;JavaScript +https://github.com/adulau/hack-lu-2017;2017.hack.lu website;no_research;JavaScript +https://github.com/adulau/hack-lu-2018;2018.hack.lu;no_research;HTML +https://github.com/adulau/hack-lu-2019;;no_research;HTML +https://github.com/adulau/hack-lu-2020;;no_research;HTML +https://github.com/adulau/hack-lu-2023;;no_research;HTML +https://github.com/adulau/hack-lu-website;hack.lu 2015 website;no_research;JavaScript +https://github.com/adulau/hashlookup-server;Fast lookup server for NSRL and other hash database used in digital forensic;no_research;Python +https://github.com/adulau/HHHash;HTTP Headers Hashing (HHHash) is a technique used to create a fingerprint of an HTTP server based on the headers it returns. ;no_research;Python +https://github.com/adulau/hotp-js;A simple Javascript HOTP implementation (HMAC-Based One-Time Password Algorithm) as described in RFC 4226. The library relies on crypto-js (http://code.google.com/p/crypto-js/) for the javascript HMAC-SHA1 implementation. ;no_research;JavaScript +https://github.com/adulau/ip-asn-lookup-server;ip-asn-lookup-server is a whois server which give historical view on the association between IP addresses and ASN number (relying on IP-ASN-history server) ;no_research;Python +https://github.com/adulau/is2ri-website;IS2RI website;no_research;CSS +https://github.com/adulau/lesoir2text;The following script fetches the most read article from lesoir.be (from their official sitemap) and make an ascii text file of all the articles with the junk removed.;no_research;Python +https://github.com/adulau/Library-Genesis;Library Genesis (code base from https://www.assembla.com/code/libgen/subversion/nodes) + tarball update from official website - this is just a free software to manage a bookshelf. This code can be used for any structured private or public bookshelf. I'm not the author or maintainer. This is kept for archival purpose.;no_research;HTML +https://github.com/adulau/logs-ranking;logs-ranking is a simple Perl script to add BGP Ranking to log files to ease the discovery of suspicious activities ;no_research;Perl +https://github.com/adulau/malware-encyclopedias;malware-encyclopedias is a set of tools to gather malware names and descriptions;no_research;Python +https://github.com/adulau/MalwareClassifier;Malware Classifier From Network Captures;no_research;Python +https://github.com/adulau/minimal-webindexer;minimal-webindexer is a simple Python web indexer;no_research;Python +https://github.com/adulau/misp-contributors;Extract MISP contributors and contributions statistics from GitHub;no_research;Python +https://github.com/adulau/misp-osint-collection;Collection of best practices to add OSINT into MISP and/or MISP communities;no_research;HTML +https://github.com/adulau/misp-search;Search MISP Malware Information Sharing Platform instances from the command line;no_research;Python +https://github.com/adulau/mmdb-server;mmdb-server is an open source fast API server to lookup IP addresses for their geographic location. ;no_research;Python +https://github.com/adulau/mosvm;Historical repository of mosvm;no_research;C +https://github.com/adulau/multi-rblcheck;Quick-and-dirty(tm) Python script to check a set of IPv4 addresses against known RBLs;no_research;Python +https://github.com/adulau/napkin-text-analysis;Napkin is a simple tool to produce statistical analysis of a text;no_research;Python +https://github.com/adupuis2/AllisonsHangman;;no_research;TypeScript +https://github.com/adupuis2/devtips-react-tutorial;This is where I will be storing my progress for going through the devtips React tutorial series at https://www.youtube.com/playlist?list=PLqGj3iMvMa4LFqyGab_aR7M0zfQm2KTuX;no_research;JavaScript +https://github.com/adupuis2/INFO3103-Frontend;;no_research;Vue +https://github.com/adupuis2/ISLR;Space where I'll be working through Introduction to Statistical Learning with Applications in R (ISLR);no_research;Jupyter Notebook +https://github.com/adupuis2/reactjs-official-tutorial;This is where I will be storing my progress for going through the officla React.js tutorial at https://reactjs.org/tutorial/tutorial.html;no_research;JavaScript +https://github.com/AkshayGudi/AndroidMaterials;;no_research; +https://github.com/AkshayGudi/apple_disease_detect_cutout;;no_research;Jupyter Notebook +https://github.com/AkshayGudi/APPS;;no_research;Java +https://github.com/AkshayGudi/BlockChainMaterial;BlockChainMaterial;no_research; +https://github.com/AkshayGudi/ddm_pj1;Akka Programming Implementation - home work 1;no_research;Java +https://github.com/AkshayGudi/DropWizard_POC_Movie_App;A drop wizard Microservice POC application;no_research;Java +https://github.com/AkshayGudi/GremlinPOC;GremlinPOC;no_research;Java +https://github.com/AkshayGudi/Kubernetes_example;Kubernetes example YAML files for reference;no_research;Python +https://github.com/AkshayGudi/Machine_Learning_Dairy;POCs related to Machine Learning;no_research;Jupyter Notebook +https://github.com/AkshayGudi/RestWebServiceApp;;no_research;Shell +https://github.com/AkshayGudi/Tableau_To_Java_Integration;;no_research; +https://github.com/AkshayGudi/TestForSsh;;no_research; +https://github.com/aksub99/bert-sentiment;Application of `BERT` to extract the portions of a tweet that represent a particular sentiment.;no_research;Jupyter Notebook +https://github.com/aksub99/CCDSAP;Solutions to CCDSAP Codechef;no_research;C++ +https://github.com/aksub99/CNN-Dog-vs-Cats;A dog vs cat image classifier using CNNs with keras;no_research;Python +https://github.com/aksub99/DL-papers;Papers I am currently reading/implementing or have read/implemented.;no_research; +https://github.com/aksub99/DSG-Assignments;Solutions to Assignments provided by DSG.;no_research;Jupyter Notebook +https://github.com/aksub99/FissionNet;;no_research;Jupyter Notebook +https://github.com/aksub99/hse-intro-to-dl;Code for Intro to Deep Learning course by hse;no_research;Jupyter Notebook +https://github.com/aksub99/ImageSoup;;no_research;Python +https://github.com/aksub99/Imitation-Learning;Teaching MuJoCo humanoid to walk using imitation learning and DAgger;no_research;Python +https://github.com/aksub99/Logistic-Regression;Implementation of Logistic Regression from scratch in Python;no_research;Python +https://github.com/aksub99/ML-for-Science;List of papers applying Machine Learning to scientific problems that were discussed in our weekly discussion sessions. Our primary focus is on materials science, molecular optimization and drug discovery.;no_research; +https://github.com/aksub99/MolDQN-pytorch;"A PyTorch Implementation of ""Optimization of Molecules via Deep Reinforcement Learning"".";no_research;Python +https://github.com/aksub99/molecular-vae;"Pytorch implementation of the paper ""Automatic Chemical Design Using a Data-Driven Continuous Representation of Molecules""";research;Jupyter Notebook +https://github.com/aksub99/Student-Assistant;A chatbot built using DialogFlow to schedule and answer questions on day to day jobs ;no_research;JavaScript +https://github.com/aksub99/synthetic-gen;;no_research;Python +https://github.com/aksub99/twitter-mentions;Fetches tweets that mention papers;no_research;Python +https://github.com/aksub99/U-Net-Pytorch;Pytorch implementation of U-Net;research;Python +https://github.com/aksub99/whale-identification;Pytorch solution to kaggle humpback whale identification competition ;no_research;Jupyter Notebook +https://github.com/akuchling/50-examples;"Contains the text of a book describing interesting examples of Python programming for use in teaching. An alternate title was ""The Python Teaching Cookbook"". ";no_research;JavaScript +https://github.com/akuchling/all-sky;HTML5 app to combine superimposed images. It's designed for astronomical images taken in different wavelengths of light.;no_research;JavaScript +https://github.com/akuchling/bigfinish-download;Script to synchronize all of your purchases from bigfinish.com with a local directory of audio files. This is done efficiently without redundant downloading, to save your network bandwidth and Big Finish's servers.;no_research;Python +https://github.com/akuchling/book-diary-tools;Scripts for managing a collection of book reviews.;no_research;Python +https://github.com/akuchling/bug-charts;Project to scrape bugs.python.org and present a useful set of charts about the data.;no_research;JavaScript +https://github.com/akuchling/exploring-haskell;Collects code examples and notes from my attempt to learn Haskell.;no_research;Haskell +https://github.com/akuchling/go-demo;Scratchpad repository for small programs I'm writing while learning go.;no_research;Go +https://github.com/akuchling/jwzthreading;Implementation of the JWZ threading algorithm for e-mail or newsgroup messages.;no_research;Python +https://github.com/akuchling/mysql2pgsql;MySQL to PostgreSQL database converter;no_research;Python +https://github.com/akuchling/PhotoBooth;Simple MacOS photo booth app.;no_research;Objective-C +https://github.com/akuchling/psychic-potato;Experimenting with Rust.;no_research;Rust +https://github.com/akuchling/quotation-tools;Tools for formatting quotations recorded in QEL format.;no_research;Python +https://github.com/akuchling/quotations;Various collections of quotations in QEL format.;no_research;Python +https://github.com/akuchling/texlib;Python implementation of TeX's line-wrapping algorithm.;no_research;Python +https://github.com/alexandreteles/alexandreteles;That thing everyone is doing now;no_research; +https://github.com/alexandreteles/alexteles.com;a jekyll website;no_research;HTML +https://github.com/alexandreteles/balaiodelivros;Sistema para Venda e Troca de Livros Usados;no_research;JavaScript +https://github.com/alexandreteles/bolsonaro-tweets;;no_research;Python +https://github.com/alexandreteles/coomer_bot;Ready to coom.;no_research;Python +https://github.com/alexandreteles/crawler-python;Ferramenta de captura de dados brutos a partir da API do Twitter;no_research;Python +https://github.com/alexandreteles/dontpanic-pkgbuild;dontpanic-pkgbuild;no_research;Shell +https://github.com/alexandreteles/jmusicbot-docker;Docker image for JMusicBot;no_research;Dockerfile +https://github.com/alexandreteles/mclinux-packages;This repository contains all MCLinux specific packages;no_research;Shell +https://github.com/alexandreteles/monkeyServer;Do you want to install a LMPM stack (Linux, Monkey Web Server, PHP-FPM, MariaDB) on your machine? monkeyServer will help you with the processes!;no_research;Shell +https://github.com/alexandreteles/pkgbuild-powscript;Bash dialect transpiler in bash: painless shellscript / indentbased / coffeescript for shellscript / bash for hipsters;no_research;Shell +https://github.com/alexandreteles/psy;PoC para software de auxílio ao diagnóstico psiquiátrico utilizando computação cognitiva (IBM Watson);no_research;CSS +https://github.com/alexandreteles/pylaivng-dist-files;This repository contains all the distribution files used by MCLinux on Pylaivng;no_research; +https://github.com/alexandreteles/r-desktop;Docker based virtual desktop environment to run R-Studio;no_research;Dockerfile +https://github.com/alexandreteles/revanced-releases-api;JSON API for ReVanced Releases 🚀;no_research;Python +https://github.com/alexandreteles/studio-3t-pkgbuild;studio-3t-pkgbuild;no_research;Shell +https://github.com/alexandreteles/uolmaisdownloader;Um downloader em massa escrito em Python para vídeos do UOL Mais;no_research;Python +https://github.com/alexkli/adventofcode2018;My solutions for Advent of Code 2018;no_research;JavaScript +https://github.com/alexkli/alfredworkflows;My workflows for alfred;no_research;Python +https://github.com/alexkli/github-api-scripts;Shell scripts to work with the Github REST API;no_research;Shell +https://github.com/alexkli/helix-mytestproject;;no_research;JavaScript +https://github.com/alexkli/helix-tutorial;;no_research;JavaScript +https://github.com/alexkli/homebrew-tap;Custom Homebrew Formulae;no_research;Ruby +https://github.com/alexkli/jhb;Java HTTP Benchmark Tool;no_research;Java +https://github.com/alexkli/lfs-test;;no_research; +https://github.com/alexkli/oak-chest;Oak Chest - Packages for Apache Jackrabbit Oak;no_research; +https://github.com/alexkli/openwhisk-kubernetes-installer;Docker image to install and run Apache OpenWhisk locally on Docker for Mac;no_research;Shell +https://github.com/alexkli/osgi-troubleshoot;Apache Felix Webconsole Plugin for troubleshooting OSGi bundles and services;no_research;Java +https://github.com/alexkli/versionatorr;Web app to compare maven and osgi version numbers using Google Appengine;no_research;CSS +https://github.com/AliKazmi123/Frontend-Challenge;;no_research;TypeScript +https://github.com/AliKazmi123/MdRPA-Library;;no_research;RobotFramework +https://github.com/aloeser/ADM;;no_research;Jupyter Notebook +https://github.com/aloeser/clustering_model;;no_research;Jupyter Notebook +https://github.com/aloeser/CVProjectUnimore;;no_research;Python +https://github.com/aloeser/Etherlords2Map;;no_research; +https://github.com/aloeser/MultimediaDataProcessing;;no_research;C++ +https://github.com/aloeser/spark;;no_research;Scala +https://github.com/Altanbagana92/distance;;no_research;HTML +https://github.com/Altanbagana92/netclicks1;Netclicks;no_research;CSS +https://github.com/Altanbagana92/root;;no_research;C +https://github.com/amintos/akira;A game playing agent featuring experimental AI concepts and a unified parallel programming model. ;no_research; +https://github.com/amintos/Artikel;Some [German] journalistic items, work in progress, open for feedback.;no_research; +https://github.com/amintos/audacious-recipes;An evolving collection of home-made receipes, mostly in german;no_research; +https://github.com/amintos/Dive;Pattern matching on Python object structures;no_research;Python +https://github.com/amintos/mlcr18-demos;;no_research;Jupyter Notebook +https://github.com/amintos/MonadicParser;Extensible PEG (Parsing Expression Grammar) with variables, unification and in-line evaluation;no_research;Python +https://github.com/amintos/mpi-factoring;MPI application computing a low-rank matrix decomposition (approximated truncated SVD) using parallel stochastic gradient descend.;no_research;C++ +https://github.com/amintos/oauth-bridge;Small service to handle OAuth redirect URLs at a public endpoint for local-first workflows;no_research;Python +https://github.com/amintos/Parslinq;Parser combinators using LINQ monads for non-determinism;no_research;C# +https://github.com/amintos/PyECC;Pure Python implementation of an elliptic curve cryptosystem based on FIPS 186-3. WARNING: This Project is de-facto unmaintained since 2012, algorithms are intended for demonstration and teaching and can be easily broken using side-channel attacks when deployed productively!;no_research;Python +https://github.com/amintos/PySpective;A BDD-Style spec runner for Python inspired by rspec;no_research;Python +https://github.com/amintos/raspberry-pi-hacks;Personal notes & codes;no_research; +https://github.com/amintos/sajiki;(Under Construction);no_research;Python +https://github.com/amintos/tcp-bottle;Simple tcpdump web interface for traffic monitoring;no_research;Python +https://github.com/AnjoSs/DS4KiPs;;no_research; +https://github.com/AnjoSs/Gryphon-Wolfgang-Translator;;no_research;JavaScript +https://github.com/AnjoSs/Helenus;;no_research;Python +https://github.com/AnjoSs/MP-BPT-2021;;no_research; +https://github.com/AnjoSs/objective-framework;A framework for formalizing fCM-related Objectives as ASK-CTL formulas;no_research;Vue +https://github.com/AnjoSs/recommendations-user-study;;no_research; +https://github.com/AnjoSs/SMile-Fun;This is the Fun Backlog for the SMile Project;no_research; +https://github.com/AnjoSs/stubs-playground;;no_research; +https://github.com/AnjoSs/test;;no_research; +https://github.com/antongulenko/BeagleBone-Overlays;Device Tree Overlays for custom use of BeagleBone Black extension headers.;no_research;Shell +https://github.com/antongulenko/dockerfiles;;no_research;Shell +https://github.com/antongulenko/dump-net;Listen on multiple TCP or UDP endpoints and dump all received data.;no_research;Go +https://github.com/antongulenko/golib;Useful helper types and functions for Go;no_research;Go +https://github.com/antongulenko/haskell-snake;Snake on the console with Haskell (for educational reasons);no_research;Haskell +https://github.com/antongulenko/http-isolation-proxy;HTTP proxy for automatic isolation of Microservices;no_research;Go +https://github.com/antongulenko/i2c-tool;;no_research;Go +https://github.com/antongulenko/merge-intervals;Parse and merge numerical intervals;no_research;Go +https://github.com/antongulenko/nas-controller;Arduino Project for web-based controller for the power state and RGB fans of a NAS server;no_research;C++ +https://github.com/antongulenko/PHP-Playground;;no_research;PHP +https://github.com/antongulenko/pygo;;no_research;Python +https://github.com/antongulenko/rstrategies;;no_research;Python +https://github.com/antongulenko/RTP;Experiments with UDP/RTP streaming services;no_research;Go +https://github.com/antongulenko/stream-statistics-client;Load generator for HTTP or RTMP stream servers, providing statistics about the service quality;no_research;Go +https://github.com/antongulenko/tank;;no_research;Go +https://github.com/antongulenko/TankOS;Configurable OS for AVR ICs;no_research;C +https://github.com/antongulenko/tcp-balance;TCP Load Balancer in Go, with emphasis on runtime reconfiguration through REST;no_research;Go +https://github.com/antongulenko/test-gc;This is a small Go program to test garbage collector functionality of a Go compiler.;no_research;Go +https://github.com/antoniusnaumann/adaptive-navigation-scaffold;;no_research;Dart +https://github.com/antoniusnaumann/annoying-semicolon;An IntelliJ plugin to avoid producing Kotlin code with lots of unnecessary semicolons when you let your C++ or Java friends write Kotlin code unsupervised;no_research;Kotlin +https://github.com/antoniusnaumann/arc-slider;A beautiful, customizable arc slider for Jetpack Compose (Android), Compose Desktop and Compose for Web.;no_research;Kotlin +https://github.com/antoniusnaumann/cargo-swift;A cargo plugin to easily build Swift packages from Rust code;no_research;Rust +https://github.com/antoniusnaumann/chords;A small utility library to make Material 3 with Jetbrains/Jetpack Compose more harmonic.;no_research;Kotlin +https://github.com/antoniusnaumann/dachterasse;WIP: Rust crate for scraping the HPI lecture overview site;no_research;Rust +https://github.com/antoniusnaumann/dioxus-use-request;Simple GET request hook for Dioxus;no_research;Rust +https://github.com/antoniusnaumann/gangplank;Tiny utils collection to deal platform-dependent implementations in Swift;no_research;Swift +https://github.com/antoniusnaumann/helix-config;My personal config for the helix editor (https://helix-editor.com) including a custom theme;no_research; +https://github.com/antoniusnaumann/keyboard;My QMK keymaps;no_research;C +https://github.com/antoniusnaumann/lazyvim-config;My neovim config using lazyvim;no_research;Lua +https://github.com/antoniusnaumann/neonmania;A nice little top-down shooter with an awesome neon color mechanic;no_research;C# +https://github.com/antoniusnaumann/pianist-charts;A beautiful chart library for Jetpack Compose (Android) and Compose for Desktop which supports Material 3 themeing.;no_research;Kotlin +https://github.com/antoniusnaumann/ricktastic;An app to rate your favorite Rick & Morty episodes. Build to test and evaluate Flutter for Mobile, Desktop and Web.;no_research;Dart +https://github.com/antoniusnaumann/rocket-modules;A small crate which adds route modules for Rocket;no_research;Rust +https://github.com/antoniusnaumann/tauri-bindgen-ts;WIP: Generate Typescript bindings to Rust types and functions in a Tauri app ;no_research;Rust +https://github.com/antoniusnaumann/todo-example-kotlin;An example / template Kotlin Multiplatform app using Ktor (Server), Jetpack Compose (Android & JVM/Desktop App) and SwiftUI (iOS App);no_research;Kotlin +https://github.com/antoniusnaumann/vow;A (toy) project where I build some reactive primitives around V UI;no_research;V +https://github.com/apblack/Emerald;Historical Emerald archive;no_research; +https://github.com/apblack/GraceInPharo;;no_research;Smalltalk +https://github.com/apblack/npm-example;;no_research; +https://github.com/apblack/pharoPlayground;playing with iceberg in Pharo;no_research; +https://github.com/apblack/PomonaXmodule;The changes to xmodule from Pomona;no_research;Grace +https://github.com/apblack/Why-PLs-Matter-Talk;A talk, originally for the Programming Languages Mentoring Workshop, on why programming languages matter;no_research; +https://github.com/arberaga/dataScienceSolutions;;no_research;Python +https://github.com/arberaga/Discord-Bot;;no_research;C# +https://github.com/arberaga/gnn-tryouts;;no_research;Python +https://github.com/arberaga/hashcode2022;;no_research;Java +https://github.com/arberaga/udemy-react;;no_research; +https://github.com/arne-z/40k-calculator;Simple React app for a warhammer 40k damage calculator.;no_research;JavaScript +https://github.com/arne-z/BachelorThesis;;research;TeX +https://github.com/arne-z/hackhpi19_trust_o_mat;;no_research;JavaScript +https://github.com/arne-z/next-with-jest-example;;no_research;TypeScript +https://github.com/arneboockmeyer/docker-network-simulator;A network simulator for docker containers;no_research;Python +https://github.com/arneboockmeyer/ipfs-ubuntu-docker-image;A docker image for ipfs with ubuntu as base image;no_research; +https://github.com/artempolyvyanyy/quality-measures;Quality Measures for Process Mining and Process Querying;no_research; +https://github.com/artempolyvyanyy/ReuseLaTeX;Useful code to reuse when working with LaTeX;no_research;TeX +https://github.com/Askir/bachelor-thesis-template;A simple latex template for bachelor theses;no_research;TeX +https://github.com/Askir/earthquakerice;;no_research;JavaScript +https://github.com/Askir/ecplise-cdt;;no_research;Java +https://github.com/Askir/elija-rails;;no_research;Ruby +https://github.com/Askir/pt2-uebungen;meine pt2 uebungen;no_research;C++ +https://github.com/Askir/Texas-Holdem-Android;;no_research;Java +https://github.com/Askir/tourneytuesday;A small Vue App with express backend for Lancemenots tournament tuesday;no_research;JavaScript +https://github.com/Askir/Wiiteboard;;no_research;C++ +https://github.com/athomschke/hyperlively;Visual programming with pen and touch input;no_research;JavaScript +https://github.com/athomschke/journal;;no_research;HTML +https://github.com/athomschke/reactundrohkost;;no_research;JavaScript +https://github.com/AttalaKheireddine/advanced_1;exo1;no_research; +https://github.com/AttalaKheireddine/advanced_2;;no_research;Kotlin +https://github.com/AttalaKheireddine/advanced_3;exo3;no_research;Kotlin +https://github.com/AttalaKheireddine/advanced_4;;no_research;Kotlin +https://github.com/AttalaKheireddine/AgendaCSE;;no_research; +https://github.com/AttalaKheireddine/ALOG_1_REPO;;no_research;C# +https://github.com/AttalaKheireddine/bloggo;Learning django from a tutorial ( Udemy - python-and-django-full-stack-web-developer-bootcamp\);no_research;Python +https://github.com/AttalaKheireddine/CSE-register;The CSE registration game from 2019, hosting it for pics;no_research;CSS +https://github.com/AttalaKheireddine/CSE-tuto-django;;no_research;Python +https://github.com/AttalaKheireddine/CSE_Training_code;;no_research;C# +https://github.com/AttalaKheireddine/django_tuto_repo;A repo for the django tutorial by CSE Club scientifiqie de l'ESI;no_research; +https://github.com/AttalaKheireddine/EyeTrackerPrototype;A small prototype of an app that will train the sharpness of one's vision by tracking moving objects.;no_research;CSS +https://github.com/AttalaKheireddine/find-the-star;Wanted to have some fun with some other simple game concept, I will let you guys discover!;no_research;C# +https://github.com/AttalaKheireddine/I-am-KH;My weired open-source portfolio (until I find a better name for it);no_research;CSS +https://github.com/AttalaKheireddine/KH;My website (non fun version);no_research; +https://github.com/AttalaKheireddine/KH-The-Toolbox;...;no_research;CSS +https://github.com/AttalaKheireddine/My-weired-portfolio;;no_research; +https://github.com/AttalaKheireddine/PrjTDW;Yay ! more school work !;no_research;JavaScript +https://github.com/AttalaKheireddine/Red-Repo;$_$;no_research; +https://github.com/AttalaKheireddine/row;My first game ever (based on a original concept). 3 levels of pure game design and unity learning !;no_research;C# +https://github.com/AttalaKheireddine/Surva-tactics-Gamma;Nothing Beta;no_research;HTML +https://github.com/AttalaKheireddine/T5_outils;;no_research; +https://github.com/AttalaKheireddine/TDM2Prj;;no_research;Kotlin +https://github.com/AttalaKheireddine/TDM_4_EXO_3;Up for what? More school work !!!!;no_research;Kotlin +https://github.com/AttalaKheireddine/That-one-guy-called-KH;;no_research; +https://github.com/AttalaKheireddine/The-black_quill;My portfolio;no_research;CSS +https://github.com/AttalaKheireddine/TP5_IPLS;part of school work which aim is learning Git ang Github workflows;no_research;Java +https://github.com/AttalaKheireddine/TP5_Outils;schol work for github learning;no_research;Java +https://github.com/AttalaKheireddine/Tp_Outils_5_exo2;TP;no_research;Java +https://github.com/AttalaKheireddine/Transposed;Mini-game based on guessing words in limited time given the letters in random order plus the definition;no_research; +https://github.com/AttalaKheireddine/You-are-a-poem;;no_research;JavaScript +https://github.com/AttalaKheireddine/You_are_a_poem_backend;;no_research;Python +https://github.com/axel22/axel22.github.com;My personal website;no_research;HTML +https://github.com/axel22/chocolate-sunset;The Chocolate Sunset theme for mocp (for high color count terminals).;no_research; +https://github.com/axel22/conc-id-generators;;no_research;Scala +https://github.com/axel22/conc-trees;Original conc trees repo.;no_research;Scala +https://github.com/axel22/concurrent-unrolled-queue;;no_research;Scala +https://github.com/axel22/Ctries;Scala implementation of the Ctrie datastructure.;no_research;Scala +https://github.com/axel22/Evolutionary-Computing-IDE;Integrated development environment for creation and evaluation of evolutionary algorithms.;no_research;Java +https://github.com/axel22/github-api-testing;Repo for testing the GitHub api.;no_research; +https://github.com/axel22/jvm-threads-experiments;Random experiments and benchmarks.;no_research;Scala +https://github.com/axel22/lazy-val-bench;Lazy val initial microbenchmarks;no_research;Scala +https://github.com/axel22/lms-mirror;;no_research;Scala +https://github.com/axel22/mechanica;Vim colorscheme with a pastel, mechanical feel.;no_research;Vim script +https://github.com/axel22/oca-verifier;Verifies PullRequests for OCA;no_research;Python +https://github.com/axel22/parprog-snippets;Snippets and programs from the Parallel Programming lectures.;no_research;Scala +https://github.com/axel22/reactress-macros;This experimental project is superseded by the Reactress project.;no_research;Scala +https://github.com/axel22/sages;An implementation of an isometric 2d game engine in Scala.;no_research;Scala +https://github.com/axel22/scala-2d-game-editor;A toy 2D game editor written in Scala, Java and OpenGL.;no_research;Scala +https://github.com/axel22/scala-bench-suite;;no_research;Scala +https://github.com/axel22/scala-mirror;Mirror of the Scala repo;no_research;Scala +https://github.com/axel22/scala-old-mirror;Mirror of the scala repo;no_research;Scala +https://github.com/axel22/scalacheck-tutorial;A short ScalaCheck tutorial for the Programming Principles course;no_research;Scala +https://github.com/axel22/ScalaDays2011-PC;ScalaDays 2011 parallel collections snippets;no_research;Scala +https://github.com/axel22/ScalaDays2012-TrieMap;;no_research;Scala +https://github.com/axel22/scalagl;Thin Scala-style wrapper for the JOGL library;no_research;Scala +https://github.com/axel22/scalapool;Scala Memory Pool API;no_research;Scala +https://github.com/axel22/shallow-ctries;Shallow Ctries.;no_research; +https://github.com/axel22/sm-cont;Continuation examples - run using SBT 0.7.x;no_research;Scala +https://github.com/axel22/sm-parsers;Parser combinator examples;no_research;Scala +https://github.com/axel22/Storm;;no_research;Scala +https://github.com/axel22/streams-examples;Example Streams programs;no_research;Java +https://github.com/axel22/sublime-javap;Javap support for Sublime Text 2 - bytecode introspection made easy!;no_research;Python +https://github.com/axel22/wasm-examples;Example wasm binaries.;no_research; +https://github.com/azeghers/cprog_Allum1;Match removal game against AI;no_research;C +https://github.com/azeghers/cprog_BSQ;Biggest SQuare finder in txt maps;no_research;C +https://github.com/azeghers/maths_yams;Maths probability project;no_research;C +https://github.com/azeghers/postfix-converter-calculator;Small program that converts an infix calculation into postfix and computes it;no_research;JavaScript +https://github.com/azeghers/react-movie-search-app;;no_research;JavaScript +https://github.com/azeghers/shprog_exercises;Various shell programs;no_research;Shell +https://github.com/azeghers/unixprog_minitalk;Client/Server message transfer via signals;no_research;C +https://github.com/azeghers/unixprog_printf;;no_research;C +https://github.com/azeghers/vuejs_training;;no_research;Vue +https://github.com/B3QL/bf-interpreter;Simple Brainfuck interpreter written with TDD approach;no_research;Python +https://github.com/B3QL/danologia;Przydatne materiały i linki;no_research; +https://github.com/B3QL/dotfiles;;no_research;Nix +https://github.com/B3QL/eurovision-teleaudio-rank;Fetch and count points from Eurovision's teleaudio rank. Only 50% of voices in final rank belongs to audience.;no_research;Python +https://github.com/B3QL/gol-elm;Game of Life in Elm;no_research;Elm +https://github.com/B3QL/links;;no_research; +https://github.com/B3QL/pep263;Command line tool for managing source files encodings based on PEP263;no_research;Python +https://github.com/B3QL/pyheart;Simplified Python implementation of HeartStone game by Blizzard.;no_research;Python +https://github.com/B3QL/tango-calendar;Calendar app in Django;no_research;Python +https://github.com/B3QL/ttt;Tic-Tac-Toe game with Reinforced Learning;no_research;Python +https://github.com/barmac/amp-telemetry-test;This project was prepared as a code test for Hive Streaming. The goal of the app is to collect information and telemetries from the Azure Media Player video player and send it to a service for collection and later processing.;no_research;JavaScript +https://github.com/barmac/amp-telemetry-test-service;This project was prepared as a code test for Hive Streaming. The goal of the app is to receive and save data from a plugin to Azure Media Player.;no_research;TypeScript +https://github.com/barmac/any-to-webm;;no_research;Shell +https://github.com/barmac/asdf-camunda-modeler;Camunda Modeler plugin for the asdf version manager.;no_research;Shell +https://github.com/barmac/barmac;;no_research; +https://github.com/barmac/bpmn-deco-presentation;;no_research;HTML +https://github.com/barmac/bpmn-js-copy-as-image;A bpmn-js extension which allows to render selected elements as images;no_research;JavaScript +https://github.com/barmac/bpmn-js-integration-101;This is the presentation for a talk I gave on 6.09.2022 at a bpmn.io team meeting.;no_research;HTML +https://github.com/barmac/bpmn-js-lasso-group;Create bpmn:Group with a lasso-like tool.;no_research;JavaScript +https://github.com/barmac/camunda-modeler-restart-plugin;Restart Camunda Modeler with a single menu click or keyboard shortcut.;no_research;JavaScript +https://github.com/barmac/camunda-modeler-test-plugin;Plugin to test all extension points.;no_research;JavaScript +https://github.com/barmac/contact_box;;no_research;Python +https://github.com/barmac/discourse-bpmn-io;Display attached BPMN and DMN diagrams on Discourse.;no_research;JavaScript +https://github.com/barmac/dmn-js-feel-editor-demo;;no_research;HTML +https://github.com/barmac/dmn-scala-js-presentation;;no_research;HTML +https://github.com/barmac/filifiszki-backend;;no_research;JavaScript +https://github.com/barmac/film-ratings;A web browser extension which displays FilmWeb ratings on HBO Go and Netflix.;no_research;JavaScript +https://github.com/barmac/film-scraper;;no_research;TypeScript +https://github.com/barmac/Flashcards;A simple Django application aimed to help learning languages.;no_research;Python +https://github.com/barmac/introducing-snyk;Slides for presentation on Snyk.;no_research;HTML +https://github.com/barmac/library-helper;;no_research;JavaScript +https://github.com/barmac/movies-rest;Movies database REST API made with Django REST Framework.;no_research;Python +https://github.com/barmac/msfroggenerator2;;no_research;JavaScript +https://github.com/barmac/node-course-server;A test app made purely for node.js education.;no_research;JavaScript +https://github.com/barmac/node-mongo-test;;no_research;JavaScript +https://github.com/barmac/oh-my-npm-link;Autocomplete package dependencies for `npm link` and `yarn link`.;no_research;Shell +https://github.com/barmac/oh-my-npm-run;;no_research;JavaScript +https://github.com/barmac/package-json-fields;Slides for presentation about useful package.json fields.;no_research;HTML +https://github.com/barmac/recipe-master;Your personal cookbook built with MEAN stack.;no_research;TypeScript +https://github.com/barmac/rock-paper-scissors;;no_research;JavaScript +https://github.com/barmac/spot-it-generator;;no_research;JavaScript +https://github.com/barmac/spring-cleaning;This is the presentation for a tech talk I gave on 08.11.2022 at the Camunda tech talk meeting.;no_research;HTML +https://github.com/barmac/templates-plugin;;no_research;JavaScript +https://github.com/barmac/test;;no_research; +https://github.com/barmac/unofficial-quizlet-extended;Extend or change behavior of Quizlet web app;no_research;JavaScript +https://github.com/barmac/upcoming-standards-at-omg;Slides for the presentation on the standards developed in 2022 at OMG.;no_research;HTML +https://github.com/barmac/validately-items;;no_research;JavaScript +https://github.com/barmac/validately-items-frontend;;no_research;TypeScript +https://github.com/barmac/validately-timezones;;no_research;TypeScript +https://github.com/barmac/xmi-moddle;;no_research;JavaScript +https://github.com/barmac/zoom-now;;no_research;JavaScript +https://github.com/BastianThiede/DCGAN_wikiart;Art + Gans ;no_research;Python +https://github.com/BastianThiede/hash-identifier;Automatically exported from code.google.com/p/hash-identifier;no_research;Python +https://github.com/BastianThiede/leet_count;Viechs leet_count;no_research;Python +https://github.com/BastianThiede/viechview;AWESOME VIECHVIEW;no_research;JavaScript +https://github.com/bdaase/about-me;;no_research;CSS +https://github.com/bdaase/AtariBreakout;;no_research;JavaScript +https://github.com/bdaase/DockEverything;;no_research;JavaScript +https://github.com/bdaase/GameControl;A simple game control GUI built with QT, containing a timer and several input fields, that writes all its values to files so they can be read by e.g. OBS for overlays.;no_research;C++ +https://github.com/bdaase/GitTesting;;no_research; +https://github.com/bdaase/LatexMaster;;no_research;TeX +https://github.com/bdaase/noannoyance;;no_research;JavaScript +https://github.com/bdaase/remove-alt-tab-delay;;no_research;JavaScript +https://github.com/bdaase/SystemSetup;;no_research;Shell +https://github.com/bdaase/ThesisProposal;;no_research;TeX +https://github.com/bdaase/vfs-FATx;;no_research;C +https://github.com/ben31414/odoo_bom_generator;This repository contains the prototype of an odoo-application, which extends the MRP-module to generate numerous bill of materials at once.;no_research;Python +https://github.com/benbuc/infostream-bahnapi;;no_research;Python +https://github.com/benbuc/Linda;Linda is a Neat Data Analyzer;no_research;Python +https://github.com/benbuc/OpenWasteMap;Visualizing the amount of human-made waste in the world 🌎;no_research;Python +https://github.com/benbuc/UnixV3;Trying to run Unix V3 on simh pdp11;no_research;C +https://github.com/benbuc/weather-symphony;;no_research;Python +https://github.com/benjaminp/annexstad.farm;;no_research; +https://github.com/benjaminp/benjamin-peterson.org;;no_research;HTML +https://github.com/benjaminp/benjamin.pe;;no_research;HTML +https://github.com/benjaminp/characteristic2.com;;no_research;HTML +https://github.com/benjaminp/compressed-sensing-intro;notes for a 2015 lecture about compressed sensing;no_research;TeX +https://github.com/benjaminp/dagas;DAGA as a service;no_research;Python +https://github.com/benjaminp/distributed.systems;;no_research;HTML +https://github.com/benjaminp/httpsinfo;Firefox extension that displays HTTPS connection info in the Awesome Bar.;no_research;JavaScript +https://github.com/benjaminp/httpswatch;;no_research;Python +https://github.com/benjaminp/httpswatch.com;;no_research;HTML +https://github.com/benjaminp/locrian.net;;no_research;HTML +https://github.com/benjaminp/moduli.space;;no_research;HTML +https://github.com/benjaminp/mozugs;A bugtracker;no_research;Python +https://github.com/benjaminp/p-adics.com;;no_research;HTML +https://github.com/benjaminvanrenterghem/ProgrammerenGevorderd2021Oefeningen;;no_research; +https://github.com/benjaminvanrenterghem/ProgrammerenSpecialisatie2021;Development area;no_research;HTML +https://github.com/benjaminvanrenterghem/ProgrammerenSpecialisatie2021-1;Development area;no_research; +https://github.com/benjaminvanrenterghem/verifications;;no_research; +https://github.com/BennytheBomb/Assignment_1;BIS Unity assignment;no_research;C# +https://github.com/BennytheBomb/Bogenschiessen;Beispiel für Kathrin;no_research; +https://github.com/BennytheBomb/Breakout;Unity 3D Breakout game from 15.11.19;no_research;C# +https://github.com/BennytheBomb/drawPerfectCircle;PaperJS app to draw a perfect circle.;no_research;TypeScript +https://github.com/BennytheBomb/DuelPanto;;no_research;C# +https://github.com/BennytheBomb/Evolutionary-Ships;;no_research; +https://github.com/BennytheBomb/Flappy-Bird;;no_research;JavaScript +https://github.com/BennytheBomb/mental-calculation;Dr. Kawashimas Brain Jogging mental calculation game build with PaperJS.;no_research;TypeScript +https://github.com/BennytheBomb/Mr-Roboto;Robot code repository for the BID robot competition.;no_research;C++ +https://github.com/BennytheBomb/portfolio;;no_research;CSS +https://github.com/BennytheBomb/Processing;All p5 and Processing projects;no_research;JavaScript +https://github.com/BennytheBomb/sumo-battle-starter;Original tutorial here:;no_research;C# +https://github.com/BennytheBomb/Sumo-Battle-Student;GitHub repo for the unity lecture in BIS containing all necessary project files.;no_research;C# +https://github.com/BennytheBomb/UE4_Battle_Tank;Learn-Project from the Unreal Engine Developer Course;no_research;C++ +https://github.com/BennytheBomb/Unreal_Engine;Repository containing all Unreal Projects;no_research; +https://github.com/berkerpeksag/astor;Python AST read/write;no_research;Python +https://github.com/berkerpeksag/cpython-emailer-webhook;;no_research;Python +https://github.com/berkerpeksag/dotfiles;;no_research;Vim script +https://github.com/berkerpeksag/github-badge;GitHub Badge is a simple embeddable badge showing your GitHub stats like the number of public repositories, number of followers, favorite languages etc.;no_research;Python +https://github.com/berkerpeksag/murl;URL manipulation in Python, made simple.;no_research;Python +https://github.com/berkerpeksag/notes;;no_research;HTML +https://github.com/berkerpeksag/python-playground;;no_research;Python +https://github.com/berkerpeksag/selectors34;Backport of the selectors module from Python 3.4;no_research;Python +https://github.com/binki/.emacs.d;;no_research;Emacs Lisp +https://github.com/binki/anarchyirc-link-block-client;;no_research;Shell +https://github.com/binki/anarchyirc-link-block-service;;no_research;JavaScript +https://github.com/binki/AspNetWebApiOwinStreamContentDemo;Demonstration of issue with IISExpress and ASP.NET Web API with OWIN;no_research;C# +https://github.com/binki/autoserve;Deploy a node webapp to FastCGI, Passenger, node http, or other things in the future;no_research;JavaScript +https://github.com/binki/autoserve-platform-node-fastcgi;The autoserve platform for node-fastcgi;no_research;JavaScript +https://github.com/binki/babylonjs-blender-loader;Webpack loader for babylonjs-blender;no_research;JavaScript +https://github.com/binki/binki-action-publish-create-react-app-to-pages;;no_research; +https://github.com/binki/binki-bigtime-net-timer-quick-unpause;A convenience to pause and unpause timers with one click in bigtime.net;no_research;JavaScript +https://github.com/binki/binki-dabble-solve;;no_research;TypeScript +https://github.com/binki/binki-facebook-messenger-desktop-notifications;Restore desktop notifications functionality to messenger.com (but terribly).;no_research;JavaScript +https://github.com/binki/binki-fool-java-os-version;Fool Java’s os.version by editing the value of release field in uname(2);no_research;C +https://github.com/binki/binki-google-photos-navigation;ctrl+[ and ctrl+] to navigate between photos when editing description;no_research;JavaScript +https://github.com/binki/binki-google-youtube-music-volume;Add quick volume buttons to YouTube Music;no_research;JavaScript +https://github.com/binki/binki-kayako-dark-style;An OLED dark theme for Kayako’s agent interface;no_research;CSS +https://github.com/binki/binki-kayako-suspended-notifier;Login and suspended message notifiaction for Kayako.;no_research;JavaScript +https://github.com/binki/binki-league-ontop;Sets the ontop of the League client to be ontop;no_research;Batchfile +https://github.com/binki/binki-microsoft-word-document-title;Fix WOPI Word editor to set document title to improve usability;no_research;JavaScript +https://github.com/binki/binki-office365-outlook-auto-unquarantine;Automatically release messages held in office365 business quarantine in case you do not have access to change the settings.;no_research;TypeScript +https://github.com/binki/binki-qrcode-labeler;Print QR Code Labels;no_research;TypeScript +https://github.com/binki/binki-ringcentral-dark-style;A real dark theme for Glip (RingCentral);no_research;CSS +https://github.com/binki/binki-series-timer;A timer which counts up and progresses through consecutive steps;no_research;TypeScript +https://github.com/binki/binki-sharefile-microsoft-word-recovery;Recover from error loading Microisoft Word Document from ShareFile using WOPI;no_research;JavaScript +https://github.com/binki/binki-twitch-chat-notify;Add desktop notifications to Twitch;no_research;JavaScript +https://github.com/binki/binki-userscript-delay-async;A simple `delayAsync()` function for use in userscripts (GreaseMonkey scripts).;no_research;JavaScript +https://github.com/binki/binki-userscript-when-element-changed-async;A whenElementChangedAsync() function for use in userscripts (Greasemonkey).;no_research;JavaScript +https://github.com/binki/calvin-cs212-bingo;hplantin’s CS-212 Bingo project’s starting point (hopefully origin is public domain?).;no_research;Rouge +https://github.com/binki/connect3139210;;no_research;C# +https://github.com/binki/cordova-plugin-local-notifications-schedule;;no_research;Java +https://github.com/binki/CustomUriProtocolRegistrar;Wraps various platform-specific methods of registering a program as a custom URI protocol handler.;no_research;C# +https://github.com/binki/CustomURL;Register an application for URI/URL activation. Goal: NuGet package, support OSX, xdg, and Windows, provide an API, drop binary proxy. Import of https://customurl.codeplex.com/;no_research;C# +https://github.com/binki/dabble;;no_research;JavaScript +https://github.com/binki/deploy-to-artifacts;;no_research;JavaScript +https://github.com/binki/DirectConneX.CefSharp.SuppressAnyCpuBuildError;Suppress CefSharp’s AnyCPU build error which breaks the NuGet PackageReference transitive dependency concept.;no_research; +https://github.com/binki/dotenv-byenv;Load .env{,.ENVIRONMENT}{,.local} like react-scripts does for server-side;no_research;JavaScript +https://github.com/binki/drawnames-play;Scripts messing around with drawnames.com;no_research;JavaScript +https://github.com/binki/EntityFrameworkMigrationUseContext;;no_research;C# +https://github.com/binki/example-autoserve-app;Example autoserve web application;no_research;JavaScript +https://github.com/binki/express-autoserve;Use http-autodetect with Express apps to deploy to FastCGI, Passenger, node http, etc.;no_research;JavaScript +https://github.com/binki/ExpressionTryFaultInvalidEmit;;no_research;C# +https://github.com/binki/fastcli;;no_research; +https://github.com/binki/GeneralizedAsyncPushPullParser;An abuse of C#’s async/await to write a pull-style parser with a push-style public API.;no_research;C# +https://github.com/binki/InfiniteRecursionValueTuple;repro for StackOverflowException in visualstudio-15.8.0, visualstudio-15.8.1;no_research;C# +https://github.com/binki/JeopardyRingin;Code for Jeopardy Ring-in device Mk.II;no_research;C +https://github.com/binki/maputil;Simple utilities for ES6 Map.;no_research;JavaScript +https://github.com/binki/MsBuildVisualStudio15_8_3Regression;Demo of visualstudio-15.8.3 GUI build ItemDefinitionGroup regression;no_research;C# +https://github.com/binki/MsBuildVisualStudio17_6WriteCodeFragmentRegression;Reproduce an issue with WriteCodeFragment in visualstudio-17.6;no_research; +https://github.com/binki/MsgBoxFun;Show winforms MessageBox with different icons for quick testing;no_research;C# +https://github.com/binki/Neko2k.RandomBuildString;Example of how to inject a per-build UUID into an assembly as .targets supplied by a nuget package.;no_research; +https://github.com/binki/node-babylonjs-blender;CLI and node library wrapper around BabyonJS’s Blender export addon.;no_research;JavaScript +https://github.com/binki/node-gitignore-editorconfig;Node.js-optimized .gitignore and .editorconfig with license for me to seed projects.;no_research; +https://github.com/birkenfeld/.dotfiles;dotfiles repo;no_research;Shell +https://github.com/birkenfeld/.emacs.d;Emacs configuration;no_research;Emacs Lisp +https://github.com/birkenfeld/ads-rs;Rust crate to access PLCs via the Beckhoff ADS protocol;no_research;Rust +https://github.com/birkenfeld/ads_forwarder_rs;Forwards and multiplexes Beckhoff ADS connections and scans/mangles NetIDs.;no_research;Rust +https://github.com/birkenfeld/advent;Advent of Code;no_research;Rust +https://github.com/birkenfeld/advent15;Advent of Code 2015;no_research; +https://github.com/birkenfeld/advent16;Advent of Code 2016;no_research; +https://github.com/birkenfeld/advent17;Advent of Code 2017;no_research; +https://github.com/birkenfeld/advent18;Advent of Code 2018 (Rust);no_research; +https://github.com/birkenfeld/advent19;Advent of Code 2019;no_research; +https://github.com/birkenfeld/advent20;;no_research; +https://github.com/birkenfeld/advent21;;no_research; +https://github.com/birkenfeld/advent22;Advent of Code 2022;no_research; +https://github.com/birkenfeld/advtools;;no_research; +https://github.com/birkenfeld/arexibo;A Rust Linux Xibo player;no_research;Rust +https://github.com/birkenfeld/cache-rs;Experimental NICOS cache implementation in Rust;no_research;Rust +https://github.com/birkenfeld/cachereg_rs;;no_research;Rust +https://github.com/birkenfeld/charon;Playground for marrying Beckhoff ST code with Python;no_research;Python +https://github.com/birkenfeld/charon-rs;;no_research;Rust +https://github.com/birkenfeld/clevercss-hs;CSS preprocessor;no_research;Haskell +https://github.com/birkenfeld/daemonize-rs;Rust library for daemonizing a process (WIP);no_research;Rust +https://github.com/birkenfeld/dconv;;no_research;Python +https://github.com/birkenfeld/ethercat-rs;outdated;no_research; +https://github.com/birkenfeld/fddf;Fast data dupe finder;no_research;Rust +https://github.com/birkenfeld/gitchangelog;Git hook pre-filling the commit message with text added to the changelog file.;no_research;Python +https://github.com/birkenfeld/gitcodesmell;"Git hook checking for ""smelly"" changes in files (debugging leftovers, merge markers etc.) before committing";no_research;Python +https://github.com/birkenfeld/gr2;;no_research;C +https://github.com/birkenfeld/greptest;;no_research;Rust +https://github.com/birkenfeld/hgchangelog;;no_research;Python +https://github.com/birkenfeld/hgcodesmell;;no_research;Python +https://github.com/birkenfeld/hgpunchcard;;no_research;Python +https://github.com/birkenfeld/idomenu;The idomenu.el library for Emacs.;no_research;Emacs Lisp +https://github.com/birkenfeld/ipython-physics;IPython extension for easy physical quantity input and calculations;no_research;Python +https://github.com/birkenfeld/iter-read;Rust library that implements std::io::Read for iterators over bytes;no_research;Rust +https://github.com/birkenfeld/karnickel;;no_research;Python +https://github.com/birkenfeld/kenken-rs;KenKen solver in Rust;no_research;Rust +https://github.com/birkenfeld/lcd-demo;;no_research;Rust +https://github.com/birkenfeld/led-name-tag-programmer;Programmer for Chinese 11x44 LED name tags;no_research;Python +https://github.com/birkenfeld/miezelib;;no_research;Python +https://github.com/birkenfeld/mlzlog-rs;"Port of ""mlzlog"" Python package";no_research;Rust +https://github.com/birkenfeld/mlzutil;;no_research;Rust +https://github.com/birkenfeld/ngc;G-code/CNC library in Rust;no_research;Rust +https://github.com/birkenfeld/nicos-compact-cachedb;;no_research;Rust +https://github.com/birkenfeld/overload-strings;Haskell OverloadedStrings for Rust;no_research;Rust +https://github.com/Birne94/AudioSort;WPF music player created as a final project for school;no_research;C# +https://github.com/Birne94/Coffee-in-the-Cloud;;no_research;Python +https://github.com/Birne94/flask-sqlalchemy-ticket-setup;Test repository to show a problem I am currently having with SQLAlchemy and Flask;no_research;Python +https://github.com/Birne94/python-atfork-lock-release;Adds support for freeing io locks after fork in order to avoid deadlocks.;no_research;C +https://github.com/Birne94/rds-s3-database-backup;Script to backup rds postgres databases to s3;no_research;Shell +https://github.com/bisbaldi/4ME301;Data related to the data collection assignment for 4ME301;no_research;R +https://github.com/bisbaldi/blockchain_in_a_nutshell;a simple summary of blockchain technology;no_research; +https://github.com/bisbaldi/ember-assessment;;no_research;JavaScript +https://github.com/bisbaldi/extended-printmedia;;no_research;JavaScript +https://github.com/bisbaldi/MagnetX;User Interface for the Tangible MagnetX interface;no_research;JavaScript +https://github.com/bisbaldi/OpenShiftAssignment;;no_research;HTML +https://github.com/bisbaldi/ssg-ionic;;no_research;TypeScript +https://github.com/bitdancer/dinsd;Relational Python: an almost-D in the spirit of The Third Manifesto;no_research;Python +https://github.com/bitdancer/extras;;no_research;Python +https://github.com/bitdancer/parameterizabletests;Test parameterization decorators for stlib unittest TestCases;no_research;Python +https://github.com/bitdancer/syndicalist;A personal newsfeed (RSS, Atom) manager;no_research;Python +https://github.com/bizso09/groupbuyblockchain;Group buying on the blockchain;no_research;CSS +https://github.com/bizso09/talib-binaries;Binaries for TA-lib;no_research;Python +https://github.com/boehmchen/awesome-retrieval-augmented-generation;;no_research; +https://github.com/boehmchen/nx-deployment;;no_research; +https://github.com/boehmchen/perseverance;;no_research;Smalltalk +https://github.com/boehmchen/stLox;Lox implementation in Squeak;no_research;Smalltalk +https://github.com/boogheta/collect-user-vimeo-catalog;;no_research;Shell +https://github.com/boogheta/contropedia-sprint-scripts;;no_research;Python +https://github.com/boogheta/coronavirus-countries;COVID-19 interactive dashboard for the whole world;no_research;JavaScript +https://github.com/boogheta/csv2tsv;;no_research;Python +https://github.com/boogheta/gephi-sprint-clustering;;no_research;JavaScript +https://github.com/boogheta/hyphe2neo4j;tryouts to load a hyphe corpus in neo4j;no_research;Python +https://github.com/boogheta/markdown-pieces;;no_research; +https://github.com/boogheta/Marvel;Build networks from Marvel's API;no_research;TypeScript +https://github.com/boogheta/netlifycms;test netlify;no_research; +https://github.com/boogheta/shantanu-hindi-stopwords-twitter;;no_research;Python +https://github.com/boogheta/test-gh-actions;;no_research;Shell +https://github.com/boogheta/testmd;;no_research; +https://github.com/boogheta/trendy;;no_research; +https://github.com/boogheta/twitter-cards-test;Simple page to test twitter social cards on https://cards-dev.twitter.com/validator;no_research;HTML +https://github.com/boogheta/various_scrapers;various_scrapers;no_research;Python +https://github.com/boogheta/YouPorn-data;attempts to make networks from youporn's released metadata;no_research;Python +https://github.com/boris-spas/.vim;;no_research;Vim Script +https://github.com/boris-spas/advent-of-code-2020;;no_research;Awk +https://github.com/boris-spas/ecosystemMonitoringFramework;;no_research;Shell +https://github.com/boris-spas/elvis;Easy Line VISualizer ;no_research;HTML +https://github.com/boris-spas/EMFConfigurationXmlForPharo;;no_research; +https://github.com/boris-spas/GitProjectGetter;;no_research;Java +https://github.com/boris-spas/languageEmbed;;no_research;Java +https://github.com/boris-spas/latex-makefile;Makefile wrapper around latexmk.;no_research;Makefile +https://github.com/boris-spas/perun;;no_research;Shell +https://github.com/boris-spas/poll;Bash script that polls a file or directory content and executes a given command if a change has occurred.;no_research;Shell +https://github.com/boris-spas/polyglotMemeGenerator;;no_research;Java +https://github.com/boris-spas/prettymd;A scriptable .md file pretty printer using GraalVM;no_research;Java +https://github.com/boris-spas/simpleParallelBash;;no_research;Shell +https://github.com/bptlab/active-chor-js;Extension of chor-js for blockchain-based active choreographies;no_research;JavaScript +https://github.com/bptlab/argos;Documentation for the Argos project.;no_research;JavaScript +https://github.com/bptlab/argos-backend;This is the repository for the argos backend server. The server controls and serves product, event type and event data for an event dashboard. It requires an Event Processing Platform, eg. Unicorn;no_research;Java +https://github.com/bptlab/argos-frontend;;no_research;JavaScript +https://github.com/bptlab/ark_automate;An open source RPA tool which uses BPMN to create bots.;no_research;JavaScript +https://github.com/bptlab/ark_automate_local;Execute robots build with ark_automate locally;no_research;JavaScript +https://github.com/bptlab/awesome-master-thesis;A curated list of awesome master thesis related things;no_research;TeX +https://github.com/bptlab/blockchain-choreography;Tamper proof collaborative modelling of choreograpy models based on distributed ledger technology.;no_research;TypeScript +https://github.com/bptlab/blockchain-deferred-choice;;no_research;JavaScript +https://github.com/bptlab/bookshelf-docs;;no_research;JavaScript +https://github.com/bptlab/bookshelf-frontend;;no_research;TypeScript +https://github.com/bptlab/bpi-challenge-2020;The purpose of this repository is to maintain code and text produced to analyze this year's BPI Challenge.;no_research;Jupyter Notebook +https://github.com/bptlab/bpic19;;no_research;Python +https://github.com/bptlab/bpm2019ws-fcm-compliance;Checking Compliance in Data-Driven Case Management;no_research; +https://github.com/bptlab/bpstruct;Archived code from old google code project;no_research;Java +https://github.com/bptlab/bpt-docker-zoo;Docker-compose file to easily deploy bpt lab applications Gryphon, Unicorn and Chimera;no_research;Smarty +https://github.com/bptlab/bpt-iot-website;;no_research;HTML +https://github.com/bptlab/bpt-resource-management;Automatically exported from code.google.com/p/bpt-resource-management;no_research;HTML +https://github.com/bptlab/caz;Generic adapter to handle communication between Unicorn and Third Party APIs;no_research;JavaScript +https://github.com/bptlab/cepta;CEPTA - Complex Event Processing Transportation Analysis;no_research;Java +https://github.com/bptlab/chimera;Chimera: Execution Engine for Case Management;no_research;JavaScript +https://github.com/bptlab/chimera-webservice-mock;Mocked Service to test Chimera Webservice Activitites;no_research; +https://github.com/bptlab/chor-checker;TLAplus based model checking framework for choreographies;no_research;TypeScript +https://github.com/bptlab/chor-checker-frontend;Frontend for the choreography model checking framework;no_research;JavaScript +https://github.com/bptlab/chor-js;An editor for BPMN 2.0 choreography diagrams based on bpmn-js;no_research;JavaScript +https://github.com/bptlab/chor-js-demo;A demo showcasing the chor-js BPMN 2.0 choreography diagram modeler.;no_research;JavaScript +https://github.com/bptlab/conceptual-bot-backend;;no_research;TypeScript +https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;;research;Jupyter Notebook +https://github.com/bptlab/correlation-analysis;"Code for the master thesis ""Deriving Decisive Case Characteristics in Process Performance Analysis"" by Jonas Beyer";no_research;Java +https://github.com/bptlab/data-based-process-variant-analysis;;no_research;Jupyter Notebook +https://github.com/bptlab/ds2020-data-driven-case-management-compliance;;no_research; +https://github.com/bptlab/fCM-Collection;A collection of fCM models;no_research; +https://github.com/bptlab/fCM-design-support;Modeling Tool with Design-Time Support for Fragment-Based Case Management;no_research;JavaScript +https://github.com/bptlab/fCM-Engine;An Execution Engine for fragment-based Case Management (fCM) based on Access/CPN;no_research;Java +https://github.com/bptlab/fCM-query-generator;;no_research;Vue +https://github.com/bptlab/fcm2cpn;;no_research;Java +https://github.com/bptlab/fiber2xes;This project contains a python utility intended to use EHR data coming from fiber to create .xes event logs.;no_research;Python +https://github.com/bptlab/gryphon;web-based modeler based on bpmn.io for fCM case models (to be executed by https://github.com/bptlab/chimera);no_research;HTML +https://github.com/bptlab/holistic-process-platform;A BPMN-based platform that combines BPMS and RPA.;no_research;Vue +https://github.com/bptlab/lola-webservice;A web service wrapper for LoLA 2.0 (Low-Level Analyzer for petri nets);no_research;PHP +https://github.com/bptlab/mantichor-corda;Corda R3 adapter for the Mantichor choreography framework ;no_research;Kotlin +https://github.com/bptlab/mantichor-frontend;Frontend for the Mantichor choreography framework;no_research;Vue +https://github.com/bptlab/mantichor-share;;no_research;TypeScript +https://github.com/bptlab/mantichor-tezos;Tezos adapter for the Mantichor choreography framework ;no_research;TypeScript +https://github.com/bptlab/MdRPA_Library;;no_research;RobotFramework +https://github.com/bptlab/mimic-log-extraction;A CLI tool for extracting event logs out of MIMIC Databases.;no_research;Python +https://github.com/bptlab/model-driven-RPA;Master Project 2023 | Model-driven RPA Bot Development;no_research;HTML +https://github.com/bptlab/odea-light;The purpose of this repository is to provide and maintain code to quantify, interpret, and configure ontology-based event abstraction for process mining.;no_research;Python +https://github.com/bptlab/onto-rpa-frontend;;no_research;Vue +https://github.com/bptlab/onto-rpa-platform;A meta repository for the components of the conceptual bot platform;no_research; +https://github.com/bptlab/orion;;no_research;Python +https://github.com/bptlab/relationships-between-change-patterns;;research;Jupyter Notebook +https://github.com/bptlab/rembrandt;A resource organization and resource usage optimization platform.;no_research;JavaScript +https://github.com/bptlab/rembrandt-backend;The back end for the Rembrandt Resource-Management-Platform.;no_research;TypeScript +https://github.com/bptlab/rembrandt-frontend;The front end for the Rembrandt Resource-Management-Platform.;no_research;Vue +https://github.com/bptlab/rpa-dmn-operation;This repo contains examples how DMN can be integrated in RPA tools.;no_research;C# +https://github.com/bptlab/scylla;Extensible BPMN process simulator;research;Java +https://github.com/bptlab/scylla-ui;UI visualizing results of the BPMN process simulator Scylla;no_research;TypeScript +https://github.com/bptlab/subscription-point-visualizer;Visualizes subscription points in bpmn choreography diagrams.;no_research;JavaScript +https://github.com/bptlab/TracEX;;no_research; +https://github.com/bptlab/Unicorn;Unicorn Event Processing Platform;no_research;Java +https://github.com/bptlab/wiki-resources;;no_research;JavaScript +https://github.com/BraunTom/AdventOfCode2018;My solutions for the advent of code 2018;no_research;Go +https://github.com/BraunTom/adventOfCode2019;My solutions to the advent of code 2019 written in ocaml to learn the language;no_research;Python +https://github.com/BraunTom/CodeBrowser;;no_research;Smalltalk +https://github.com/BraunTom/config-migration;;no_research;Python +https://github.com/BraunTom/DistributedDataManagement;;no_research;Java +https://github.com/BraunTom/dotfiles;;no_research;Shell +https://github.com/BraunTom/GameJam5;Our awesome game for the 5th HPI game jam;no_research;GDScript +https://github.com/BraunTom/githubIssueScript;;no_research;JavaScript +https://github.com/BraunTom/IDE;;no_research;JavaScript +https://github.com/BraunTom/OSVM-GC-insights;A simple tool to visualize and give GC infos;no_research;Smalltalk +https://github.com/BraunTom/RiscVPlugin;;no_research;Smalltalk +https://github.com/BraunTom/Snippets;;no_research;Smalltalk +https://github.com/BraunTom/SqueakMultiDesktopSystem;;no_research;Smalltalk +https://github.com/BraunTom/SqueakMultiHighlighting;Highlights all text similar to the currently selected;no_research;Smalltalk +https://github.com/BraunTom/test-dotfiles;;no_research;Shell +https://github.com/BraunTom/TRUETurnTurnTurn;;no_research;GDScript +https://github.com/BraunTom/Typetalk;Optional typing for Smalltalk;no_research;Smalltalk +https://github.com/BraunTom/vm-portal-test;;no_research;Puppet +https://github.com/brettcannon/basicenum;Simple(r) enums;no_research;Python +https://github.com/brettcannon/brettcannon;;no_research;Python +https://github.com/brettcannon/caniusepython3;Can I Use Python 3?;no_research;Python +https://github.com/brettcannon/character-frequency;Calculate the character frequencies from files;no_research;Rust +https://github.com/brettcannon/check-for-changed-files;Action to check that PRs have changed certain files;no_research;TypeScript +https://github.com/brettcannon/cpython-wasi-build;Unofficial WASI builds of CPython;no_research; +https://github.com/brettcannon/cpython-wasi-buildbot;CPython WASI buildbot;no_research;Dockerfile +https://github.com/brettcannon/defy-layout-scorer;;no_research;Python +https://github.com/brettcannon/desugar;Unravelling Python source code;no_research;Python +https://github.com/brettcannon/dotconfig;My collection of configuration files;no_research;Vim script +https://github.com/brettcannon/dotfiles;;no_research;Shell +https://github.com/brettcannon/find-duplicate-files;Find duplicate files recursively in one or more directories;no_research;Go +https://github.com/brettcannon/flatten_filenames;Flatten filenames;no_research;Rust +https://github.com/brettcannon/free-labour;Calculate your open source contributions;no_research;Python +https://github.com/brettcannon/importlib;Packaging for importlib from Python 2.7 for the Cheeseshop/PyPI;no_research;Python +https://github.com/brettcannon/microvenv;A minimal re-implementation of Python's `venv` module;no_research;Python +https://github.com/brettcannon/mnfy;Minify Python code;no_research;Python +https://github.com/brettcannon/modutil;A library for working with Python modules;no_research;Python +https://github.com/brettcannon/mousebender;Create reproducible installations for a virtual environment from a lock file;no_research;HTML +https://github.com/Buguemar/buguemar;;no_research; +https://github.com/Buguemar/DataMining;Tareas_varias;no_research;Jupyter Notebook +https://github.com/Buguemar/GRTC_GNNs;Public repository of our paper accepted to the Findings of EMNLP 2023: Graph Representations for Text Classification Using GNNs: Exploring Advantages and Limitations.;research;Jupyter Notebook +https://github.com/Buguemar/ML;tareas ñanculef;no_research;Jupyter Notebook +https://github.com/Buguemar/NNTarea0;;no_research;Jupyter Notebook +https://github.com/Buguemar/NNTarea3;;no_research;Jupyter Notebook +https://github.com/Buguemar/PIIC19;Public repository of our works in Exoplanet analysis with Deep Learning;no_research;Jupyter Notebook +https://github.com/Buguemar/Poster;Auxiliar;no_research;Jupyter Notebook +https://github.com/Buguemar/ProyectoIA-BEP;Proyecto final para Inteligencia Articial, Elizabeth Montero;no_research;C++ +https://github.com/Buguemar/ProyectoML;Poster, presentación magister;no_research;Jupyter Notebook +https://github.com/Buguemar/SIMAHcomp;Public repository of our 1st place work at the SIMAH competition held at ECML-PKDD 2019;no_research;Jupyter Notebook +https://github.com/Buguemar/Tarea1ML;Desde cero juampi;no_research;Jupyter Notebook +https://github.com/Buguemar/tarea1_Redes;;no_research; +https://github.com/Buguemar/Tarea2ML;Clasificadores en sklearn, fronteras, LDA/QDA/PCA, hiper parámetros.;no_research;Jupyter Notebook +https://github.com/Buguemar/Tarea3ML;Métodos No-Lineales;no_research;Jupyter Notebook +https://github.com/Buguemar/TEST;git commands;no_research; +https://github.com/Buguemar/TransForE;Introducimos Transformer For Ensemble (TransForE), un método basado en Transformer para trabajar problemas de clasificación de texto de múltiples clases con un fuerte desequilibrio de etiquetas a fin de combinar el aprendizaje de múltiples modelos base a partir de las salidas de ellos, así como el texto mismo, en una especie de máquina de ensamblado parametrizada cuyo propósito es mejorar, o al menos mantener, la eficacia de los modelos base utilizados. TransForE utiliza los conocidos módulos de auto-atención de múltiples cabezales, propio de Transformer, con el propósito de aprender a combinar las múltiples componentes de entrada. ;no_research;Jupyter Notebook +https://github.com/Buguemar/Transformer_as_ensemble;"Public repository of paper "" Learning to combine classifiers outputs with the transformer for text classification""";no_research;Jupyter Notebook +https://github.com/buzem/augmentedreality;TUM Augmented Reality course Exercises implemented using OpenCV in C++;no_research;C++ +https://github.com/buzem/cmpe250Projects;Data Structures & Algorithms Course Projects during my undergrad;no_research;C++ +https://github.com/buzem/DuplicateFinder-Python-;python project finding duplicate files/directory ;no_research;Python +https://github.com/buzem/i2dl;Assignments for TUM Deep Learning course;no_research;Jupyter Notebook +https://github.com/buzem/Image-SuperResolution;Image SuperResolution Task using Autoencoder for CV4RS;no_research;Jupyter Notebook +https://github.com/buzem/inspectra-web-app;React app for creating data collectors on APIs;no_research;JavaScript +https://github.com/buzem/inzpeech;Speaker Identification Project;no_research;Jupyter Notebook +https://github.com/buzem/PokeDex;a simple React app implemented as an interview task;no_research;JavaScript +https://github.com/buzem/QT-Project-Calculator;;no_research;C++ +https://github.com/buzem/simulation;Homework, simulation of a call center. Python, simpy, jupyter.;no_research; +https://github.com/buzem/ToLLVM-Interpreter;C++ project, interpreter for arithmetic operations to LLVM code;no_research;Python +https://github.com/buzem/urlShortenerJar;;no_research;Java +https://github.com/buzem/vision-projects;Computer Vision Homeworks using OpenCV in Python during my undergrad;no_research;Jupyter Notebook +https://github.com/C-8/BID-Robot-Driving-with-Sensor-Analysis;;no_research;C++ +https://github.com/C-8/UI--bung-3;;no_research;C++ +https://github.com/c0rnyc0rny/JenkinsDemo;;no_research;Java +https://github.com/c0rnyc0rny/reflections;;no_research; +https://github.com/c0rnyc0rny/WeatherTUT;Learn Android;no_research; +https://github.com/calclavia/Achievement-Block;A block designed for servers to designated specific achievements.;no_research; +https://github.com/calclavia/Adfly-Drupal-Module;;no_research;PHP +https://github.com/calclavia/Calclavia-Mod-Pack;Calclavia Pack is a custom mod pack used on Calclavia's server.;no_research; +https://github.com/calclavia/CoupleTones;;no_research;Java +https://github.com/calclavia/DeepJ;A deep learning model for style-specific music generation.;research;Python +https://github.com/calclavia/dependency-resolver;;no_research;JavaScript +https://github.com/calclavia/Download-Counter-Drupal-Module;;no_research;PHP +https://github.com/calclavia/Electrodynamics;Electrodynamics is a voxel game mod that features realistic, world-based technology advancement systems.;no_research;Scala +https://github.com/calclavia/Evolution-Experiment;;no_research;Scala +https://github.com/calclavia/gym-music;An implementation of music theory reinforcement learning rewards based on Magent's RL Tuner;no_research;Python +https://github.com/calclavia/htm-tensorflow;An implementation of Numenta's HTM algorithm in Tensorflow.;no_research;Python +https://github.com/calclavia/ICBM-Classic;The classic version of the ICBM mod.;no_research;JavaScript +https://github.com/calclavia/Jenkins-Viewer;;no_research;PHP +https://github.com/calclavia/Jest-TypeScript-Example;;no_research;TypeScript +https://github.com/calclavia/Minecraft-Catalog;;no_research;PHP +https://github.com/calclavia/Mod-Pack-Installer;Some simple scripts to easily install mod packs for lazy people.;no_research;Shell +https://github.com/calclavia/NOS;Neural optimizer search based on https://arxiv.org/pdf/1709.07417.pdf;research;Python +https://github.com/calclavia/Performer-Pytorch;"Pytorch implementation of Performer from the paper ""Rethinking Attention with Performers"".";research;Python +https://github.com/calclavia/relay-generator;The architecture used to train the level generator in the game Relay.;no_research;Python +https://github.com/calclavia/rl;Reinforcement learning algorithms implemented using Keras and OpenAI Gym;no_research;Python +https://github.com/calclavia/Simple-Forum;An open source simple forum system.;no_research;PHP +https://github.com/calclavia/story-generation;Code for Improving Neural Story Generation by Targeted Common Sense Grounding;research;Python +https://github.com/calclavia/Subsites-Module;A Drupal Subsite module that allows sub-sites to be built within one site.;no_research;PHP +https://github.com/calclavia/tal-asrd;Code for the Paper Speech Recognition and Multi-Speaker Diarization of Long Conversations;research;Python +https://github.com/calclavia/Triton-Transformer;;no_research;Python +https://github.com/calclavia/Voltz-Mod-Pack;The Voltz mod pack consists various mods that uses the Universal Electricity API as well as some mods that are compatible with Universal Electricity. The pack consists of various tech mods that uses a standardized electricity system, brining technology and exciting possibilities into Minecraft.;no_research;Shell +https://github.com/calclavia/WordPress-UE-Theme;A theme for WordPress, originally made for Universal Electricity.;no_research;CSS +https://github.com/calebglawson/baquet;A library to make analyzing associations between Twitter users easier for humans.;no_research;Python +https://github.com/calebglawson/cecil;API that makes analyzing Twitter user relationships easier for humans. Relies heavily on baquet.;no_research;Python +https://github.com/calebglawson/detweeted;Delete low engagement tweets automatically.;no_research;Python +https://github.com/calebglawson/folgmeg;A tool to (hopefully) increase your Twitter audience.;no_research;Python +https://github.com/calebglawson/poke-mango;Small site showcasing my ability to utilize multiple CSS and JS frameworks.;no_research;JavaScript +https://github.com/calebglawson/rippl;Streaming Reddit Submission Downloader;no_research;Go +https://github.com/calebglawson/ruidl;Reddit Media Downloader;no_research;Python +https://github.com/calebglawson/tumblr-deepdive;This project is archived, code is only for reference and will not be updated.;no_research;Python +https://github.com/calebglawson/twint-sklearn-twitter-classifier;Classify twitter users into in-group, out-group based on stats and machine learning.;no_research;Jupyter Notebook +https://github.com/calebglawson/twublr;A CLI Tool to Unblock Twitter Accounts.;no_research;Python +https://github.com/calebglawson/word-pair;Java Code playing around with Markov Chains for synthesizing strings.;no_research;Java +https://github.com/carlaterboven/air_quality_sensing;Management of local air quality measurements with low cost sensors in Potsdam (Germany).;no_research;Python +https://github.com/carlaterboven/listen_to_air_pollution;Sonification of air pollution data;no_research;Jupyter Notebook +https://github.com/carlaterboven/simulated_scripted_exposure_study;This repository is used for a simulated scripted exposure study in Potsdam. The aim of the study is to assess air quality using sonification. The study design should ensure robust air quality values and good comparability during the study.;no_research;HTML +https://github.com/caustt/DYOD_SoSe21;;no_research;C++ +https://github.com/caustt/HWR_using_GAN;;no_research;Shell +https://github.com/caustt/sedp_exercise6;;no_research;C +https://github.com/cbjrobertson/data_share;;no_research;R +https://github.com/cbjrobertson/ftr_classifier;future time reference classification in english, dutch, and german;no_research;Python +https://github.com/cbjrobertson/ftr_questionnaire_master;this repo contains the master copy of the FTR elicitation questionnaire;no_research;Python +https://github.com/cbjrobertson/llm_chat;;no_research;Python +https://github.com/cbjrobertson/pulley_experiments;;no_research;Jupyter Notebook +https://github.com/cbjrobertson/pulley_materials;;no_research;TeX +https://github.com/cbjrobertson/tensorflow_docker_image;A docker image that installs tensorflow correctly with GPU enabled;no_research;Dockerfile +https://github.com/cdlm/bibhtmlize;Generating an HTML sorted publications list from BibTeX;no_research;Ruby +https://github.com/cdlm/citezen-st;;no_research;Smalltalk +https://github.com/cdlm/corten;Bare metal, protected by Rust;no_research;Rust +https://github.com/cdlm/daleks-gdx;Simple starter libGDX desktop game project;no_research;Java +https://github.com/cdlm/dicimate;Recording statistics of playing dice;no_research;Ruby +https://github.com/cdlm/docker-texlive;Docker images for TeXlive and reproduceable book builds;no_research;Makefile +https://github.com/cdlm/emacs.d;Emacs configuration files;no_research;Emacs Lisp +https://github.com/cdlm/fari.sh;fari.sh — fresh, ready-to-hack Pharo images;no_research;Shell +https://github.com/cdlm/github-travis-latex;;no_research;Ruby +https://github.com/cdlm/homebrew-custom;Micellaneous Homebrew recipes;no_research;Ruby +https://github.com/cdlm/infrastructure;My config files, shell scripts, & other convenience stuff;no_research;Vim script +https://github.com/cdlm/isodoc;A LaTeX class for the preparation of letters and invoices, by Wybo Dekker.;no_research;Ruby +https://github.com/cdlm/jot;Article style and template for the Journal of Object Technology (JOT);no_research;TeX +https://github.com/cdlm/kata-adventure;A simple text-mode adventure game, as an OO design & Java programming exercise.;no_research;Java +https://github.com/cdlm/kata-battleship;A simple battleship game, as a Java programming and OO design exercise.;no_research;Java +https://github.com/cdlm/kata-borrow;Tracking borrowed things, as an OO design & Java programming exercise.;no_research;Java +https://github.com/cdlm/kata-networksimulation;A simple LAN model, as a Java programming and OO design exercise.;no_research;Java +https://github.com/cdlm/kata-shoppingcart;Shopping cart and pricing policies, as an OO design & Java programming exercise.;no_research;Java +https://github.com/cdlm/kata-sorting;Java programming exercise: experimental validation of the complexity of sorting algorithms;no_research;Java +https://github.com/cdlm/kata-uno;Uno card game rule checker, as an OO design & Ruby programming exercise;no_research;Ruby +https://github.com/cdlm/latex-with-style;A few pieces of advice for LaTeX users, to help them prepare documents with better typography, streamline their writing workflow, and write maintainable LaTeX code.;no_research; +https://github.com/cdlm/okay-st;Object validations for Pharo;no_research;Smalltalk +https://github.com/cdlm/pharo-carcassonne;An object-oriented implementation of Carcassonne;no_research;Smalltalk +https://github.com/cdlm/pharo-commandlineparser;Command-line interfaces for Pharo;no_research;Smalltalk +https://github.com/cdlm/pharo-katas;Pharo programming katas and examples;no_research;Smalltalk +https://github.com/cdlm/pharo-storm;Small game framework and FFI bindings to Chipmunk2D physics library;no_research;Smalltalk +https://github.com/cdlm/poisson-surface.rs;Rust experiment: Poisson point distribution;no_research;Rust +https://github.com/cdlm/publications;My publications (PDFs & BibTeX file);no_research;TeX +https://github.com/cdlm/sbabook;Layout & typography for LaTeX books using the memoir document class;no_research;TeX +https://github.com/cdlm/st-st;SmallTest — SmallTalk unit tests, from scratch;no_research;Smalltalk +https://github.com/cdlm/stringstrungstrong;Support code for a study of API methods;no_research;Smalltalk +https://github.com/cdlm/today;a CLI productivity tracker in Ruby;no_research;Ruby +https://github.com/cenguix/github-slideshow;A robot powered training repository :robot:;no_research;HTML +https://github.com/cenguix/hello-world;Hello World;no_research; +https://github.com/cenguix/Text2KGBench;Repo ISWC-2023 Tekgen Corpus Submission;research;Jupyter Notebook +https://github.com/cenguix/udemy-heroes;Esto es un repositorio de prueba de Udemy;no_research; +https://github.com/cfbolz/lean-carddisjointunion;;no_research;Lean +https://github.com/cfbolz/lean-classequation;;no_research;Lean +https://github.com/cfbolz/minitrace;experiments in building tiny tracing JITs in various languages (Prolog to start);no_research;Prolog +https://github.com/cfbolz/pypy-15-blog;;no_research; +https://github.com/cfbolz/syntaxerrors;A pure Python module to produce better SyntaxErrors;no_research;Python +https://github.com/cfbolz/unipycation-shared;;no_research; +https://github.com/chrisseaton/benchmark-probe;;no_research;Ruby +https://github.com/chrisseaton/build-graalvm-complete;Build a complete GraalVM;no_research;Ruby +https://github.com/chrisseaton/bundler-failure;;no_research;Ruby +https://github.com/chrisseaton/c1visualizer;;no_research;Java +https://github.com/chrisseaton/checklinks;Checklinks finds broken or redirected links in a static webpage;no_research;Ruby +https://github.com/chrisseaton/chrisseaton;;no_research; +https://github.com/chrisseaton/cspassword;CSPassword, originally known as Password Safe, legacy binary releases only;no_research; +https://github.com/chrisseaton/dfscala;Dataflow parallelism for Scala;no_research;Scala +https://github.com/chrisseaton/dfscala-benchmarks;Benchmarks for DFScala;research;Scala +https://github.com/chrisseaton/dfscala-scope;Visualiser tool for DFScala applications;no_research;JavaScript +https://github.com/chrisseaton/eclipse-mirror;A mirror of Eclipse binaries;no_research; +https://github.com/chrisseaton/graal-graph-archive;An archive of Graal graphs;no_research;Ruby +https://github.com/chrisseaton/igv;;no_research;Java +https://github.com/chrisseaton/katahdin;A programming language where the syntax and semantics are mutable at runtime;no_research;C# +https://github.com/chrisseaton/low-overhead-polling-ruby;Low Overhead Polling For Ruby;research;C +https://github.com/chrisseaton/rhizome;A JIT for Ruby, implemented in pure Ruby;no_research;Ruby +https://github.com/chrisseaton/ruby-stm-lee-demo;A demonstration of STM in Ruby using the Lee benchmark;no_research;Ruby +https://github.com/chrisseaton/stamp;A mirror of the Stanford Transactional Applications for Multi-Processing;no_research;C +https://github.com/chrisseaton/struct-blog-post;Ruby Objects as C Structs and Vice Versa;no_research;C +https://github.com/chrisseaton/yeomanry-handbook;;no_research;TeX +https://github.com/christianadriano/BayesianClassifiers_ProfessionCategories;Classification of subjects professions using Bayesian Random Forest and Bayesian Logistic Regression;no_research;R +https://github.com/christianadriano/bayesianStudies;Scripts created to compute posterior probabilities ;no_research;R +https://github.com/christianadriano/CD_FaultUnderstanding_CausalDiscovery;Explore causal models for the accuracy of fault understanding;no_research;R +https://github.com/christianadriano/Complexity_Metrics;Computes different complexity metrics, Halstead, LOCs, Cyclomatic Complexity, etc.;no_research;Java +https://github.com/christianadriano/crowd-debug-firefly;Infrastructure to crowdsource software debugging by means of a question and answer approach.;no_research;Java +https://github.com/christianadriano/crowd-debug-qa;Experimentation with crowd debugging via questions and answers;no_research;JavaScript +https://github.com/christianadriano/CR_DeepLearning_CausalRobustness;Investigating approaches to prevent confounding in deep networks;no_research; +https://github.com/christianadriano/dataWrangling;Utility functions and examples of data wrangling;no_research;R +https://github.com/christianadriano/DE_TimeSeriesAnalysis;Tests for stationarity using R and Python libraries;no_research;Jupyter Notebook +https://github.com/christianadriano/DS_Graph_Metrrics;Descriptive statistics based on graphs metrics;no_research;Python +https://github.com/christianadriano/DW_Microtasks;Data wrangling scripts to preprocess data from crowdsourced microtasks;no_research;Python +https://github.com/christianadriano/DW_ScalaScripts;Processing various datasets from Self-driving accidents and crowdsourcing tasks;no_research;Scala +https://github.com/christianadriano/GM_TaskDurations_GaussianMixtures;Expectation Maximization to build Gaussian mixture models of the duration of task executions.;no_research;R +https://github.com/christianadriano/luciola;data visualization for crowd fault localization data;no_research;Python +https://github.com/christianadriano/luciola-utility;Project to study how utility theory to match workers to answers with the goal minimizing the number of questions asked in order to locate faults. This is my first attempt to model the problems of when to stop asking questions as a sequential decision problem.;no_research;Java +https://github.com/christianadriano/MachineLearningAlgorithms;Basic algorithms I have been playing with;no_research;Matlab +https://github.com/christianadriano/MarkovChains_DiscreteContinuous;;no_research; +https://github.com/christianadriano/MarkovChain_TaskSequencing;Markov Chain model to prioritize tasks (fault localization questions to ask a crowd of programmers));no_research;R +https://github.com/christianadriano/MB_FaultUnderstanding_MultiArmedBandits;Explore different designs of Multi-Armed Bandits, mostly Contextual Bayesian Bandits;no_research;R +https://github.com/christianadriano/miniature-garbanzo;Daily coding practice, programming tips, best practices, etc.;no_research;Jupyter Notebook +https://github.com/christianadriano/ML_BayesianLearningExperiments;Comparative experiments with various Bayesian learning methods;no_research;R +https://github.com/christianadriano/ML_DataDrivenControl;Exploring Machine Learning Control for Dynamical Nonlinear Systems;no_research;Python +https://github.com/christianadriano/ML_FaultUnderstanding;Replication of experiments, Descriptive statistics (ANOVA, Chi2square, Wilcoxon, Power calculations), Correlation Analysis (Kendall-tau), Predictive models (logistic regression). Goal is to investigate the factors that impact the accuracy of fault understanding. The analyzed factors are attributes of programmers (profession, year of experience) and tasks (duration, confidence).;no_research;R +https://github.com/christianadriano/ML_FeatureEngineering;Select features by doing correlation analysis, PCA, decision trees, and information entropy;no_research;R +https://github.com/christianadriano/ML_QuestionUtility;Rank questions by utility, which is used to prioritize which questions to ask;no_research;R +https://github.com/christianadriano/ML_SelfHealingUtility;Learning utility function used to select self-healing actions on distributed software components;no_research;R +https://github.com/christianadriano/ML_VotingAggregation;Learn the parameters to enable to predict worker consensus produced by voting.;no_research;HTML +https://github.com/christianadriano/ModelLoader;Loads PMML models generated in R;no_research;Java +https://github.com/christianadriano/MonteCarloSimulation;Performs MonteCarlo Simulations different answer sets obtained through crowdsourcing unit test failures;no_research;Python +https://github.com/christianadriano/NLP_FaultUnderstandigExplanations;Experiments on the effects on bug fixing in presence of fault understanding explanations - ranking and categorizing explanations (probably using some topic modeling approach);no_research; +https://github.com/christianadriano/PCA_AquacultureSystem;Principal Component Analysis of Aquaculture Systems;no_research;Jupyter Notebook +https://github.com/christianadriano/photinus;Redesign of CrowdDebug tool with 4 template questions and a new answering mechanism;no_research;Java +https://github.com/christianadriano/photinus-analytics;Various data analytics on the answers collected from hundreds of programmers about the relationship between a software failure and source code fragment. Part of these data analyzes as discussed in a journal paper.;no_research;HTML +https://github.com/christianadriano/predictWorkerConfidenceDifficulty;Build decision trees and random forest to predict the confidence and difficulty of answers given features such as worker skill, profession and code size and complexity;no_research;R +https://github.com/christianadriano/ProgramAnalysis;Implementations of static analysis algorithms (e.g., constant propagation and zero CFA).;no_research;Java +https://github.com/christianadriano/programmerDemographics;Analysis and visualizations of demographics of software programmers;no_research;HTML +https://github.com/christianadriano/QuestionDesign4CrowdDebugging;Pilot experiments made to understand how different phrasing for questions impact how people identify bugs in source code;no_research; +https://github.com/christianadriano/ReqEngResearch;Research on Requirements Engineering;no_research; +https://github.com/christianadriano/RL_4_SelfHealingSystems;Template algorithms;no_research;Jupyter Notebook +https://github.com/christianadriano/scaling-octo-waffle;Study how normalizations and transformations affect various distributions;no_research; +https://github.com/christianadriano/SEWORLD-Statistics;Statistics about the SEWORLD moderation process;no_research;Java +https://github.com/christianadriano/sidewalk_service_statistics;Analysis of sidewalk service statistics in the city of Sao Paulo - Brazil;no_research;R +https://github.com/christianadriano/SQL_Scripts;SQL practice scripts;no_research;R +https://github.com/christianadriano/sububi;Simple Prototype to Handle Teacher Substitution;no_research;JavaScript +https://github.com/christianadriano/TS_BayesianStructuralTimeSeries;;no_research;R +https://github.com/christianwarmuth/christianwarmuth;;no_research; +https://github.com/christianwarmuth/explainable-predictive-process-monitoring-with-text;On the Potential of Textual Data for Explainable Predictive Process Monitoring (ICPM 2022);research;Jupyter Notebook +https://github.com/christianwarmuth/heterogeneous_pc_algorithm;Heterogeneous Computing for Constraint-Based Causal Structure Learning;no_research;Cuda +https://github.com/christianwarmuth/neurogaze;Neurodesign Eyetracking Research - Research Toolkit and Exploratory Research of Usage Patterns of Different Software Applications ;no_research;Python +https://github.com/christianwarmuth/openhpi-generative-ai-slides;"Materialien zum openHPI Online-Kurs ""ChatGPT: Was bedeutet generative KI für unsere Gesellschaft?""";no_research; +https://github.com/christianwarmuth/openhpi-kipraxis;"Materialien zum openHPI Online-Kurs ""Künstliche Intelligenz und Maschinelles Lernen in der Praxis""";no_research;Jupyter Notebook +https://github.com/christianwarmuth/transformer_adapter_bias_evaluation;Natural Language Processing HPI SS 2021;no_research;Jupyter Notebook +https://github.com/christianwarmuth/treatment-based-patient-discharge-classification;Patient Discharge Classification based on the Hospital Treatment Process (ICPM 2021);research;Jupyter Notebook +https://github.com/chumer/bf;Brainf*ck interpreter;no_research;Brainfuck +https://github.com/chumer/learntoprogram_prototype;;no_research;JavaScript +https://github.com/chumer/pedemo;;no_research;Java +https://github.com/chumer/test;;no_research; +https://github.com/ClFeSc/isec-scanner;;no_research;Shell +https://github.com/cmfcmf/a-thing;;no_research;HTML +https://github.com/cmfcmf/Anno2018;Rewriting Anno 1602 from scratch by using extracted assets from the original game.;no_research;TypeScript +https://github.com/cmfcmf/Anno2018-godot;Rewriting Anno 1602 from scratch, using extracted assets from the original game.;no_research;GDScript +https://github.com/cmfcmf/Anno2018-js;This is now at;no_research;HTML +https://github.com/cmfcmf/Buzzer;Code for the buzzer used at @fsr-de.;no_research;C++ +https://github.com/cmfcmf/cmfcmf;;no_research; +https://github.com/cmfcmf/ColumnWidthCalculator;"Calculate ""perfect"" table column widths in PHP";no_research;PHP +https://github.com/cmfcmf/com_zikulaauth;Experimental integration between Joomla and Zikula;no_research;PHP +https://github.com/cmfcmf/docusaurus-search-local;Offline / Local Search for Docusaurus v2. Try it live at:;no_research;JavaScript +https://github.com/cmfcmf/embedded-nodejs-example;;no_research;C++ +https://github.com/cmfcmf/ESP-Test;;no_research;C++ +https://github.com/cmfcmf/EventManagerTheme;A Zikula Theme based on Google Material Design and Bootstrap, designed for the EventManager module. It is not intended to be used on other sites.;no_research;JavaScript +https://github.com/cmfcmf/ic-pinout-diagram-generator;Generate beautiful pinout diagrams for integrated circuits.;no_research;TypeScript +https://github.com/cmfcmf/MagicMouse;A webbrowser for Squeak using Chrome/Chromium. Not to be confused with a highly innovative pointing device.;no_research;Smalltalk +https://github.com/cmfcmf/MaterialAppBar;A Navbar based on the Google Material Design App Bar.;no_research;CSS +https://github.com/cmfcmf/Mod;;no_research;HTML +https://github.com/cmfcmf/modellbahn;Eine Sammlung von Hardware und Software, die ich auf meiner Modelleisenbahnanlage verwende.;no_research;G-code +https://github.com/cmfcmf/node-serialport-arm-binaries;Pre-built bindings can be found at;no_research;Shell +https://github.com/cmfcmf/notion-addon;An Unofficial Notion Addon for Gmail, Google Calendar and Google Drive;no_research;JavaScript +https://github.com/cmfcmf/OAuthModule;"An OAuth implementation for Zikula. ""Login with Google!""";no_research;PHP +https://github.com/cmfcmf/OpenWeatherMap-PHP-API;A PHP API to parse weather data and weather history from OpenWeatherMap.org.;no_research;PHP +https://github.com/cmfcmf/PDFModule;A helper module to generate PDFs and Qrcodes using the TCPDF library.;no_research;PHP +https://github.com/cmfcmf/PDFTheme;PDFTheme to be used with the PDFModule.;no_research;PHP +https://github.com/codefrau/alto50;;no_research;Smalltalk +https://github.com/codefrau/codefrau;My GitHub Profile;no_research; +https://github.com/codefrau/ContrAltoJS;ContrAltoJS Javascript Xerox Alto Emulator;no_research;JavaScript +https://github.com/codefrau/etoys-plugin-launcher;Launcher page for Etoys browser plugin;no_research; +https://github.com/codefrau/foo;;no_research; +https://github.com/codefrau/gymprogress;Gym Progress Tracker for Pokémon GO;no_research;JavaScript +https://github.com/codefrau/image-writer-mac;Mac tool to write disk images to SD card or USB;no_research;Python +https://github.com/codefrau/microverse;;no_research;JavaScript +https://github.com/codefrau/microverse-neon;testing microverse deployment;no_research;JavaScript +https://github.com/codefrau/parcel-bundler;;no_research;JavaScript +https://github.com/codefrau/PebbleONE;A Highly Readable Pebble Watch Face;no_research;C +https://github.com/codefrau/piradio;MPD and AirPlay client for Raspberry Pi Touchscreen;no_research;Python +https://github.com/codefrau/PoGOBoards;Pokemon GO Leaderboards for Discord;no_research;Python +https://github.com/codefrau/remotepi;;no_research;Shell +https://github.com/codefrau/Smalltalk78;A Smalltalk-78 VM in Javascript;no_research;Smalltalk +https://github.com/codefrau/SqueakJS;A Squeak VM in Javascript;no_research;JavaScript +https://github.com/codefrau/TutorOverlay;;no_research;Swift +https://github.com/codefrau/xrguildhall;XR Guild Hall (under development);no_research;JavaScript +https://github.com/codeZeilen/amoebaOnBochs;Amoeba on Bochs;no_research; +https://github.com/codeZeilen/cocu;The Compact Cucumber Formatter showing only what you really need.;no_research;Ruby +https://github.com/codeZeilen/DAV-smalltalk;A Smalltalk implementation of WebDAV and CalDAV;no_research;Smalltalk +https://github.com/codeZeilen/ForthLisp;A lisp written in Forth. Currently only the parser is working;no_research;Forth +https://github.com/codeZeilen/got-things-done;A tool showing what you got done on Wunderlist during the previous week;no_research;HTML +https://github.com/codeZeilen/ical-smalltalk;Mirror of http://squeaksource.com/ical;no_research;Smalltalk +https://github.com/codeZeilen/mafo-app;The mobile application to display the program of the Mannheim Forum;no_research;JavaScript +https://github.com/codeZeilen/mere-test-repo;a test repo;no_research;Smalltalk +https://github.com/codeZeilen/pre-chat-gpt-badge;A browser plugin that adds badges to SO content created before the ChatGPT release.;no_research;JavaScript +https://github.com/codeZeilen/Scheduler;A Squeak/Smalltalk task scheduler;no_research;Smalltalk +https://github.com/codeZeilen/SMailDir;An object-oriented maildir interface;no_research;Smalltalk +https://github.com/codeZeilen/SmalltalkNTriples;A Squeak/Smalltalk parser for the N-Triples RDF serialization format.;no_research;Smalltalk +https://github.com/codeZeilen/wat;Wat are this? The wat CLI tool helps you find out what all the things in your Linux system are.;no_research;Python +https://github.com/codeZeilen/wat-pages;Documentation of names in unix file systems;no_research;Python +https://github.com/codeZeilen/weather;;no_research;Ruby +https://github.com/coreyryanhanson/choubenkyo_kivy_app;ChouBenkyo: Using neural networks to recognize Japanese drawing input. Training data collected by a practice app inspired by the Android app Obenkyo;no_research;Python +https://github.com/coreyryanhanson/ComfyQR;QR generation within ComfyUI. Contains nodes suitable for workflows from generating basic QR images to techniques with advanced QR masking.;no_research;Python +https://github.com/coreyryanhanson/ComfyQR-scanning-nodes;A set of ComfyUI nodes to quickly test generated QR codes for scannability. A companion project to ComfyQR.;no_research;Python +https://github.com/coreyryanhanson/dockerfiles;Dockerfiles for builds on https://hub.docker.com/u/coreyhanson/;no_research;Dockerfile +https://github.com/coreyryanhanson/hackthebay;My work on the Chesapeake Bay Water Quality Hackathon;no_research;Jupyter Notebook +https://github.com/coreyryanhanson/japanese_text_classifiers;Using neural networks to classify Japanese characters;no_research;Jupyter Notebook +https://github.com/coreyryanhanson/misc_information;A scratch repository, for miscellaneous responses to internet misinformation. An unorganized rebellion to the post truth era. Projects here will be as ephemeral as their causes (but much more grounded in reality) and organized by date.;no_research;Jupyter Notebook +https://github.com/coreyryanhanson/predicting_seasonal_vaccinations;Using machine learning classifcation algorithms to predict seasonal/h1n1 vaccinations.;no_research;Jupyter Notebook +https://github.com/coreyryanhanson/random_lumberjacks;A collection of handy data science classes and functions.;no_research;Python +https://github.com/coreyryanhanson/tanzania_water_project;Project for classification analysis;no_research;Jupyter Notebook +https://github.com/coreyryanhanson/y_u_no_swim;;no_research;Python +https://github.com/corinnaj/four_good;;no_research;Dart +https://github.com/corinnaj/HPI-Kochblog;A wordpress theme for the HPI student food blog.;no_research;PHP +https://github.com/corinnaj/lingolaunch;;no_research;JavaScript +https://github.com/corinnaj/museIX;An interactive media project developed using Processing;no_research;Processing +https://github.com/corinnaj/mysterious-murder;A simple murder mystery generator using Linear Logic as seen in Ceptre and MCTS-driven actors.;no_research;Python +https://github.com/corinnaj/names-js;A JS library to generate names based on the python library with the same name;no_research;JavaScript +https://github.com/corinnaj/plz;;no_research;HTML +https://github.com/corinnaj/PX-Regex;;no_research;Smalltalk +https://github.com/corinnaj/roll01;;no_research;Dart +https://github.com/corinnaj/suggestr;;no_research;Dart +https://github.com/cosminbasca/asciinet;wrapper over the ascii-graphs library for printing networkx graphs as ASCII.;no_research;Python +https://github.com/cosminbasca/asyncrpc;An http rpc library, providing a manager similar to the multiprocessing.Basemanager but with gevent support;no_research;Python +https://github.com/cosminbasca/cleanmymac;simple command line utility to clean my mac ;no_research;Python +https://github.com/cosminbasca/cysparql;CySparql is a python wrapper over the excellent rasqal RDF library for parsing SPARQL queries;no_research;Python +https://github.com/cosminbasca/ellipsedetector;"The project offers an implementation of the Randomized Hough Transform for Ellipse Detection, as described in the Basca et al. article (1). (1) Cosmin A. Basca, Mihai Talos and Remus Brad, Randomized Hough Transform for Ellipse Detection with Result Clustering, Proceedings of IEEE EUROCON 2005, The International Conference on ""Computer as a Tool"", vol. II, pp.1397-1400, Belgrade Serbia November 2005, ISBN 1-4244-0049-X, http://remus.ulbsibiu.ro/publications/papers/eurocon2005.pdf";research;Java +https://github.com/cosminbasca/jvmrdftools;simple scala wrappers for various rdf tools;no_research;Scala +https://github.com/cosminbasca/rdftools;simple collection of python RDF tools ;no_research;Python +https://github.com/cosminbasca/simplehttp;a simplistic extender of the simpleframework's api in scala ;no_research;Scala +https://github.com/cosminbasca/sparqlclient;a scala port of the excellent SPARQLWrapper python module;no_research;Scala +https://github.com/cosminbasca/surfrdf;SuRF: a python Object RDF Mapper (ORM).;no_research;Python +https://github.com/cstancu/closure-compiler-native-image;Quick test repo for the closure-compiler.;no_research;Shell +https://github.com/cstancu/issue-template-test;;no_research; +https://github.com/cstancu/native-image-service-loader-demo;Simple demo project for using ServiceLoader with GraalVM native-image.;no_research;Java +https://github.com/cstancu/netty-native-demo;Instant Netty startup using GraalVM's Native Image Generation;no_research;Java +https://github.com/ctiedt/bfrs;A brainfuck/Blub interpreter in Rust;no_research;Rust +https://github.com/ctiedt/cranefuck;;no_research;Rust +https://github.com/ctiedt/ctiedt;;no_research; +https://github.com/ctiedt/documentor;Einfaches Dokumentationstool, das ursprünglich für Rogue Inc. gedacht war. Generiert API-Dokumentationen aus Python-Code.;no_research;Python +https://github.com/ctiedt/dotfiles;My dotfiles for linux;no_research;Shell +https://github.com/ctiedt/dwm;My personal patched dwm;no_research;C +https://github.com/ctiedt/dwmstat-rs;;no_research;Rust +https://github.com/ctiedt/egui_wasm_editor;;no_research;Rust +https://github.com/ctiedt/fibonacci;;no_research;Rust +https://github.com/ctiedt/flutter_md_slides;;no_research;Dart +https://github.com/ctiedt/greenscream;;no_research;TypeScript +https://github.com/ctiedt/hpi-mathe2;Ein Versuch, das Skript zur Vorlesung 'Mathematik II' am Hasso-Plattner-Institut zugänglicher zu machen.;no_research;TeX +https://github.com/ctiedt/hpi_lv_crawler;;no_research;Python +https://github.com/ctiedt/influx_client;A Rust library to interact with InfluxDB;no_research;Rust +https://github.com/ctiedt/interruptable_function;;no_research;Rust +https://github.com/ctiedt/kanban_flutter;A simple kanban board built using flutter;no_research;Dart +https://github.com/ctiedt/make-rs;;no_research;Rust +https://github.com/ctiedt/mathe-vorkurs;Notizen zum Mathe-Vorkurs am HPI WS2018/19;no_research;HTML +https://github.com/ctiedt/meeting-notifier;;no_research;Rust +https://github.com/ctiedt/minimal-rust-km;A minimal kernel module using Rust;no_research;Makefile +https://github.com/ctiedt/ramfs-loadable-module;The ramfs file system with comments as a loadable kernel module;no_research;C +https://github.com/ctiedt/rasta-rs;;no_research;Rust +https://github.com/ctiedt/rasta-sys;;no_research;Rust +https://github.com/ctiedt/retry;;no_research;Rust +https://github.com/ctiedt/revpi-tools-rs;;no_research;C +https://github.com/ctiedt/rogue-inc;Informatikprojekt Q4 2018 von Felix Bachstein, Clemens Tiedt und Jonas Tresper;no_research;Python +https://github.com/ctiedt/rsramfs;A Rust Port of the ramfs file system;no_research;Rust +https://github.com/ctiedt/service_levels;;no_research;Rust +https://github.com/ctiedt/sonic-nodes;;no_research;Rust +https://github.com/ctiedt/steam_crawler;;no_research;Rust +https://github.com/ctiedt/studypoints;An app to help overcome procrastination;no_research;Dart +https://github.com/ctiedt/swsl;;no_research; +https://github.com/ctiedt/tangible_soundscape;;no_research;Rust +https://github.com/ctiedt/temperature-example;;no_research;Rust +https://github.com/ctiedt/tome;;no_research;Rust +https://github.com/ctiedt/vcost-prototypes;;no_research;Python +https://github.com/ctiedt/voronoi;A simple Voronoi implementation in Rust;no_research;Rust +https://github.com/ctiedt/vosk-voice-assistant;;no_research;Python +https://github.com/ctiedt/wrapgen;;no_research;Rust +https://github.com/DamienCassou/2011-dslrob-diaspec;;no_research;Java +https://github.com/DamienCassou/2021-01-github-actions-karma;https://github.com/actions/virtual-environments/issues/2605;no_research;JavaScript +https://github.com/DamienCassou/asciidoctor-diamonded;Thème Asciidoctor pour les articles des Editions Diamond.;no_research;HTML +https://github.com/DamienCassou/AUCTeX;AUCTeX is an extensible package for writing and formatting TeX files in GNU Emacs and XEmacs.;no_research;Emacs Lisp +https://github.com/DamienCassou/auth-source-pass;Integrate Emacs' auth-source with password-store;no_research;Emacs Lisp +https://github.com/DamienCassou/autocrlf;learning experience;no_research; +https://github.com/DamienCassou/bcel;Emacs user interface to navigate Basecamp 3;no_research; +https://github.com/DamienCassou/beginend;Emacs package to redefine M-< and M-> for some modes;no_research;Emacs Lisp +https://github.com/DamienCassou/carldavel;Integrate external tools to manage your contacts and calendars;no_research;Emacs Lisp +https://github.com/DamienCassou/checkhealth;Some experiment to check that a controlled website is running;no_research;JavaScript +https://github.com/DamienCassou/core-js-issue-1133;Reproduce issue #1133 in core-js;no_research;JavaScript +https://github.com/DamienCassou/cypress-changing-servers-pingpong;;no_research;JavaScript +https://github.com/DamienCassou/cypress-webpack-dev-server-bugs;Reproduce bugs with @cypress/webpack-dev-server;no_research;JavaScript +https://github.com/DamienCassou/damien.cassou.me;My website;no_research;CSS +https://github.com/DamienCassou/DamienCassou;;no_research; +https://github.com/DamienCassou/desktop-environment;Helps you control your GNU/Linux computer from Emacs;no_research;Emacs Lisp +https://github.com/DamienCassou/dired-du;Dired with recursive directory sizes;no_research;Emacs Lisp +https://github.com/DamienCassou/dired-imenu;Emacs mode that integrates imenu in dired so you can easily jump to any file in the current buffer;no_research;Emacs Lisp +https://github.com/DamienCassou/discontinued-emacs-async;DISCONTINUED -- Execute emacs lisp command asynchronously;no_research;Emacs Lisp +https://github.com/DamienCassou/dslchapter;;no_research;Emacs Lisp +https://github.com/DamienCassou/DSLides;A DSL to create slides written in Common Lisp;no_research;Common Lisp +https://github.com/DamienCassou/elcouch;Emacs interface to view and manipulate CouchDB databases;no_research;Emacs Lisp +https://github.com/DamienCassou/emacs-pcomplete-plugins;Some plugins for Emacs pcomplete mechanism;no_research;Emacs Lisp +https://github.com/DamienCassou/emacs.d;Emacs configuration directory;no_research;Emacs Lisp +https://github.com/daniel-wer/accessible-nas-audio-web-client;An accessible web client to use the Synology NAS Audio Station.;no_research; +https://github.com/daniel-wer/grit-test;;no_research;Python +https://github.com/daniel-wer/grit-test-mirror;;no_research; +https://github.com/daniel-wer/picture-generator;;no_research;JavaScript +https://github.com/daniel-wer/troen-website;Website for the Troen game, GameProgramming seminar WS13/14 at HPI;no_research;JavaScript +https://github.com/danielblignaut/Battleships;Google App engine & python battleships API;no_research;Python +https://github.com/danielblignaut/boston-housing-prices;Use Python;no_research; +https://github.com/danielblignaut/catalog;;no_research;Python +https://github.com/danielblignaut/charity-ml;Udacity Machine learning Project 2;no_research;HTML +https://github.com/danielblignaut/customer-segments;Udacity Customer segments Machine Learning Project;no_research;Jupyter Notebook +https://github.com/danielblignaut/ddpg-teach-a-quadcopter-to-fly;Use a Deep Deterministic Policy Gradient to teach a quadcopter how to fly;no_research;Jupyter Notebook +https://github.com/danielblignaut/dog-breed-cnn-classifier;An example of using Keras to create a dog breed classifier using a CNN with some added web sugar.;no_research;HTML +https://github.com/danielblignaut/lunatic-http-client;;no_research;Rust +https://github.com/danielblignaut/movie-trailer-application;;no_research;Python +https://github.com/danielblignaut/openai-gym-taxi-V2;an example showcasing Q-learning to solve the open AI taxi problem;no_research;Python +https://github.com/danielblignaut/rust_wasm_playground;;no_research;Rust +https://github.com/danielblignaut/tournament-results;Udacity Project 2;no_research;Python +https://github.com/danielblignaut/udacity-thesis-ltsm-rnn-for-twitter-sentiment-analysis;A project analysing various NLP techniques for sentiment analysis and proposing an implementation of a Long Term Short Memory RNN model.;no_research;Jupyter Notebook +https://github.com/danijar/bookmarks-switcher;Chrome plugin to select which bookmarks folder to show as the bookmarks bar;no_research;JavaScript +https://github.com/danijar/bridgewalk;Visual reinforcement learning benchmark for controllability;no_research;Python +https://github.com/danijar/chunkedfile;Save file writes into multiple chunks;no_research;Python +https://github.com/danijar/cloudpath;Extend pathlib to GCS, S3, HDFS via TensorFlow's GFile;no_research;Python +https://github.com/danijar/computer-game;Data-oriented voxel game engine;no_research;C++ +https://github.com/danijar/conny;Recurrent neural network implementation targeted towards evaluating new topologies;no_research;Python +https://github.com/danijar/console-game;simple game running in the console;no_research;C++ +https://github.com/danijar/course-cv-munich;Programming assignments for the TU Munich Computer Vision course;no_research;Matlab +https://github.com/danijar/course-machine-intelligence-2;;no_research;Jupyter Notebook +https://github.com/danijar/course-ml-fuberlin;;no_research;Python +https://github.com/danijar/couse-ml-stanford;Programming assignments for the Stanford Machine Learning course by Andrew Ng;no_research;Matlab +https://github.com/danijar/cowherd;Partially-observed visual reinforcement learning domain;no_research;Python +https://github.com/danijar/crafter;Benchmarking the Spectrum of Agent Capabilities;research;Python +https://github.com/danijar/crafter-baselines;Docker containers of baseline agents for the Crafter environment;no_research;Python +https://github.com/danijar/danijar;;no_research; +https://github.com/danijar/daydreamer;DayDreamer: World Models for Physical Robot Learning;research;Jupyter Notebook +https://github.com/danijar/definitions;Load and validate YAML definitions against a schema;no_research;Python +https://github.com/danijar/design-templates;common css and js designs for reuse;no_research;JavaScript +https://github.com/danijar/diamond_env;Standardized Minecraft Diamond Environment for Reinforcement Learning;research;Python +https://github.com/danijar/director;Deep Hierarchical Planning from Pixels;no_research;Python +https://github.com/danijar/dotfiles;My Linux and Mac configuration;no_research;Perl +https://github.com/danijar/dreamer;Dream to Control: Learning Behaviors by Latent Imagination;research;Python +https://github.com/danijar/dreamerv2;Mastering Atari with Discrete World Models;research;Python +https://github.com/danijar/dreamerv3;Mastering Diverse Domains through World Models;research;Python +https://github.com/danijar/elements;Building blocks for productive research;research;Python +https://github.com/danijar/embodied;Fast reinforcement learning research;research;Python +https://github.com/danijar/genetic-transmitter-distribution;Find transmitter tower distribution by an evolutional algorithm for an university exercise;no_research;Java +https://github.com/danijar/handout;Turn Python scripts into handouts with Markdown and figures;no_research;Python +https://github.com/danijar/imptools;Tools for improving Python imports;research;Python +https://github.com/danijar/inline-markdown;Type Markdown and see it getting formated in the same window at realtime;no_research;JavaScript +https://github.com/danijar/invoicepad;Freelancer solution covering time tracking, invoice generation and archiving;no_research;JavaScript +https://github.com/danijar/jumper;Platformer and puzzle solving game written in Python;no_research;Python +https://github.com/danijar/layered;Clean implementation of feed forward neural networks;research;Python +https://github.com/danijar/link-notes;Connect your notes with each other to represent the flow your brain works like;no_research; +https://github.com/danijar/map-pdf;Generate printable PDF documents from Leaflet maps;no_research;JavaScript +https://github.com/danijar/mechanical-simulation;Mechanical simulation for the interactive floor.;no_research; +https://github.com/danijar/mindpark;Testbed for deep reinforcement learning;no_research;Python +https://github.com/danijar/modurale;Modular real time engine for computer graphics applications;no_research;CMake +https://github.com/danijar/ninjax;General Modules for JAX;no_research;Python +https://github.com/danijar/notebook-big-data;;no_research;Jupyter Notebook +https://github.com/danijar/notebook-neural-network;;no_research;Python +https://github.com/danijar/npgame;Write simple games in Numpy!;no_research;Python +https://github.com/danijar/organic-grid-terrain-2d;smoothing of 2d grid shapes by bezier curves;no_research;C# +https://github.com/danijar/sap-database-analysis;Find implicit inheritance relations between tables in large database schemata;no_research;C +https://github.com/danijar/semantic;;no_research;Python +https://github.com/danijar/seminar-knowledge-mining;Wikimedia image classification and suggestings for article authors;no_research;Python +https://github.com/danijar/sets;Read datasets in a standard way;no_research;Python +https://github.com/danijar/sfml-application-frame;Starting point for application using SFML where the dependency is automated for you;no_research;C++ +https://github.com/danijar/swa-game-assets;;no_research; +https://github.com/danijar/tensorsets;Standard datasets for TensorFlow.;no_research;Python +https://github.com/danijar/training-cpp;My solutions to programming puzzles;no_research;C++ +https://github.com/danijar/training-ml;;no_research;Python +https://github.com/danijar/training-py;My solutions to programming puzzles;no_research;Python +https://github.com/danijar/util;Functions that should be in the Python standard library;no_research; +https://github.com/danijar/vizbot;The project has been renamed to;no_research; +https://github.com/danijar/voxel-smoothing-2d;Orientation independent bézier smoothing of voxel grids;no_research;C++ +https://github.com/danijar/web-audio-clock;Simple website that plays a click sound every second;no_research;JavaScript +https://github.com/danijar/word-storm;Write word lists sorted by first letter for brainstorming and brain training;no_research;PHP +https://github.com/danijar/youtube-images;Get high resolution YouTube thumbnail of the current video from context menu;no_research;JavaScript +https://github.com/danijar/zerofun;Remote function calls for array data using ZMQ;no_research;Python +https://github.com/DanP1925/AgileRails;;no_research;Ruby +https://github.com/DanP1925/AndroidTVSpike;;no_research;Kotlin +https://github.com/DanP1925/AsesoriaMujer;;no_research;PHP +https://github.com/DanP1925/Chancon;Hackatrix2017;no_research;Java +https://github.com/DanP1925/DogSpike;;no_research;Kotlin +https://github.com/DanP1925/ExamplesCrackTCI;;no_research;Python +https://github.com/DanP1925/ForeignCurrencyTest;;no_research;Kotlin +https://github.com/DanP1925/HCIMeal;;no_research; +https://github.com/DanP1925/HiltExpo;;no_research;Kotlin +https://github.com/DanP1925/KoinSpike;;no_research;Kotlin +https://github.com/DanP1925/LearningPath;;no_research; +https://github.com/DanP1925/LrcParseSpike;;no_research;Kotlin +https://github.com/DanP1925/MediaRecorderSpike;;no_research;Kotlin +https://github.com/DanP1925/MeetupVideoArch;;no_research;Kotlin +https://github.com/DanP1925/MVVMCopyV2;Playing with Mvvm;no_research;Kotlin +https://github.com/DanP1925/MvvmGoogleCopy;;no_research;Kotlin +https://github.com/DanP1925/ProyectoConciliacion;;no_research;HTML +https://github.com/DanP1925/PruebaAbrir;;no_research;C++ +https://github.com/DanP1925/PruebaLaPositiva;Repositorio para la prueba tecnica del proceso de selección;no_research;Python +https://github.com/DanP1925/PruebaUnrealUMG;;no_research; +https://github.com/DanP1925/reto1-web;;no_research;HTML +https://github.com/DanP1925/SentiStrengthScrapper;;no_research;Python +https://github.com/DanP1925/ShimmerLayoutSpike;Testing the shimmer layout library from facebook;no_research; +https://github.com/DanP1925/slackAppTest;Testing ruby-slack-client;no_research;Ruby +https://github.com/DanP1925/SlackBotTest;;no_research;Ruby +https://github.com/DanP1925/SpikeRinggarooTesting;;no_research;Kotlin +https://github.com/DanP1925/Tesis;;no_research;Python +https://github.com/DanP1925/TesisPreprocesor;;no_research;Python +https://github.com/DanP1925/TestFastlane;;no_research;Ruby +https://github.com/DanP1925/ToDo-Agenda;;no_research;JavaScript +https://github.com/DanP1925/ToDo-Agenda-Original;;no_research;Java +https://github.com/DanP1925/TweetScrapper;;no_research;Python +https://github.com/DanP1925/WEWLC_Resumes;;no_research; +https://github.com/DanP1925/ZaraApp;;no_research;Kotlin +https://github.com/Dassderdie/db-frontend;(Archived) Web-frontend of an easy-to-use database management system;no_research;TypeScript +https://github.com/Dassderdie/economy-mocup;A mockup app for UX-testing and screenshoots;no_research;TypeScript +https://github.com/Dassderdie/highcharts-editing-performance-demo;;no_research;TypeScript +https://github.com/Dassderdie/ngx-utility-libraries;An small collection of some angular utilities;no_research;TypeScript +https://github.com/Dassderdie/scavenger-hunt-hidden;This package is intended to be included as a hidden flag in fun scavenger hunts in node applications.;no_research;JavaScript +https://github.com/Dassderdie/synchronized-sax-gandalf;Synchronize youtube-videos (nearly) frame accurate on different devices;no_research;TypeScript +https://github.com/DavidSchroschk/codedaddies_list;;no_research;Python +https://github.com/DavidSchroschk/django-movie-web-app;;no_research;HTML +https://github.com/DavidSchroschk/django_blogging_app;;no_research;JavaScript +https://github.com/DavidSchroschk/django_movie_app;;no_research;Python +https://github.com/DavidSchroschk/google-maps-challenge;;no_research;JavaScript +https://github.com/DavidSchroschk/kraken_practise;;no_research;HTML +https://github.com/DavidSchroschk/To-Do-List-App;;no_research;Python +https://github.com/DavidSchroschk/todo_app_flask;;no_research;HTML +https://github.com/defo10/CodeSamples; the folders flutter and backend-Node both contain code of my own personal app project. bachelor_excerpt contains a tiny excerpt of the code I wrote for my ongoing bachelor thesis.;no_research;Dart +https://github.com/defo10/communico-app;;no_research;Dart +https://github.com/defo10/convex-hull;Calculates the convex hull of a given set of points.;no_research;Dart +https://github.com/defo10/HabitTracker-Udacity-defo10;initial release;no_research;Java +https://github.com/defo10/Inventory-Udacity;finally finished :-);no_research;Java +https://github.com/defo10/Newz-Udacity;first step - not ready;no_research;Java +https://github.com/defo10/pain-app;;no_research;Clojure +https://github.com/defo10/pain-app-webview;Web view of pain forms;no_research;TypeScript +https://github.com/defo10/QuizofThrones-Udacity;;no_research;Java +https://github.com/dineshreddykdp/csv_price_date;natural gas daily price;no_research;Jupyter Notebook +https://github.com/dineshreddykdp/GrphGraphMeasures;GrphGraphMeasures;no_research;Java +https://github.com/dineshreddykdp/Predicting-Flight-Delays;;no_research;HTML +https://github.com/dougxc/ast;Assembly Structuring Tool;no_research;PostScript +https://github.com/dougxc/github-api-clients;Miscellaneous scripts using the GitHub API.;no_research;Python +https://github.com/dougxc/jdk-sourcer;Builds a src.zip containing *all* the sources in the JDK.;no_research;Shell +https://github.com/dougxc/maxine;Metacircular Java VM (originally at https://kenai.com/hg/maxine~maxine);no_research;Java +https://github.com/dougxc/mx_jdk;Mx configuration for developing https://github.com/openjdk/jdk.git;no_research;Python +https://github.com/dougxc/patch-jdk-service;;no_research;Java +https://github.com/dougxc/proguard-demo;;no_research;Shell +https://github.com/dougxc/SecureSquawk3G;;no_research;Java +https://github.com/dougxc/skvm;Secure KVM project;no_research;C +https://github.com/dougxc/Squawk3G;;no_research;Java +https://github.com/dougxc/SquawkIR;;no_research;Java +https://github.com/dougxc/SquawkNG;;no_research;Java +https://github.com/dougxc/SquawkVM;;no_research;Java +https://github.com/dougxc/test-graal-jvmci-8;;no_research;C++ +https://github.com/dougxc/testlabelcheck;testing how protected branches work with required labels;no_research; +https://github.com/dzautner/13-angels;delay vowel synth for the Monome Norns;no_research;SuperCollider +https://github.com/dzautner/daniel-zautner-dna;My raw DNA;no_research; +https://github.com/dzautner/dashboard;;no_research;Go +https://github.com/dzautner/dzautner.com;photos, posts, articles ;no_research;HTML +https://github.com/dzautner/ebay-category-aspects-scraper;Scrape ended listings in a given eBay category on a given eBay site and enrich the listings with all the category's aspects;no_research;Python +https://github.com/dzautner/grafana-cookbook;A chef cookbook for grafana (A Graphite Dashboard and Graph Editor);no_research;Ruby +https://github.com/dzautner/JSDecorators;Python like decorators in Javascript with pseudo operator overloading.;no_research;JavaScript +https://github.com/dzautner/json-repository-query;Query like syntax to filter repositories represented in JSON;no_research;JavaScript +https://github.com/dzautner/jsPipe;Implementing pipes in Javascript using psudo operator overloading;no_research;JavaScript +https://github.com/dzautner/lichess-transformers;A repository for training a transformer-based model on Lichess games dataset to generate creative new chess games.;no_research;Python +https://github.com/dzautner/lost-futures;Bass synth for the Monome Norns inspired by the TB-303;no_research;Lua +https://github.com/dzautner/roman-coin-ruler-classification-cnn;Classify the ruler on an Imperial Roman Coin based on the coin's description using a CNN built on tensorflow. ;no_research;Python +https://github.com/dzautner/Sel;A compiler for thin Symbolic Expressions abstraction layer over Lambda calculus.;no_research;JavaScript +https://github.com/dzautner/SieveOfEratosthenes;;no_research;JavaScript +https://github.com/dzautner/sprites_on_the_fly;generate spritemaps dynamically ;no_research;Python +https://github.com/dzautner/statscraft;;no_research;CSS +https://github.com/educatorsRlearners/an-a-z-of-machine-learning;My blog for refining my thinking and understanding of machine learning topics. ;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/aoc_2021;Repo for Advent of Code 2021;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/book-maturity;Using webscraping, NLP, XGBoost, LSTM, and computer vision to identify the maturity level of a book to improve recommendations.;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/cefr-generator;Create original English texts from A2 - C2 levels via transfer learning;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/datasets;Accompanying datasets and code for my blog.;no_research;R +https://github.com/educatorsRlearners/decision-trees-and-random-forest;Materials for the lesson delivered on May 28, 2020;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/educatorsRlearners;My personal repo;no_research; +https://github.com/educatorsRlearners/full_code_from_blogs;Full code for my Medium posts;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/hugging_face_course;My notes for the Hugging Face Course;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/minicomp;DSR Rossman Challenge ;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/podrevday;In progress project designed to analyze the growth of #PodRevDay. Stay tuned;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/snscrape_demo;;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/text-maturity-app;Web app which predicts the minimum age of a reader for a given book.;no_research;Python +https://github.com/educatorsRlearners/time_to_exposure;Identify the time it takes children to get to a specific exposure of a word;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/trees_forests_boosts;;no_research;Jupyter Notebook +https://github.com/educatorsRlearners/What-statistics-test-should-I-run;Program which guides the user through the process of deciding which statistical test they should run. ;no_research;Python +https://github.com/educatorsRlearners/YouTube-promotion;Program for scraping YouTube and using that information to promote on Twitter.;no_research;Jupyter Notebook +https://github.com/ekrebs5/squeak_demo_repo;;no_research;Smalltalk +https://github.com/emsbach/probability-and-computing-solutions;Probability and Computing (Second Edition). Michael Mitzenmacher, Eli Upfal;no_research;TeX +https://github.com/emsbach/SICP;Structure and Interpretation of Computer Programs;no_research;Racket +https://github.com/ephe-meral/adventofcode;Collected solutions to adventofcode.com challenges 💻;no_research;Elixir +https://github.com/ephe-meral/asn;IP-to-AS-to-ASname lookup for Elixir ;no_research;Elixir +https://github.com/ephe-meral/barbell_exercise_ml;;no_research;HTML +https://github.com/ephe-meral/biomimicry;Articles on biomimicry for machine intelligence;no_research;Jupyter Notebook +https://github.com/ephe-meral/cascor;:books: Notebooks on the Cascade-Correlation Learning Architecture;no_research;Jupyter Notebook +https://github.com/ephe-meral/codenames;:robot: NLP driven codenames-like game, as PWA;no_research;JavaScript +https://github.com/ephe-meral/colors;:microscope: Helper for the color blind (and eye dropper for designers) - as PWA;no_research;JavaScript +https://github.com/ephe-meral/dotfiles;Personal configuration files;no_research;Vim script +https://github.com/ephe-meral/ephe-meral;Github Profile README :);no_research; +https://github.com/ephe-meral/EventAggregator-CSharp;A lightweight C# reference implementation of the event aggregator design-pattern;no_research;C# +https://github.com/ephe-meral/ex_sider;Elixir <-> Redis datastructure adapter;no_research;Elixir +https://github.com/ephe-meral/genesis;A playground for an online sci-fi novel. In german.;no_research;Makefile +https://github.com/ephe-meral/halcyon;A happy, sunny maths playground.;no_research;Rust +https://github.com/ephe-meral/hhmm;Articles on Hierarchical Hidden Markov Models;no_research; +https://github.com/ephe-meral/kiss;A simple theme for hugo.;no_research;CSS +https://github.com/ephe-meral/Layering-CSharp;A reference implementation of the Layering-Pattern in OOD, written in C#.;no_research;C# +https://github.com/ephe-meral/mac;MAC-to-vendor search for Elixir;no_research;Elixir +https://github.com/ephe-meral/novel;An online novel theme for hugo.;no_research;CSS +https://github.com/ephe-meral/pwa-quick-start;Template for PWAs using OnsenUI and Create-React-App;no_research;JavaScript +https://github.com/ephe-meral/roles;:bulb: Role-play driven self reflection, as PWA;no_research;JavaScript +https://github.com/ephe-meral/slick-query-debug;Debug project for slick queries;no_research;Scala +https://github.com/ephe-meral/the_lottery;Bitcoin Lottery;no_research;JavaScript +https://github.com/ephe-meral/wstunnel-heroku;Websocket tunnel for Heroku;no_research;JavaScript +https://github.com/eregon/actions-shell;;no_research;Ruby +https://github.com/eregon/adventofcode;My solutions in Ruby to http://adventofcode.com/;no_research;Ruby +https://github.com/eregon/all-ruby-benchmarks;All the Ruby benchmarks I could find;no_research;Ruby +https://github.com/eregon/app2engine;Ease the conversion of a Rails 3 app in an Engine;no_research;Ruby +https://github.com/eregon/benchmark-interface;One Ruby benchmarking interface to rule them all;no_research;Ruby +https://github.com/eregon/benchmarkable;One Ruby benchmarking interface to rule them all;no_research;Ruby +https://github.com/eregon/Classes;Some Ruby classes which might be useful;no_research;Ruby +https://github.com/eregon/clean-path;;no_research;JavaScript +https://github.com/eregon/cobots;my repository for whyday 2010;no_research;Ruby +https://github.com/eregon/epath;Moved to https://github.com/eregon/path;no_research; +https://github.com/eregon/flamegraphs;A repository to host interactive flamegraphs;no_research; +https://github.com/eregon/homebrew-mozart2;Homebrew formulae for installing mozart2;no_research;Ruby +https://github.com/EricSchuMa/bilevel-rl;This repository holds code for a bilevel meta-gradient reinforcement learning variant of DQN: the Intrinsic Reward Deep Q-Network (IRDQN).;no_research;Python +https://github.com/EricSchuMa/Crystal;;no_research; +https://github.com/EricSchuMa/dotfiles;;no_research;Shell +https://github.com/EricSchuMa/ExtendedNetwork;This project holds code for the Extended Network, PHOG and Pointer-Mixture network.;no_research;C++ +https://github.com/EricSchuMa/hpi-ddm-wild-catz;;no_research;Java +https://github.com/EricSchuMa/PYOLO;A python version of YOLOv3;no_research;Jupyter Notebook +https://github.com/EricSchuMa/reward-design-TSC;"Code for the paper ""Challenges in Reward Design for Reinforcement Learning-based Traffic Signal Control: An Investigation using a CO2 Emission Objective""";no_research;Python +https://github.com/EricSchuMa/SMBA-SentimentAnalysis;Sentiment Analysis on Womens E-Commerce clothing;no_research;Jupyter Notebook +https://github.com/ErikBrendel/BrendeErRPG;An RPG-Library to create simple games;no_research;Java +https://github.com/ErikBrendel/btm;Fast Parallel BiTerm Topic Model implementation;no_research;C++ +https://github.com/ErikBrendel/CommentQualityPlugin;;no_research;Java +https://github.com/ErikBrendel/FuzzySort;;no_research;Java +https://github.com/ErikBrendel/GameServer;A Server in NodeJs that is capable of running multiple online multiplayer games;no_research;CoffeeScript +https://github.com/ErikBrendel/jetbrains-splash;;no_research;Python +https://github.com/ErikBrendel/LD35;Markus Brand and Erik Brendel are creating a game for LudumDare 35;no_research;Java +https://github.com/ErikBrendel/LudumDare;Ludum Dare Repository;no_research;Java +https://github.com/ErikBrendel/mvmm;Multi-View-Modularity-Metrics masters thesis and paper;no_research;Python +https://github.com/ErikBrendel/mvmm-graphs;core data structures for mvmm analysis, written in c++ for performance;no_research;C++ +https://github.com/ErikBrendel/ProgressiveImageEditor;"The ""Progressive Image editor"" (or short PIE) is a programm to edit images in a non-destructive way";no_research;Java +https://github.com/ErikBrendel/SqueakMessagesCategorizer;;no_research;Smalltalk +https://github.com/ErikBrendel/threeDefault;Default framework for THREE.js - applications;no_research;CoffeeScript +https://github.com/ErikBrendel/ubuntuTricks;a collection of useful things for linux-/ubuntu-users;no_research;Python +https://github.com/ErikBrendel/ui5-api-ts;This projects queries the official UI5 API and creates TypeScript declarations based on that, so that you IDE can support you writing UI5 JS code;no_research;Python +https://github.com/ErikBrendel/UkuleleSheet;my personal collection of ukulele songs with chords and lyrics;no_research;TeX +https://github.com/ErikBrendel/UnknownReborn;The ultimate best ever RPG of the World;no_research;Java +https://github.com/erksch/3D-object-tracking;;no_research;Python +https://github.com/erksch/federated-ner;;no_research;Python +https://github.com/erksch/federated-ner-js-worker;;no_research;JavaScript +https://github.com/erksch/fnet-pytorch;Unofficial PyTorch implementation of Google's FNet: Mixing Tokens with Fourier Transforms. With checkpoints.;research;Python +https://github.com/erksch/ios-headset-record;;no_research;Swift +https://github.com/erksch/react-native-wheely;An all JavaScript wheel picker for react-native without any native code.;no_research;TypeScript +https://github.com/erksch/react-navigation-fabric-issue-reproducer;;no_research;Java +https://github.com/erksch/react-smart-payment-buttons;React integration for PayPal Smart Payment Buttons;no_research;JavaScript +https://github.com/erksch/waymo-open-dataset-viewer;A WebGL viewer for pointclouds of the Waymo Open Dataset ;no_research;TypeScript +https://github.com/ezio-melotti/htmlparser-bench;Tools to benchmark the performances of CPython's html.parser.HTMLParser;no_research;Python +https://github.com/ezzarghili/aradict;Open Source Arabic word dictionary for Information Technology;no_research; +https://github.com/ezzarghili/ezmo;personal blog;no_research; +https://github.com/ezzarghili/ezmo.org;;no_research; +https://github.com/ezzarghili/jouncy-java-core;Jouncy java core libraries;no_research; +https://github.com/ezzarghili/jouncy-java-parent;Jouncy java libraries parent pom;no_research; +https://github.com/ezzarghili/mago;Go helpers related to Morocco;no_research;Go +https://github.com/ezzarghili/mirror;mirror;no_research; +https://github.com/ezzarghili/realip-go;User remote IP extractor for golang;no_research; +https://github.com/ezzarghili/recaptcha-go;Validate Google reCAPTCHA v2 & v3 form submission package in golang;no_research;Go +https://github.com/ezzarghili/reserved-keywords;a list of commonly reserved keywords used for system, subdomain, mailbox...;no_research; +https://github.com/ezzarghili/scratch-cacert;docker scratch image with ca-certificates.crt from ubuntu based images;no_research; +https://github.com/ezzarghili/testrlse;;no_research; +https://github.com/ezzarghili/xdev.ma;X Developer Marbles is my personal blog :);no_research;HTML +https://github.com/ezzarghili/xorq;Minimal xhr javascript library;no_research;JavaScript +https://github.com/falko/bpmn-conformer;Pluggable compatibility layer to make process engines more conform to the BPMN 2.0 specification;no_research;Java +https://github.com/falko/bpmn-extensions;Extension Elements and Attributes for BPMN 2.0;no_research;Shell +https://github.com/falko/camunda-docker-postgresql;Docker image with postgresql server installed for Jenkins CI builds;no_research;Makefile +https://github.com/falko/camunda-micronaut-kotlin-example;Micronaut Camunda -micronaut -kotlin -example Application;no_research;Kotlin +https://github.com/falko/kpm-interactive;;no_research;HTML +https://github.com/falko/omg-specifications;Specifications of the Object Management Group (OMG) in AsciiDoc format;no_research;XSLT +https://github.com/falko/sandbox;Space for testing ideas;no_research; +https://github.com/falko/tngp-simple-example;;no_research;Java +https://github.com/farquet/Minesweeper;A simple Minesweeper with only Java Swing native element. For Mac OSX. (Java);no_research;Java +https://github.com/farquet/QuizGenerator;Latex quiz parser. Rendering in an HTML form. (PHP, MySQL, HTML, JS);no_research;PHP +https://github.com/farquet/RxPlay;Making Rx work nice in Play! framework. (Scala);no_research;Scala +https://github.com/felix-mueller/invoice-box;;no_research;Java +https://github.com/felix-mueller/invoice-cmis;;no_research;Java +https://github.com/felix-mueller/plugin-examples-cockpit-kpi-overview-plugin;;no_research;JavaScript +https://github.com/Ferandal/BVGHack;;no_research;JavaScript +https://github.com/ferbsx/DemoBus_Specification_Editor;An online editor for DemoBus System's specifications (a home automation device).;no_research;HTML +https://github.com/ferbsx/Fifi;Hound Dog races data mining project;no_research;Java +https://github.com/ferbsx/Fungal-DeePaC;code and supplemantary materials for my Master's thesis;research;R +https://github.com/ferbsx/hello-world;My first repository on GitHub.;no_research; +https://github.com/ferbsx/meiaples;;no_research; +https://github.com/ferbsx/myfirstrepo;;no_research; +https://github.com/ferbsx/packing_lists;;no_research;HTML +https://github.com/ferbsx/Pizza;A public motivation site for whoever who needs inspiration to get some PIZZA!!! 😍 🍕;no_research;JavaScript +https://github.com/fhradilak/BIDFun;;no_research;C++ +https://github.com/fhradilak/hpi-epic;;no_research;Shell +https://github.com/Finn-HPI/ChargingParkPlacement;A collection of 3 heuristics for computing new charging park locations.;no_research;Jupyter Notebook +https://github.com/Finn-HPI/Geometric_Image_Styliziation;Interactive Geometric Image Stylization based on Space Partitioning;no_research;TypeScript +https://github.com/Finn-HPI/Interactive-Geometric-Image-Stylization-using-Bounding-Hierarchies;;no_research;TypeScript +https://github.com/Finn-HPI/SpatialNavigator;;no_research;JavaScript +https://github.com/Finnk11/meta-rl-for-sumo;;no_research;Python +https://github.com/florian-papsdorf/kip-company-acquisition;Modelling the company acquisition process with its knowledge-intensive nature;research; +https://github.com/fmannhardt/course-applied-processmining;Introduction to Applied Process Mining with Python and R notebooks.;no_research;Jupyter Notebook +https://github.com/fmannhardt/fmannhardt.de;My personal website & blog;no_research;HTML +https://github.com/fmannhardt/objectsize;Calculates the size of a Java object using JOL. Does not building the extra information on the object layout computed by JOL.;no_research;Java +https://github.com/fmannhardt/opencsv;Patched version of OpenCSV;no_research;Java +https://github.com/fmannhardt/pddp;Process Discovery with Differential Privacy;research;C# +https://github.com/fmannhardt/processmining-js;;no_research; +https://github.com/fmannhardt/starter-predictive-process-monitoring;Project structure and initial code for predictive process monitoring with PM4Py and PyTorch.;no_research;Jupyter Notebook +https://github.com/fmannhardt/tpsie;TPSIE workshop website;no_research;CSS +https://github.com/fmannhardt/xeslite;XESLite - Alternative implementations of the XES standard for event logs;no_research;Java +https://github.com/fmannhardt/yawl-web-editor;Web-based Editor for YAWL;no_research;Java +https://github.com/fniephaus/alfred-brightness;Adjust your display's brightness with Alfred;no_research;Python +https://github.com/fniephaus/alfred-dropbox;Access multiple Dropbox accounts with Alfred;no_research;Python +https://github.com/fniephaus/alfred-fabric;Quickly execute Fabric tasks using Alfred v2 ;no_research;Python +https://github.com/fniephaus/alfred-gmail;Manage your Gmail inbox with Alfred;no_research;Python +https://github.com/fniephaus/alfred-hackernews;Read Hacker News with Alfred;no_research;Python +https://github.com/fniephaus/alfred-homebrew;Easily control Homebrew with Alfred;no_research;Python +https://github.com/fniephaus/alfred-monokai;Monokai Theme for Alfred v2;no_research; +https://github.com/fniephaus/alfred-network;Collection of some useful network commands;no_research;Makefile +https://github.com/fniephaus/alfred-pocket;Manage your Pocket list with Alfred;no_research;Python +https://github.com/fniephaus/alfred-readability;Manage your Readability list with Alfred;no_research;Python +https://github.com/fniephaus/alfred-rworkflow;Helper library in RPython for writing efficient Alfred 2 workflows;no_research;Python +https://github.com/fniephaus/alfred-travis-ci;Quickly check build statuses on travis-ci.org;no_research;Python +https://github.com/fniephaus/alfred-vmcontrol;Control your Parallels and Virtual Box virtual machines with Alfred v2;no_research;Python +https://github.com/fniephaus/appveyor-experiments;;no_research; +https://github.com/fniephaus/BroBreakout;Breakout clone written in :mouse: Squeak/Smalltalk;no_research; +https://github.com/fniephaus/BroDCPU;DCPU-16 emulator written in :mouse: Squeak/Smalltalk.;no_research;Smalltalk +https://github.com/fniephaus/BulkDataProcessor;A producer consumer example project for bulk processing data;no_research;Java +https://github.com/fniephaus/ESUG-Example;;no_research;Smalltalk +https://github.com/fniephaus/graalvm-interop-validator;Utility to validate the language interoperability interface of Truffle objects.;no_research;Ruby +https://github.com/fniephaus/graalvm-ni-helloworld;Building a HelloWorld with GraalVM Native Image on Different Platforms.;no_research; +https://github.com/fniephaus/HackZurich-Remotify;;no_research;Java +https://github.com/fniephaus/LaTeX-Template;;no_research;TeX +https://github.com/fniephaus/Lively4;It's all new and will be totally awesome! And we did not talk about it yet.... but we should.;no_research; +https://github.com/fniephaus/ni-hello-world;;no_research;Java +https://github.com/fniephaus/papers;;no_research; +https://github.com/fniephaus/polyglot-coverage-test;;no_research;JavaScript +https://github.com/fniephaus/power-system-simulation;Simulation of the interaction between a cogeneration unit, peak load boiler and heat storage.;no_research;Python +https://github.com/frapu78/couchsc;Relax.;no_research;Java +https://github.com/frapu78/processeditor;Home of the TRUE Open Source BPM Framework.;no_research;Java +https://github.com/frapu78/processeditor-deps;The dependency files for the processeditor project.;no_research; +https://github.com/frapu78/thingbench;The IoT Thing Workbench.;no_research;Java +https://github.com/frcroth/advent-of-code-2020;Personal Advent of code 2020 solutions.;no_research;Python +https://github.com/frcroth/advent-of-code-2021;My Advent of code 2021 solutions. 🐠;no_research;Rust +https://github.com/frcroth/advent-of-code-2022; My Advent of code 2022 solutions. 🌋;no_research;Rust +https://github.com/frcroth/BRIEFly;;no_research;Java +https://github.com/frcroth/elections;Simulate elections.;no_research;JavaScript +https://github.com/frcroth/frcroth;;no_research; +https://github.com/frcroth/github-stats;;no_research;Python +https://github.com/frcroth/hpi_gamejam2020_2colors;;no_research;GDScript +https://github.com/frcroth/line-planner;Plan train lines on a map. Just for fun.;no_research;JavaScript +https://github.com/frcroth/metric-meld;;no_research;TypeScript +https://github.com/frcroth/murder-game-bot;"A Telegram bot for playing ""Mörderspiel"" - murder game";no_research;Python +https://github.com/frcroth/om-schraders;;no_research;Python +https://github.com/frcroth/qinoq-commit-analysis;;no_research;JavaScript +https://github.com/frcroth/sierpinski-random;Draw a Sierpiński triangle with random numbers. Uses python and turtle.;no_research;Python +https://github.com/frcroth/swing-snake;A basic Snake game.;no_research;Java +https://github.com/frcroth/zahlenmaschine;Virtual machine for custom assembly in Browser.;no_research;JavaScript +https://github.com/freddrake/bootstrap-v1-bug-demo;Demonstration for a bug in the zc.buildout bootstrap for v1;no_research;Python +https://github.com/freddrake/fd.partialdate;library for partial date values;no_research;Python +https://github.com/freddrake/python-deb-packages;Clean Python packages for Ubuntu;no_research;Shell +https://github.com/friedow/Asit;;no_research;Python +https://github.com/friedow/bpd;;no_research;JavaScript +https://github.com/friedow/centerpiece;Your trusty omnibox search.;no_research;Rust +https://github.com/friedow/dotfiles;NixOS and home-manager configuration;no_research;Nix +https://github.com/friedow/friedow;;no_research; +https://github.com/friedow/friedow.com;Personal Website;no_research;Vue +https://github.com/friedow/kirito;A Discord bot, which encourages players to join voice channels.;no_research;TypeScript +https://github.com/friedow/mantichor-eth;Blockchain adapter prototype for the Mantichor project implementing the access mangement and instance administration components on the Ethereum blockchain.;no_research;TypeScript +https://github.com/friedow/nur-packages;My personal nix user repository;no_research;Nix +https://github.com/friedow/rofi-scripts;Custom rofi modi for tucan.os.;no_research;Shell +https://github.com/friedow/traefik-jwt-auth;Traefik forward auth implementation to validate jwt tokens.;no_research;TypeScript +https://github.com/friedow/Wox.Plugin.MinecraftWiki;A wox plugin that adds the capability to search the official minecraft wiki using autocomplete.;no_research;Python +https://github.com/friedow/Wox.Plugin.Tint;A color manager for Wox.;no_research;Python +https://github.com/fshabashev/apache_beam_tests;;no_research;Python +https://github.com/fshabashev/AVL_in_golang;;no_research;Go +https://github.com/fshabashev/AVL_in_python;;no_research;Python +https://github.com/fshabashev/bidder;;no_research;PHP +https://github.com/fshabashev/excel_python;;no_research;Python +https://github.com/fshabashev/hello-github-actions;;no_research;Dockerfile +https://github.com/fshabashev/pretrainedML;;no_research; +https://github.com/fshabashev/py_string_lookup_cpp;;no_research;C++ +https://github.com/fshabashev/qrewpwoir2;;no_research; +https://github.com/fshabashev/real-time-kmeans;;no_research;Python +https://github.com/fshabashev/rest_kafka_benchmarks;;no_research;Rust +https://github.com/fshabashev/sentiment_analysis;;no_research;OpenEdge ABL +https://github.com/fshabashev/sklearn_helpers;;no_research;Python +https://github.com/fshabashev/stock_info_collection;;no_research; +https://github.com/fshabashev/string_lookup_pybind11;;no_research;C++ +https://github.com/fshabashev/tmp_github_workshop_fshabashev;;no_research; +https://github.com/fshabashev/tmp_git_workshop_repository;;no_research; +https://github.com/fyndalf/autogit;A small CLI tool to automatically update all git repos in your projects folder;no_research;Rust +https://github.com/fyndalf/master-thesis;Data and artefacts of my Master's thesis.;no_research; +https://github.com/fyndalf/redo-log-parser;A command line utility for extracting .XES logs out of database redo logs written in scala;no_research;Scala +https://github.com/fyndalf/sustainability-analysis-tool;Implementation of an analysis tool for business process sustainability analyses;no_research;Scala +https://github.com/georgt99/Lamanizer;Optimizing Linkages by encapsulating rigid components;no_research;C# +https://github.com/georgt99/SymboLinkage;Simulating 3D-linkages in Unity using symbolic kinematics;no_research;C++ +https://github.com/gilles-duboscq/jvb;Java VirtualBoy emulator;no_research;Java +https://github.com/gilles-duboscq/m00FTPIndex;;no_research;Java +https://github.com/GoesOnTangents/data_model_extraction;;no_research;HTML +https://github.com/GoesOnTangents/DDM2018;;no_research;Scala +https://github.com/GoesOnTangents/PaDitC;;no_research;Java +https://github.com/GoesOnTangents/px-regex;;no_research;JavaScript +https://github.com/GoesOnTangents/statrollr;DnD stat roller that balances randomness with a point-buy value target.;no_research;R +https://github.com/gpshead/epaper-circuitpython;An ePaper display driver for use on CircuitPython running on microcontrollers with a demo that draws a fractal.;no_research;Python +https://github.com/gpshead/icbhead;An Internet Citizens Band network client.;no_research;Python +https://github.com/gpshead/jubilant-octo-couscous;Experimental dumping ground for me test GitHub Pages rendering.;no_research; +https://github.com/gpshead/life_circle;Code for a both a WiPy and ATtiny85 to animate Conway's Game Of Life on a circular LED disc.;no_research;Python +https://github.com/gpshead/pwm_lightness;A tiny library to calculate lightness tables for eyeball friendly PWM LED brightness.;no_research;Python +https://github.com/Greenscreen23/git-extra-commands;;no_research;TypeScript +https://github.com/grittaweisheit/DoctorsDiary;;no_research;Java +https://github.com/grittaweisheit/money_tracker;;no_research;Dart +https://github.com/grittaweisheit/schutzteufel-plugin;;no_research;JavaScript +https://github.com/grittaweisheit/tankndrive;;no_research;Java +https://github.com/GuillaumeSmaha/advent-of-code;;no_research;Go +https://github.com/GuillaumeSmaha/ambilight;;no_research; +https://github.com/GuillaumeSmaha/ansible-gluu-playbook;Example of playbook for Gluu;no_research;Python +https://github.com/GuillaumeSmaha/ansible-role-gluu;Ansible Role for Gluu;no_research;Python +https://github.com/GuillaumeSmaha/ansible-role-gluu-cluster-manager;Ansible Role for Gluu - Install Gluu Cluster Manager;no_research;Ruby +https://github.com/GuillaumeSmaha/ansible-role-gluu-configuration;Ansible Role for Gluu - Configure Gluu;no_research;Python +https://github.com/GuillaumeSmaha/ansible-role-gluu-customization;Ansible Role for Gluu - Customize the server (xhtml page, configuration file for scripts, war file, ...);no_research;HTML +https://github.com/GuillaumeSmaha/ansible-role-gluu-setup;Ansible Role for Gluu - Install Gluu, modules and certficates;no_research;Python +https://github.com/GuillaumeSmaha/BriquettePhysique;BriquettePhysique;no_research;C++ +https://github.com/GuillaumeSmaha/cluster-mgr;Gluu tool to faciliate LDAP replication, key management and log centralization;no_research;Python +https://github.com/GuillaumeSmaha/drone-test;;no_research;Go +https://github.com/GuillaumeSmaha/kerrighed-manage-nfs;Kerrighed-Manage-NFS is a tool to install easily Kerrighed on a Debian, Mint or Ubuntu distribution.;no_research;Shell +https://github.com/gvanrossum/ballot-box;Automatically exported from code.google.com/p/ballot-box;no_research;Python +https://github.com/gvanrossum/c-parser;A partial parser for C statements and expression;no_research;Python +https://github.com/gvanrossum/ctok;Expose CPython's tokenizer as a Python class;no_research;C +https://github.com/gvanrossum/guidos_time_machine;Guido's time machine;no_research;Python +https://github.com/gvanrossum/mypy-dummy;Dummy for mypy-lang;no_research;Python +https://github.com/gvanrossum/old-demos;Very old demos and examples removed from the cpython repo;research;Python +https://github.com/gvanrossum/patma;Pattern Matching;no_research;Python +https://github.com/gvanrossum/pep550;Stubs and thoughts about PEP 550;no_research;Python +https://github.com/gvanrossum/pythonlabs;Reconstructed source code for pythonlabs.com;no_research;HTML +https://github.com/gvanrossum/pythonlabs-com-azure;;no_research;Python +https://github.com/gward/aiosonos;Python client library for Sonos players based on asyncio;no_research;Python +https://github.com/gward/checksite;messing around with Kafka;no_research;Python +https://github.com/gward/errstack;Go package for errors with chained stack traces;no_research;Go +https://github.com/gward/gil;Greg's Ideal Language;no_research; +https://github.com/gward/gtfs-test;;no_research;Python +https://github.com/gward/hobbyq;hobby-grade message bus (low-rent RabbitMQ knockoff);no_research;Go +https://github.com/gward/kodespel;spellchecker for source code;no_research;Python +https://github.com/gward/lolog;low-overhead structured logging in Python and C;no_research;Python +https://github.com/gward/timeline;browse series of photos of the same view over time;no_research;JavaScript +https://github.com/gward/uwsgi-close;reproducing uwsgi issue #2133;no_research;Python +https://github.com/gward/wastedyears;track the time you spend on tasks;no_research;Python +https://github.com/haccer/available;Domain availability checking for Golang;no_research;Go +https://github.com/haccer/discord-scripts;A collection of scripts to enhance your Discord experience.;no_research;Python +https://github.com/haccer/dotfiles;💻 My Dotfiles for Ubuntu/Debian boxes.;no_research;Makefile +https://github.com/haccer/subjack;Subdomain Takeover tool written in Go;no_research;Go +https://github.com/HaidYi/acrfinder;AcrFinder, a tool for automated identification of Acr-Aca loci;no_research;Python +https://github.com/HaidYi/admm-l1-2-logistic-regression;Admm l1/2 logistic regression using MPI and GSL;research;C +https://github.com/HaidYi/alembic-kit;;no_research;Ruby +https://github.com/HaidYi/COMP562;This repo is for the homework of COMP 562 at UNC;no_research;Jupyter Notebook +https://github.com/HaidYi/cvxbiclustr;Accelerated Full Path Solution for Convex Biclustering;research;C++ +https://github.com/HaidYi/DASC;Detecting hidden batch factors through data adaptive adjustment for biological effects;research;R +https://github.com/HaidYi/data;ttt;no_research; +https://github.com/HaidYi/docker-deeplearning;In this repo, we provide some basic images for different deep learning framework, tensorflow, pytorch.;no_research;Dockerfile +https://github.com/HaidYi/homebrew-ext;;no_research;Ruby +https://github.com/HaidYi/pine_touch;Touch Pine every day;no_research; +https://github.com/HaidYi/ssl_proj;Final Project of COMP790: Learning from limited data;no_research;Python +https://github.com/HaidYi/STOR757;This repo is for the assignment of STOR 757 at UNC;no_research;Jupyter Notebook +https://github.com/HaidYi/stor893;The project of stor893 at UNC;no_research;MATLAB +https://github.com/hdnl/anagram-checker;Anagram Checker;no_research;HTML +https://github.com/hdnl/asa-wm;W&M's American Statistical Association chapter;no_research;JavaScript +https://github.com/hdnl/bits;platform that facilitates community people-to-person micro-loans (for pearlhacks 2k18);no_research;Java +https://github.com/hdnl/Cards-Against-Android;Attempt 2;no_research;CSS +https://github.com/hdnl/Contrasting-Political-Language;Compares how liberal vs. conservative sources communicate the same policy/event/etc;no_research;Python +https://github.com/hdnl/flesch;implements Flesch-Kincaid readability test;no_research;JavaScript +https://github.com/hdnl/geodev;sample work using geopandas;no_research;HTML +https://github.com/hdnl/intern_match;InternOne Hackathon Project - Groups mentors and interns together leveraging NLP techniques;no_research;JavaScript +https://github.com/hdnl/multiply;Disrupt the District 2k17 Project;no_research;PHP +https://github.com/hdnl/nudge;web/mobile financial application for technica 2k17;no_research;JavaScript +https://github.com/hdnl/Precandidacy-Proposal;UMSI Milestone - Precandidacy Proposal ;no_research;TeX +https://github.com/hdnl/Reddit-Images-Search;Web Development Final Project;no_research;CSS +https://github.com/hdnl/s18hophacks;;no_research;Jupyter Notebook +https://github.com/hdnl/sched;W&M Course Scheduler;no_research;TypeScript +https://github.com/hdnl/sous-ie;sous-ie simplifies personal, home-life food management for busy consumers.;no_research;HTML +https://github.com/hdnl/sparse-bert-ner;;research;Python +https://github.com/hdnl/ThoughtPath;source code for thoughtpath website;no_research;CSS +https://github.com/hdnl/To-the-Point;Chrome extension that summarizes news articles on-screen;no_research;JavaScript +https://github.com/hdnl/transfic;group creative project for Transgender Fictions (Fall 2018);no_research;Ren'Py +https://github.com/hdnl/tribalKnowledge;HackU Submission for Challenge 5 (https://hackathon.university/hu6c5/);no_research;JavaScript +https://github.com/hdnl/Undergraduate-Honors-Thesis;Investigating how linguistic/latent features in news article affect social media sentiment toward celebrity figures;no_research;Jupyter Notebook +https://github.com/hdnl/utils;Misc. data analysis scripts that may come in handy.;no_research;Python +https://github.com/hdnl/youtube-metadata-scrape;;no_research;Python +https://github.com/henleo/BachelorThesis;;no_research;Jupyter Notebook +https://github.com/henleo/BID-follow-the-light;;no_research;C++ +https://github.com/henleo/first;;no_research; +https://github.com/henleo/test;;no_research; +https://github.com/heyhen/funNCion;predicting LOF vs GOF variant effects in SCN and CACNA1 genes;no_research;R +https://github.com/heyhen/starter-hugo-research-group;;no_research;TeX +https://github.com/himanshudabas/AI_Practical_Prolog;;no_research;Prolog +https://github.com/himanshudabas/Angular-Travel-Ticketing-System;;no_research;TypeScript +https://github.com/himanshudabas/Assignment5.EmployeeRest;Nagarro Employee management Web App using Spring Boot & Spring MVC, CI CD using jenkins & Sonar;no_research;Java +https://github.com/himanshudabas/Assignment5.HRPortal;;no_research;Java +https://github.com/himanshudabas/Assignment6.HRPortal;;no_research; +https://github.com/himanshudabas/CG_Lab;Computer Graphics Practicals;no_research;C++ +https://github.com/himanshudabas/flask_freelancehub;A simple Flask based web-app which tries to simulate (to some extent) the working of Freelancing Websites.;no_research;HTML +https://github.com/himanshudabas/GKTodayScrape;Python Script to Scrape GKToday Website to create monthly magazine;no_research;Python +https://github.com/himanshudabas/IT-Lab-Practical;College Lab Practicals Semester 5 IT;no_research;Java +https://github.com/himanshudabas/NEM_hackathon;TipHunter;no_research;JavaScript +https://github.com/himanshudabas/Spring-Travel-Ticketing-System;;no_research;Java +https://github.com/himanshudabas/Unix-Buffer-Cache-Simulation; Simulation of Unix's Buffer Cache. This Simulation is implemented in Python. This serves as a tool to give some insight into how Buffer Cache in Unix handles all the Process requests for read/write operations.;no_research;Python +https://github.com/hpi-classroom/quantum-computing-bookclub;Repository for knowledge transfere and collaboration on topics discussed during HPI quantum computing bookclub.;no_research; +https://github.com/hpi-sam/Adversarial-Digital-Twins;Materials from the course Adversarial Self-Supervised Learning with Digital Twins;no_research;Java +https://github.com/hpi-sam/AI_Ethics_Engineering;Prototypes, Tutorials, Speifications for Engineering Ethical AI Systems;no_research; +https://github.com/hpi-sam/ask-your-repository-api;This service provides an api to store artefacts with their related meta-data and tags and performs machine learning on them;no_research;Python +https://github.com/hpi-sam/ask-your-repository-dialogflow-adapter;NodeJS API for handling voice query fulfilment with Dialogflow.;no_research;JavaScript +https://github.com/hpi-sam/ask-your-repository-docker;Docker Deployment of Ask-Your-Repository;no_research;Shell +https://github.com/hpi-sam/ask-your-repository-old-api;;no_research;JavaScript +https://github.com/hpi-sam/ask-your-repository-web;React Web Application for visualising and managing image data. Main user interface of the Ask You Repository project.;no_research;JavaScript +https://github.com/hpi-sam/bandits-4-self-repair;Multi-Armed bandits models for online learning of self-repair actions;no_research;Jupyter Notebook +https://github.com/hpi-sam/BP2018HG1;Bachelor Project Documentation;no_research; +https://github.com/hpi-sam/digital-fuesim-manv;A German simulation system for training emergency medical services leadership personnel on how to manage Mass Casualty Incidents.;no_research;TypeScript +https://github.com/hpi-sam/digital-fuesim-manv-public-test-scenarios;Public test scenarios for the Digital Fuesim MANV project.;no_research; +https://github.com/hpi-sam/dps.training_shared_files;;no_research;Dart +https://github.com/hpi-sam/ethical-recsys-engineering;Ethical concerns and solutions for engineering recommender systems;no_research; +https://github.com/hpi-sam/Extended-GDNs;Evaluation artifacts for extended Generalized Discrimination Networks;no_research;Java +https://github.com/hpi-sam/GNN-Commenters;Exploration of Graph Neural Network techniques for representation, prediction, and intervention on networks of comments on news sites.;no_research; +https://github.com/hpi-sam/GNN-CommunityInteraction;Repo fro Bastian, Leo and Berkay project;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-Connectomics;Exploration of Graph Neural Networks techniques for Connectomics ;no_research; +https://github.com/hpi-sam/GNN-Course-2020;Lecture Materials;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-Course-2021;Materials of the Graph Neural Networks course taught in Winter Semester 2021 at the Hasso-Plattner Institute University of Potsdam;no_research; +https://github.com/hpi-sam/GNN-Effectants;Investigate different methods for link prediction and their effectiveness for the polypharmacy problem. ;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-EntityLinking;Exploration of Graph Neural Network techniques to represent, predict, and intervene on Entity Linking tasks.;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN-for-Knowledge-Graphs;Graph Neural Networks for Knowledge-Graph Systesm ;no_research; +https://github.com/hpi-sam/GNN-NLP;Exploration of Graph Neural Networks for representation, prediction, and intervention in NLP tasks;no_research; +https://github.com/hpi-sam/GNN-SpaceTimeGraphs;Graph Neural Networks utilization for Spatiotemporal graphs. These methods will be applied into the problem of forecasting traffic flow on PEMS-Bay, METR-LA and Seattle Loop Datasets;no_research;Jupyter Notebook +https://github.com/hpi-sam/GNN_Graph_Query-Matching;Graph Neural Networks for Graph Query Matching Tasks;no_research;Python +https://github.com/hpi-sam/host-graph-sensitive-rete-nets;Repository containing evaluation artifacts for host-graph-sensitive RETE nets.;no_research;Java +https://github.com/hpi-sam/HT_WithinBetweenGroups;Hypotheses tests for within and between group experiments ;no_research;R +https://github.com/hpi-sam/Incremental-TGGs-for-Multi-version-Models;;no_research;Java +https://github.com/hpi-sam/MachineLearningControl;Machine Learning-Based Control of Dynamical Systems ;no_research;Java +https://github.com/hpi-sam/MarkovModels_Lecture;Hidden Markov Models Learning for Self-Adaptive Systems. Defintion of hidden states, observations, and application of the Baum-Welch algorithm;no_research;Jupyter Notebook +https://github.com/hpi-sam/MARL-TransferLearning;Projects on Transfer Learning for Multi-Agent Reinforcement Learning (MARL) in Self-Adaptive Systems;no_research; +https://github.com/hpi-sam/Meta-Reinforcement-Learning-for-SAS;Exploration of meta-learning methods and techniques in reinforcement learning with appication to self-adaptives systems;no_research; +https://github.com/hpi-sam/minimum-wage-rl;Project to share documentation, source code and analyzes on the topic of simulating effects of minimum wage interventions on employment and other economic metrics.;no_research;Python +https://github.com/hpi-sam/multi-version-models;Repository containing evaluation artifacts for multi-version models.;no_research;Java +https://github.com/hpi-sam/ProbabilisticModels_WiSe22_23;Projects on Discrete Time Markov Chains, Continuous Time Markov Chains, Hidden Markov Models, Markov Decision Processes;no_research;Jupyter Notebook +https://github.com/hpi-sam/QuantumProgramming;Exercises, Tasks, and Projects for the Course on Quantum Programming;no_research;Jupyter Notebook +https://github.com/hpi-sam/Responsible-AI;Course work of Responsible Artificial Intelligence Project Seminar;no_research; +https://github.com/hpi-sam/rl-4-self-repair;Reinforcement Learning Models for Online Learning of Self-Repair and Self-Optimization;no_research;Jupyter Notebook +https://github.com/hpi-sam/RL_4_Feedback_Control;Train a reinforcement learning agent online to control a self-healing mechanism;no_research;Jupyter Notebook +https://github.com/hpi-sam/RL_SelfSupervised_GameEngine;"Exploring Self-supervised Self-Adaption Mechanisms Based on Continuous Reinforcement Learning with Application to Game Systems""";no_research; +https://github.com/hpi-sam/robust-marl4sas;Research project on robust multi-agent reinforcement learning (marl) for self-adaptive systems (sas);no_research;Jupyter Notebook +https://github.com/hpi-sam/Safe-Driving-Underspecified-Models;Training reinforcement learning agents to coordinate autonomous vehicles ;no_research; +https://github.com/hpi-sam/Safe-RL-4-SAS;;no_research;Python +https://github.com/hpi-sam/sct-teaching-materials;;no_research;TeX +https://github.com/hpi-sam/sct-validation-framework;Tool Support for the Teaching of State-Based Behavior Modeling: A validation framework that simulates and animated environments interacting with the code generated from statecharts to be used for teaching modeling.;no_research;Java +https://github.com/hpi-sam/Spatio-Temporal-Graphs;Projects on Spatio-Temporal Graphs;no_research;Jupyter Notebook +https://github.com/hpi-sam/TGGs-for-Multi-Version-Models;Evaluation artifacts for TGGs for multi-version models;no_research;Java +https://github.com/hpi-swa-lab/babylonian-programming-godot;;no_research; +https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;An implementation of the Babylonian Programming Editor for Squeak/Smalltalk;research;Smalltalk +https://github.com/hpi-swa-lab/BP2019RH1;;no_research;JavaScript +https://github.com/hpi-swa-lab/BP2021RH1;Crowd-Sourced Picture Archive for Bad Harzburg / BP2021RH1;no_research;TypeScript +https://github.com/hpi-swa-lab/cloud-squeak;Minimal Squeak for Cloud Functions (Experimental);no_research;Smalltalk +https://github.com/hpi-swa-lab/CommunityCodeReview;;no_research;TeX +https://github.com/hpi-swa-lab/GazeTracker;Support for gaze/eye tracking in Squeak;no_research;C +https://github.com/hpi-swa-lab/GlyphHub;The Font Engineering Toolkit: Live Font Creation in a Self-supporting Programming Environment;no_research;Smalltalk +https://github.com/hpi-swa-lab/godot-pronto;;no_research;GDScript +https://github.com/hpi-swa-lab/godot-squeak;;no_research;Smalltalk +https://github.com/hpi-swa-lab/graalpython-java-example;Java and Python Integration Example for GraalVM;no_research;Java +https://github.com/hpi-swa-lab/graalvm-causality-graph-backup;;no_research;Java +https://github.com/hpi-swa-lab/home-desktop-system;The Home Desktop System;research;Smalltalk +https://github.com/hpi-swa-lab/hpitr;LaTeX class for technical reports at the HPI Potsdam;no_research;TeX +https://github.com/hpi-swa-lab/learning-liveness;;no_research;Smalltalk +https://github.com/hpi-swa-lab/mp-2023-godot;;no_research;GDScript +https://github.com/hpi-swa-lab/mp-2023-study;;no_research;Jupyter Notebook +https://github.com/hpi-swa-lab/native-image-visualizations;Visualizing GraalVM Native Images for Exploring Ways of Reducing File Sizes;no_research;TypeScript +https://github.com/hpi-swa-lab/Nemo;;no_research;Smalltalk +https://github.com/hpi-swa-lab/pivr;;no_research;Smalltalk +https://github.com/hpi-swa-lab/pivr-tools;;no_research;Smalltalk +https://github.com/hpi-swa-lab/pivr-tools-assets;;no_research; +https://github.com/hpi-swa-lab/polyglot-adapters;Polyglot adapters prototype for the GraalVM.;no_research;Python +https://github.com/hpi-swa-lab/Probe-S;;no_research;Smalltalk +https://github.com/hpi-swa-lab/px20-code-finder;;no_research;Python +https://github.com/hpi-swa-lab/qinoq;Create wonderful scrollytellings inside of lively.next ❄;no_research;JavaScript +https://github.com/hpi-swa-lab/QoppaS;An implementation of Qoppa Scheme using Ohm/S;no_research;Smalltalk +https://github.com/hpi-swa-lab/react-midi;An MIDI generator built on top of React/S;no_research;Smalltalk +https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;Blocks to the Rescue: Live Exploration of an Interactive Environment to Support Education, Construction, and Reflection in Program Design;research;StringTemplate +https://github.com/hpi-swa-lab/sb-terminal;;no_research;Smalltalk +https://github.com/hpi-swa-lab/sb-tree-sitter;Integration of Sandblocks with Tree-Sitter to load block-based languages from grammars;no_research;Smalltalk +https://github.com/hpi-swa-lab/sb-visual-primitives;;no_research;Smalltalk +https://github.com/hpi-swa-lab/serverless-squeak;;no_research;Smalltalk +https://github.com/hpi-swa-lab/SQPyte;;no_research;C +https://github.com/hpi-swa-lab/squeak-graphics-canvas;A collection of projects related to hardware-accelerated rendering of Squeak's Morphic.;no_research;Smalltalk +https://github.com/hpi-swa-lab/squeak-graphics-opengl;A collection of projects related to using OpenGL in Squeak/Smalltalk;no_research;Smalltalk +https://github.com/hpi-swa-lab/squeak-inbox-talk;Bringing squeak-dev into your image;research;Smalltalk +https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;A Squeak/Smalltalk implementation of polymorphic identifiers;research;Smalltalk +https://github.com/hpi-swa-lab/squeak-spelling-services;;no_research;Smalltalk +https://github.com/hpi-swa-lab/squeak-tracedebugger;A lightweight and efficient back-in-time debugger for Squeak to trace and retrace past method invocations and state changes. Powered by SimulationStudio.;research;Smalltalk +https://github.com/hpi-swa-lab/SqueakByExample-english;An introductory book about the Squeak/Smalltalk programming system, guiding students and developers through the environment, language, tools, and the Morphic framework by means of a series of examples and exercises.;no_research;TeX +https://github.com/hpi-swa-lab/TargetSpecific-ICOOOLPS;Paper on Call-target-specific Method Arguments for ICOOOLPS 2015;no_research;TeX +https://github.com/hpi-swa-lab/teaching-image;A repository for scripts to build a teaching image;no_research;Smalltalk +https://github.com/hpi-swa-lab/tools-interactive-simulations;;no_research;Smalltalk +https://github.com/hpi-swa-lab/ts-edit-action-detector;;no_research;Kotlin +https://github.com/hpiedcoq/dobuke;A bootable usb key based on linux with plenty data tools...;no_research;JavaScript +https://github.com/hpiedcoq/Documentation;Documents, cours, etc...;no_research; +https://github.com/hpiedcoq/Documents;;no_research; +https://github.com/hpiedcoq/Etalab-datadouane-Ebola;Fichier issus du groupe Ebola lors de l'opendata cam Douane Etalab à Paris en mai 2015;no_research; +https://github.com/hpiedcoq/franco-s-city-hall-of-shame;;no_research; +https://github.com/hpiedcoq/Hackathon-RDC;;no_research; +https://github.com/hpiedcoq/Mass-IP-identifier-for-OpenRefine;A recipe for OpenRefine, that allow you to retrieve public infos on IP adresses;no_research; +https://github.com/hpiedcoq/n8n;;no_research;Dockerfile +https://github.com/hpiedcoq/OpenRefine-VAT-number-validity-check;This simple recipe for OpenRefine will perform a check on the VIES platform ( http://ec.europa.eu/taxation_customs/vies/ ) to check if a european VAT number is valid or not.;no_research; +https://github.com/hpiedcoq/pub;;no_research; +https://github.com/hpiedcoq/R-ETS;Some temporary stuff;no_research;R +https://github.com/hpiedcoq/Refine_RCS;A recipe for OpenRefine, that allow you to collect opensource informations from french companies based on their RCS (National Registry) number. (;no_research; +https://github.com/hpiedcoq/SentrySyria;A twitter dataset;no_research; +https://github.com/hpiedcoq/terraserver;;no_research;CSS +https://github.com/hpiedcoq/test-scribouilli;Mon site Scribouilli;no_research;CSS +https://github.com/hpiedcoq/TPL_Scrape;A R script using Selenium to scrape data from the Special Tribunal for Lebanon;no_research;R +https://github.com/iamfat/apac-life-2015;;no_research;JavaScript +https://github.com/iamfat/author-name;a library for author name parsing;no_research;JavaScript +https://github.com/iamfat/base-x-cli;CLI for Base-X;no_research;JavaScript +https://github.com/iamfat/boot2docker-gini;Help to setup Gini Environment in Mac via Boot2Docker;no_research;Shell +https://github.com/iamfat/camunda-container-setup;;no_research;Shell +https://github.com/iamfat/chemspider;;no_research; +https://github.com/iamfat/container-cron;An automated service importing scheduled jobs from /etc/cron.d in running container.io containers.;no_research;Python +https://github.com/iamfat/cssp;A light-weight PHP library to format CSS with LESS-like syntax and automatically patch CSS3 syntax for cross-browser support.;no_research;PHP +https://github.com/iamfat/debade-courier;DeBaDe Courier;no_research;Python +https://github.com/iamfat/debade-trigger;DeBaDe trigger for RabbitMQ;no_research;JavaScript +https://github.com/iamfat/debade-trigger-amqp;;no_research;TypeScript +https://github.com/iamfat/debade-trigger-bs;debade beanstalk trigger;no_research;TypeScript +https://github.com/iamfat/dev-env;Mac 开发环境打包;no_research;Shell +https://github.com/iamfat/device-timeline;;no_research;JavaScript +https://github.com/iamfat/docker-autostart;Upstart script to autostart and maintain docker containers;no_research; +https://github.com/iamfat/docker-cron;An automated service importing scheduled jobs from /etc/cron.d in running docker containers.;no_research;Python +https://github.com/iamfat/docker-cron-cli;Automatically scan /etc/cron.d in specific docker containers and output it to stdout;no_research;Python +https://github.com/iamfat/docker-dnsmasq;Bash script to add running docker containers to dnsmasq config and restart dnsmasq service;no_research;Shell +https://github.com/iamfat/docker-parse;"docker-parse parse running container info and generate corresponding ""docker run"" command";no_research;Python +https://github.com/iamfat/docker-ps;"A ""docker ps"" alternative";no_research;Python +https://github.com/iamfat/docker-update;A helper to generate commands you need to upgrade your docker containers;no_research;Python +https://github.com/iamfat/dockerfile-cnpmjs;Dockerfile: iamfat/cnpmjs server;no_research;JavaScript +https://github.com/iamfat/dockerfile-debade-courier;Docker Hub: genee/debade-courier;no_research; +https://github.com/iamfat/dockerfile-debade-trigger;Docker Hub: genee/debade-trigger;no_research; +https://github.com/iamfat/dockerfile-dnsmasq;Docker Hub: iamfat/dnsmasq;no_research;Shell +https://github.com/iamfat/dockerfile-gini;Gini Dockerfile;no_research;Shell +https://github.com/iamfat/dockerfile-gini-dev;Docker Hub: iamfat/gini-dev;no_research; +https://github.com/iamfat/dockerfile-mall-old;;no_research;Shell +https://github.com/iamfat/dockerfile-mysql;Docker Hub: iamfat/mysql;no_research;Shell +https://github.com/iamfat/dockerfile-nginx;Dockerfile: iamfat/nginx;no_research;Nginx +https://github.com/iamfat/dockerfile-php-dev;Prepare PHP development environment to build extensions.;no_research;Dockerfile +https://github.com/iamfat/dockerfile-php-extensions;Help to build several PHP extensions;no_research;Shell +https://github.com/iamfat/dockerfile-rabbitmq;;no_research;Shell +https://github.com/iamfat/dockerfile-rsyslog;Dockerfile: iamfat/rsyslog;no_research;Shell +https://github.com/iamfat/dockerfile-selenium-firefox;Docker Hub: iamfat/selenium-firefox;no_research;Shell +https://github.com/iamfat/dockerfile-selenium-hub;Dockerfile: iamfat/selenium-hub;no_research;Shell +https://github.com/iamfat/dockerfile-selenium-phantomjs;Docker Hub: genee/selenium-phantomjs;no_research;Shell +https://github.com/iamfat/dockerfile-sonarqube;Docker Hub: iamfat/sonarqube;no_research;Shell +https://github.com/iamfat/dockerfile-tomcat;Docker Hub: genee/tomcat;no_research;Shell +https://github.com/iamfat/dockerfiles;My Dockerfiles;no_research;Shell +https://github.com/iamfat/fallocate;;no_research;C++ +https://github.com/iamfat/fetch;@genee/fetch source;no_research;TypeScript +https://github.com/iamfat/gapper-chat;It's a demo gapper app written by PHP;no_research;CSS +https://github.com/iamfat/gasmon-demo;;no_research; +https://github.com/iamfat/genee-easyrun;;no_research;JavaScript +https://github.com/iamfat/genee-puppet-cli;;no_research;Python +https://github.com/iamfat/gini;Gini PHP Framework;no_research;PHP +https://github.com/iamfat/gini-book;;no_research; +https://github.com/iamfat/ginja;CLI to batch-convert directories by Jinja2;no_research;Python +https://github.com/iamfat/godiva;GoDiVA 基理开放数据智能可视化分析 @.@;no_research;JavaScript +https://github.com/iamfat/gpio1602;TTY Driver for BTPLUG GPIO-LCM1602;no_research;C +https://github.com/iamfat/grunt-gini;Grunt plugin for Gini PHP Framework;no_research;JavaScript +https://github.com/iamfat/grunt-labscout;grunt-labscout;no_research;JavaScript +https://github.com/iamfat/hci-socket;;no_research;C++ +https://github.com/iamfat/http-jsonrpc;http-jsonrpc is a library implementing JSON-RPC 2.0 over HTTP protocol.;no_research;JavaScript +https://github.com/iamfat/json-rpc;json-rpc js library for specific scene...;no_research;TypeScript +https://github.com/iamfat/koa-queryset;;no_research;TypeScript +https://github.com/iamfat/lims2-autodeploy;LIMS2 bash script to prepare docker environment.;no_research;Shell +https://github.com/iamfat/minecraft;Minecraft based on Noa and Vite;no_research;TypeScript +https://github.com/iamfat/modbus;;no_research;TypeScript +https://github.com/iamfat/np-reset;Reset Button for NanoPi-R1;no_research;C +https://github.com/iamfat/oh-my-genee-theme;A theme for oh-my-bash based on builtin powerline theme, with nerd font required.;no_research;Shell +https://github.com/iamfat/pico;A lightweight AMD loader for specific scene...;no_research;TypeScript +https://github.com/iamfat/proxigen;debugging proxy for host-remapping based on node.js redbird;no_research;JavaScript +https://github.com/iamfat/qf;Q PHP Framework (DEPRECATED);no_research;PHP +https://github.com/iamfat/react-native-serialport;@genee/react-native-serialport;no_research;Kotlin +https://github.com/iamfat/rest;@genee/rest;no_research;TypeScript +https://github.com/iamfat/sphinx-relay;Relay server for SphinxQL (run UPDATE/REPLACE commands via MQ);no_research;JavaScript +https://github.com/iamfat/struct;A C-like struct library for buffer parsing and packing;no_research;TypeScript +https://github.com/iamfat/trello-hipchat;Trello to Hipchat Updater;no_research;JavaScript +https://github.com/iamfat/ucloud-ssh;;no_research;JavaScript +https://github.com/iamfat/ucsh;UCloud Shell;no_research;Python +https://github.com/iamfat/watch-and-run;Watch And Run;no_research; +https://github.com/iamfat/zmq-jsonrpc;Bi-directional JSON-RPC 2.0 for ZeroMQ;no_research;JavaScript +https://github.com/illiichi/apparatus;;no_research;Clojure +https://github.com/illiichi/dynenv;;no_research;C++ +https://github.com/illiichi/field-recordings-in-the-world-of-computation;;no_research;Clojure +https://github.com/illiichi/homepage2014;;no_research;Scala +https://github.com/illiichi/JustGuide;android app to show guide images from Shortcut;no_research; +https://github.com/illiichi/kojo-no-tsuki;kojo no tsuki (荒城の月) by clojure + overtone;no_research;Clojure +https://github.com/illiichi/llll;;no_research;Clojure +https://github.com/illiichi/llll-works;;no_research;Clojure +https://github.com/illiichi/not-their-technologies;;no_research;Clojure +https://github.com/illiichi/orenolisp;see:;no_research;Clojure +https://github.com/illiichi/osc-sensor;;no_research;Shell +https://github.com/illiichi/Rust-PhoneGap;;no_research;C +https://github.com/illiichi/ScalaAndroidMusicPlayer;;no_research;Scala +https://github.com/illiichi/ScalaFXMusicPlayer;;no_research;Scala +https://github.com/illiichi/ScalaFXMusicPlayer2;;no_research; +https://github.com/illiichi/ScalaPlayer;Music player by Scala.js and titanium;no_research;JavaScript +https://github.com/illiichi/ScalaPlayer2;Music player by Scala.js and titanium;no_research;JavaScript +https://github.com/illiichi/workshop;;no_research;Clojure +https://github.com/im-n1/eagle;Minimalistic todo app for command line.;no_research;Python +https://github.com/im-n1/glp;Mirror of https://gitlab.com/imn1/glp;no_research;Rust +https://github.com/im-n1/gruvbox-cgit;;no_research;CSS +https://github.com/im-n1/gruvbox-mc;;no_research; +https://github.com/im-n1/gruvbox-mocp;Gruvbox theme for MOCP;no_research; +https://github.com/im-n1/gruvbox-msteams;Gruvbox theme as a userscript for MS Teams.;no_research;JavaScript +https://github.com/im-n1/karpet;Library for fetching coin/token historical data, trends and more.;no_research;Python +https://github.com/im-n1/kitchen_led;;no_research;Python +https://github.com/im-n1/kosatka;Docker text UI management app.;no_research;Rust +https://github.com/im-n1/matematika;Personal notes about math (in Czech);no_research;TeX +https://github.com/im-n1/rug;Library for fetching various stock data from the internet (official and unofficial APIs).;no_research;Python +https://github.com/im-n1/startpage;My personal browser startpage;no_research;HTML +https://github.com/im-n1/trs;Transportation timetambles for command line.;no_research;Rust +https://github.com/im-n1/webview;Windy in a web view;no_research;Rust +https://github.com/ioanniskoumarelas/binarythetajoins;This project repository, implements the algorithms described in the 'Flexible Partitioning for Binary Theta-Joins in a Massively Parallel Setting'. Rearranging and partitioning a Join Matrix, with different techniques. For the accompanying tools for collecting metadata and generating statistics, please contact me.;no_research;Java +https://github.com/ioanniskoumarelas/DistributedDuplicateDetection;This repository will serve as the central repository, including common classes, for the project seminar of Distributed Duplicate Detection held at the Hasso Plattner Institute during the Winter Semester 2016-2017;no_research;Java +https://github.com/isaacimholt/ayup;automatic youtube uploader pipeline;no_research;Shell +https://github.com/isaacimholt/currency-converter-rest-api;;no_research;Python +https://github.com/isaacimholt/dubito-rs;pratone;no_research;Rust +https://github.com/isaacimholt/flask-restplus-production-docker-medium;How to structure a Flask-RESTPlus web service for production builds;no_research;Python +https://github.com/isaacimholt/Free-DevOps-Books;A curated collection of free DevOps related eBooks;no_research; +https://github.com/isaacimholt/Helpy_Search;Search Multiple Websites Easily;no_research;AutoHotkey +https://github.com/isaacimholt/InstagramInfiniteScraper;OSINT tool for Instagram;no_research;Python +https://github.com/isaacimholt/RazerCortexFarmer;Farm Razer Cortex zSilver coins;no_research;AutoHotkey +https://github.com/isaacimholt/zyte-api-rs;;no_research;Rust +https://github.com/j-beyer/advent-of-code-17;;no_research;Rust +https://github.com/j-beyer/config-files;NixOS, i3, Xserver, ... configuration files.;no_research;Nix +https://github.com/j-beyer/DYOD_WS1718_Sprint1;;no_research;C++ +https://github.com/j-beyer/study-notes;Collection of notes for lectures, seminars etc. ;no_research; +https://github.com/j4yk/arfftools;Tools for large ARFF files which cannot be easily handled by WEKA's tools;no_research;Python +https://github.com/j4yk/cl-agar;CommonLisp CFFI binding for Agar (in very early stage of development);no_research;Common Lisp +https://github.com/j4yk/cl-xmpp;fork of cl-xmpp;no_research;Common Lisp +https://github.com/j4yk/DicThesaurusRex;Spell checking and thesaurus for Squeak;no_research;Smalltalk +https://github.com/j4yk/EmptySquotRepo;Just a rather empty repository for testing hpi-swa/Squot;no_research; +https://github.com/j4yk/filesystem-git-test-repository;;no_research; +https://github.com/j4yk/InformationIntegration2015;Project accompanying the HPI lecture Information Integration, winter term 2015;no_research;PLSQL +https://github.com/j4yk/oam-benchmarks;Smalltalk benchmarks for Objects as Methods;no_research;Smalltalk +https://github.com/j4yk/reversi;Reversi 6x6 für HPI Schülerakademie;no_research;C# +https://github.com/j4yk/skat;Common Lisp XMPP-skat project for school;no_research;Common Lisp +https://github.com/j4yk/squeakvm-launcher;Chooses a SqueakVM executable based on the image's magic version number, similar to the py.exe launcher for shebang lines in Python on Windows.;no_research;Python +https://github.com/j4yk/WincredForSqueak;FFI binding to access the Windows Credentials API from Squeak Smalltalk;no_research;Smalltalk +https://github.com/jackjansen/2immerse-technical-samples;Sample documents from the 2-Immerse project, mainly of historical interest;no_research;HTML +https://github.com/jackjansen/artnet;;no_research;Python +https://github.com/jackjansen/cerbero;;no_research;Python +https://github.com/jackjansen/cerbero-2013;;no_research;Python +https://github.com/jackjansen/cicdtest;Experiment with platformio and Arduino IDE for GitHub actions;no_research;C++ +https://github.com/jackjansen/gdk-pixbuf;;no_research;C +https://github.com/jackjansen/gobject-introspection;;no_research;C +https://github.com/jackjansen/gst-plugins-bad;;no_research;C +https://github.com/jackjansen/gtk;;no_research;C +https://github.com/jackjansen/homebridge-lissabon;Experimenting with using Homebridge to allow HomeKit to control Lissabon lighting;no_research;TypeScript +https://github.com/jackjansen/JackVRSample;;no_research;Mathematica +https://github.com/jackjansen/miclightmeter;;no_research;Objective-C +https://github.com/jackjansen/NPBColorLib;Color operations for NeoPixelBus;no_research;C++ +https://github.com/jackjansen/npg;Paging program (like more, or less) for old Unix systems;no_research;C +https://github.com/jackjansen/openocd-playground;;no_research; +https://github.com/jackjansen/opus;;no_research;C +https://github.com/jackjansen/pcl-install-test;;no_research;C++ +https://github.com/jackjansen/studiominiscrape;;no_research;Python +https://github.com/jackjansen/wio-thermal-camera;Thermal camera using the seeed Wio Terminal;no_research;C++ +https://github.com/JakobEdding/Collaborative-Filtering-Kafka;;research;Java +https://github.com/JakobEdding/dynalist-backup;Automatically backup the contents of your Dynalist to a GitHub repository;no_research; +https://github.com/JakobEdding/pytorch-dist-pos-tagger;;no_research;Python +https://github.com/jakobwalter/ETOC;Exact Testing of Overdispersed Count Data;no_research;HTML +https://github.com/jakobwalter/jakobwalter;;no_research; +https://github.com/jakobwalter/RNAPerm;Permutation tests for RNA-Seq data.;no_research;R +https://github.com/Jamim/dotfiles;Files of my .config;no_research;Python +https://github.com/Jamim/ensemplix.mim.pw;Source codes of website;no_research;Python +https://github.com/Jamim/highload-demo;Highload demo project;no_research;Python +https://github.com/Jamim/ip-fastcgi;;no_research;C +https://github.com/Jamim/iptv-checker;IPTV playlist checker;no_research;Python +https://github.com/Jamim/iTechArt-JavaScript-Training-2015;;no_research; +https://github.com/Jamim/opentracing-boto3-demo;Demo project that shows the OpenTracing instrumentation for Boto 3;no_research;Python +https://github.com/Jamim/peewee-tracing-demo;This repository provides a way to reproduce the tracing issue.;no_research;Python +https://github.com/Jamim/pipfile-lock-bug;Demo repository related to pypa/pipenv#2662;no_research; +https://github.com/Jamim/pr-users-angular;The PR Users demo project.;no_research;TypeScript +https://github.com/Jamim/pr-users-django;This is a demo project.;no_research;Python +https://github.com/Jamim/probro;Элементарное приложение, призванное отобразить реальный курс обмена валют на территории Республики Беларусь с 2014.12.19.;no_research;Java +https://github.com/Jamim/pyconby-2020-dm-talk;"Drafts for the ""Dependency management: what's going on?"" lightning talk at PyConBY 2020";no_research; +https://github.com/jan-ladleif/bpm19-blockchain-based-choreographies;"Appendix for the BPM19 paper ""Modeling and Enforcing Blockchain-Based Choreographies""";no_research; +https://github.com/jan-ladleif/chor-playground;A playground for choreography development with TypeScript, Node and Express;no_research;TypeScript +https://github.com/jan-ladleif/model-analysis;;no_research;Jupyter Notebook +https://github.com/janehmueller/ADS2018;An actor database system implementation for the seminar Actor Database Systems at HPI;no_research;TeX +https://github.com/janehmueller/akka-exercise;;no_research;Java +https://github.com/janehmueller/bachelorthesis;;no_research;Jupyter Notebook +https://github.com/janehmueller/DataPreparation2018;;no_research;Python +https://github.com/janehmueller/DeepLearningChallenge;;no_research;Python +https://github.com/janehmueller/graaljs-polyglot-test;;no_research;JavaScript +https://github.com/janehmueller/IoTSec;;no_research;TeX +https://github.com/janehmueller/python-json-config;A config library for python;no_research;Python +https://github.com/janehmueller/spark-exercise;;no_research;Scala +https://github.com/janreppien/aoc2022;My solutions for the Advent of Code 2022;no_research;Kotlin +https://github.com/jaSunny/digital-health-prediction;;no_research;R +https://github.com/jaSunny/DynamicPricingModeling;;no_research;JavaScript +https://github.com/jaSunny/MA-Anonymization-ETL;using in-memory applications based on SAP HANA for exact anonymization through suppression, generalization, perturbation and compartmentation.;no_research;Python +https://github.com/jaSunny/MA-enriched-Health-Data;;research;R +https://github.com/jaSunny/open_MOOC_data;;no_research; +https://github.com/jaSunny/ProcessLogger;;no_research;Ruby +https://github.com/jaSunny/synthetic_genome_data;;no_research; +https://github.com/jaSunny/TrafficVisualizer;;no_research;JavaScript +https://github.com/jcremerius/Change-Detection-in-Dynamic-Event-Attributes;;no_research;Jupyter Notebook +https://github.com/jcremerius/Data-Enhanced-Process-Models;;no_research;Java +https://github.com/jcremerius/DHTrends;;no_research;TypeScript +https://github.com/jcremerius/Domain-Expert-Driven-Event-Log-Generation;"This repository contains the programmatical evaluation of the paper ""Domain Expert Driven Event Log Generation"", which emphasizes to involve the domain expert in the development process of event logs.";no_research;Python +https://github.com/jcremerius/Klub;;no_research; +https://github.com/jcremerius/Supporting-Domain-Data-Selection-in-DEP;;no_research;Java +https://github.com/jembach/makaira-trailwork-architecture;;no_research;TypeScript +https://github.com/jembach/php-config;;no_research;PHP +https://github.com/jembach/php-database;PHP Database Connection Class;no_research;PHP +https://github.com/jembach/php-errorReporting;;no_research;PHP +https://github.com/jembach/php-file;;no_research;PHP +https://github.com/jembach/php-FormularCreator;;no_research;PHP +https://github.com/jembach/php-menu;;no_research;PHP +https://github.com/jembach/renovate-presets;contains the presets for renovate to be used in other templates;no_research; +https://github.com/jembach/stupo-web-main;contains the open source media education platform stupo;no_research;TypeScript +https://github.com/JensLincke/CBM2001;;no_research; +https://github.com/JensLincke/drawio-figures;Draw.io figures store ;no_research; +https://github.com/JensLincke/drawio-test;;no_research; +https://github.com/JensLincke/dummy;;no_research; +https://github.com/JensLincke/foobartest;;no_research; +https://github.com/JensLincke/lively-modules-test;;no_research; +https://github.com/JensLincke/lively4-dummy-a;;no_research; +https://github.com/JensLincke/lively4-dummy-c;;no_research; +https://github.com/JensLincke/mdwiki;;no_research;HTML +https://github.com/JensLincke/PDFMarkupAndNotesExtractor;"shell script, that extracts the markup and notes of PDFs using, Apple's ""Preview"" Application and AppleScript";no_research;Shell +https://github.com/JensLincke/testfoo;;no_research; +https://github.com/jffjhnsn/bf-site;Quick demo of making reusable components for landing page.;no_research;JavaScript +https://github.com/jffjhnsn/blog;personal website;no_research;JavaScript +https://github.com/jffjhnsn/macro-calendar;;no_research;TypeScript +https://github.com/jgraichen/acfs;API client for services;no_research;Ruby +https://github.com/jgraichen/ajutil;A Java Utility Library;no_research;Java +https://github.com/jgraichen/api-responder;ApiResponder simplifies version dependent rendering of API resources.;no_research;Ruby +https://github.com/jgraichen/attribute_ext;AttributeExt provides additional access control for rails model attributes.;no_research;Ruby +https://github.com/jgraichen/ceph-rgw-51574;;no_research;Shell +https://github.com/jgraichen/debian-blobmoji;Minimal debian package for blobmoji font;no_research; +https://github.com/jgraichen/debian-isso;lightweight web-based commenting system;no_research; +https://github.com/jgraichen/decorate-responder;A Rails responder to decorate resources.;no_research;Ruby +https://github.com/jgraichen/docker-plugin-cinder;A Docker volume plugin to use OpenStack Cinder as container volumes;no_research;Go +https://github.com/jgraichen/factory_girl-remote;FactoryGirl::Remote to remotely create models.;no_research;Ruby +https://github.com/jgraichen/geminabox-rake;Geminabox rake task for building and releasing gems.;no_research;Ruby +https://github.com/jgraichen/gurke;Gurke is an experimental, alternative cucumber runner.;no_research;Ruby +https://github.com/jgraichen/jquery-vtoggler;jQuery UJS CheckBox Visibility Toggler;no_research;JavaScript +https://github.com/jgraichen/JSnipper;JSnipper is a small screen snipping tool to capture and annotate parts of your screen.;no_research;Java +https://github.com/jgraichen/JSweeper;A small feature-less Minesweeper written in Java.;no_research;Java +https://github.com/jgraichen/lively4-filesystem-dump;;no_research;JavaScript +https://github.com/jgraichen/lively4-kernel;The Lively kernel is a small bootloader and kernel for the new, newest, or next Lively environment;no_research;JavaScript +https://github.com/jgraichen/loco45;;no_research; +https://github.com/jgraichen/markdown-ansi;markdown-ansi;no_research;Python +https://github.com/jgraichen/mnemosyne-web;An in-house monitoring platform (experimental);no_research;Python +https://github.com/jgraichen/molecule;Collection of React/SASS UI molecules to assemble higher level components.;no_research;CoffeeScript +https://github.com/jgraichen/msgr;A Rails-like Messaging Framework.;no_research;Ruby +https://github.com/jgraichen/multi_dir;Library for semantic path configuration to make developers and operators happy.;no_research;Ruby +https://github.com/jgraichen/multi_process;Some experiments to handle multiple processes running parallel and their output.;no_research;Ruby +https://github.com/jgraichen/munin-rubygems;Munin plugin to monitor rubygems downloads for gems and/or profiles.;no_research;Ruby +https://github.com/jgraichen/nimbostratus;Browser client frontend app fu for regenwolken-like cloudapp servers.;no_research;JavaScript +https://github.com/jgraichen/obligation;Support library to provide Futures and Promises for different concurrency models.;no_research;Ruby +https://github.com/jgraichen/omniauth-internal;OmniAuth strategy for simple model authentication.;no_research;Ruby +https://github.com/jgraichen/omniauth-kerberos;OmniAuth strategy for kerberos authentication.;no_research;Ruby +https://github.com/jgraichen/omniauth-multipassword;OmniAuth strategy for authentication using different password strategies at once.;no_research;Ruby +https://github.com/jgraichen/opt;An option parsing library. Optional.;no_research;Ruby +https://github.com/jgraichen/os-image-updater;Keep cloud images for OpenStack up-to-date;no_research;Go +https://github.com/jgraichen/paginate-responder;A Rails pagination responder with link header support.;no_research;Ruby +https://github.com/jgraichen/proc-value;Take Smalltalks `#value` to Ruby. Dead easy transparent block usage.;no_research;Ruby +https://github.com/jgraichen/pxe-rescue;;no_research; +https://github.com/jgraichen/r3-shufflespace;A Rails 3.2 application which I use in my blog series about Ruby on Rails.;no_research;Ruby +https://github.com/jgraichen/rack-link_headers;Easy Link header management for rack responses.;no_research;Ruby +https://github.com/jgraichen/rack-remote;Small request intercepting rack middleware to invoke remote calls over HTTP.;no_research;Ruby +https://github.com/jgraichen/rails-assets-manifest;Load all assets from a manifest (e.g. from webpack) including SRI support;no_research;Ruby +https://github.com/jgraichen/rails-etcs;A collection of patches and alternatives for Rails core classes.;no_research;Ruby +https://github.com/jgraichen/rails-rfc6570;Pragmatical access to your Rails routes as RFC6570 URI templates.;no_research;Ruby +https://github.com/jgraichen/rails-timeago;A Rails helper for time tags that can be used with the jQuery Timeago plugin.;no_research;Ruby +https://github.com/jgraichen/rails-timeago-demo-6;A Rails 6 demo application using rails-timeago;no_research;Ruby +https://github.com/jgraichen/rake-release;Customized gem release rake task set;no_research;Ruby +https://github.com/jgraichen/rbzmq;An opinionated ruby library wrapping ffi-rzmq for more rubish flair.;no_research;Ruby +https://github.com/jgraichen/redmine_dashboard;This redmine plugin adds an issue dashboard that supports drag and drop for issues and support various filters and groups.;no_research;Ruby +https://github.com/jgraichen/renovate-config;Default renovate config;no_research; +https://github.com/jgraichen/renovate-corepack-yarn;;no_research; +https://github.com/jgraichen/renovate-yarn-constraint-v3;;no_research; +https://github.com/jgraichen/renovate-yarn-corepack-v2;;no_research; +https://github.com/jgraichen/renovate-yarn-corepack-v3;;no_research; +https://github.com/jgraichen/renovate-yarn-embed-v3;;no_research; +https://github.com/jgraichen/renovate-yarn-engine-v3;;no_research; +https://github.com/jgraichen/restify;Restify is a experimental, parallel and pipelined Hypermedia API client;no_research;Ruby +https://github.com/jgraichen/routing_engine;Flexible low-level Rack Routing Engine.;no_research;Ruby +https://github.com/jgraichen/rspec-message-within;expect(object).to receive(:message).within(:some).seconds;no_research;Ruby +https://github.com/jgraichen/rstime;A small utility to export one or multiple GNOME hamster applet databases into tsv format.;no_research;Rust +https://github.com/jgraichen/rubocop-config;Shared rubocop config;no_research;Ruby +https://github.com/jgraichen/rubypath;Path library incorporating File, Dir, Pathname, IO methods as well as a virtual mock filesystem.;no_research;Ruby +https://github.com/jgraichen/salt-acme;;no_research;Python +https://github.com/jgrenda/FlattaskServer;The repository for the flattask JSF application;no_research;Java +https://github.com/jgrenda/FT;FlatTask CSA Project;no_research;Java +https://github.com/jgrenda/QMGH;FB Verwaltung;no_research;Java +https://github.com/jgrenda/Stroke-based-KempeLinkage;Develoment out of interest and based on an assignment in Algorithmic Folding WS2021;no_research;Python +https://github.com/jirkamarsik/acg-clj;A toolkit for experimenting with abstract categorial grammars lexicalized by an external lexical database.;no_research;Clojure +https://github.com/jirkamarsik/acgtk;A publicly open Git mirror for the ACG toolkit hosted at ;no_research;OCaml +https://github.com/jirkamarsik/advent-of-code-2018;My Advent of Code 2018 solutions in Rust.;no_research;Rust +https://github.com/jirkamarsik/AdventOfCode2015;My Advent of Code 2015 solutions in Haskell;no_research;Haskell +https://github.com/jirkamarsik/AdventOfCode2017;My Advent of Code 2017 solutions in Haskell;no_research;Haskell +https://github.com/jirkamarsik/bc-thesis;Fast and Trainable Tokenizer for Natural Languages - my bachelor thesis;no_research; +https://github.com/jirkamarsik/block-cipher-design;Some Haskell code to prototype a design for a lame block cipher.;no_research;Haskell +https://github.com/jirkamarsik/deflaw;An exploration into expressing laws of interactions in a population using logic programming.;no_research;Clojure +https://github.com/jirkamarsik/dot-emacs;My Emacs setup, which tries to use mostly only MELPA for package installation and the Emacs Starter Kit for defaults. A lot of stuff is also pulled from the live-coding-emacs setup for Overtone.;no_research;Emacs Lisp +https://github.com/jirkamarsik/dp-mpi;Distributed dynamic programming with Python and MPI;no_research;Python +https://github.com/jirkamarsik/effects-paper;Source code for my LNCS 2014 paper, Algebraic Effects and Handlers in Natural Language Interpretation.;no_research;TeX +https://github.com/jirkamarsik/esa-wordseg;An implementation of the ESA unsupervised word segmentation algorithm in Clojure.;research;Clojure +https://github.com/jirkamarsik/Framed;Ludum Dare 38 jam entry;no_research;C# +https://github.com/jirkamarsik/jasmine-tap-reporter;A TAP reporter for use with the Jasmine test framework.;no_research;JavaScript +https://github.com/jirkamarsik/jirka-pack;My personal configuration pack for Emacs Live.;no_research;Emacs Lisp +https://github.com/jirkamarsik/jirka.marsik.me;The source code for my website.;no_research;Haskell +https://github.com/jirkamarsik/jirkamarsik.ruhoh.com;DEPRECATED: The Personal Blog of Jirka Maršík;no_research;CSS +https://github.com/jirkamarsik/lambda-mu;Procrastinating with Agda: a formalization of System L;no_research;Agda +https://github.com/jirkamarsik/ling-eff;Effects and Handlers in Natural Language -- the working repository for my PhD research;no_research;TeX +https://github.com/jirkamarsik/master-thesis;The report from my internship at Loria, my master thesis for Université de Lorraine.;no_research;TeX +https://github.com/jirkamarsik/maxent;"OBSOLETE: This is a ""fork"" of the Maximum Entropy Modeling Toolkit by Le Zhang fixing some critical overflow errors. Now, that the project has moved to GitHub, it might be more prudent to conduct futher work in https://github.com/lzhang10/maxent.";no_research;C++ +https://github.com/jirkamarsik/midi-page-turner;This is what I use to turn pages in my sheet music using my MIDI foot controller.;no_research;Java +https://github.com/jirkamarsik/mulan-ensemble;Ensemble classifiers implementation for Mulan and a paper using it for experiments with text classification.;no_research;Java +https://github.com/jirkamarsik/quex;OBSOLETE: Quex 0.59.1 fixed this issue. (This is a fork of the Quex Lexical Analyzer Generator by Frank-Rene Schäfer fixing a trivial show-stopping bug.);no_research;C +https://github.com/jirkamarsik/ray-tracer;A quite straightforward ray tracer leveraging the power of functional and parallel programing.;no_research;F# +https://github.com/jirkamarsik/sonic-screwdriver;My sonic configuration for Emacs. Warning: Uses evil.;no_research;Emacs Lisp +https://github.com/jirkamarsik/spacemacs-config;My Spacemacs config;no_research;Emacs Lisp +https://github.com/jirkamarsik/standa-gamejam2;;no_research;Python +https://github.com/jirkamarsik/taffybar-config;My taffybar configuration;no_research;Haskell +https://github.com/jirkamarsik/talkyard-benchmarking;Setup for running benchmarks against Talkyard and measuring the JavaScript performance;no_research;Haskell +https://github.com/jirkamarsik/tardis;TARDIS is a utility daemon. Its principal feature is to serve as a back-end for the sonic screwdriver.;no_research;Clojure +https://github.com/jirkamarsik/trainable-tokenizer;Fast and trainable tokenizer for natural languages relying on maximum entropy methods.;no_research;C++ +https://github.com/jirkamarsik/UnityTestProject;Testing out Unity with Git and Playmaker;no_research;C# +https://github.com/jirkamarsik/yapg;Yet Another Parser Generator - an LALR(1) parser generator;no_research;C# +https://github.com/jkhlr/corona-cards;A digital card deck for the socially distanced ;no_research;JavaScript +https://github.com/jkhlr/distributed-ind;Distributed Discovery of Inclusion Dependencies;no_research;Scala +https://github.com/jkhlr/faust-wordcount;Faust/Kafka WordCount pipeline, which can handle large documents;no_research;Python +https://github.com/jkhlr/homebridge;;no_research;Shell +https://github.com/jkhlr/homebridge-command-outlet;;no_research;JavaScript +https://github.com/jkhlr/hybrid-recommender-system;Jupyter Notebook with exercises on how to create a Hybrid Recommender System (Collaborative Filtering / Content-Based);no_research;Jupyter Notebook +https://github.com/jkhlr/immobot;Scrape immobilienscout24.de and receive new results through a Telegram bot;no_research;Python +https://github.com/jkhlr/logitech-ir-remote;Raspberry Pi remote control for the Logitech Z-5500 Digital speakers;no_research;Python +https://github.com/jkhlr/openRedact;Automatic text redaction, powered by ML;no_research;JavaScript +https://github.com/jkhlr/polynames;Analyzing the gender distribution of the names given by users to the polyhedra at Polytopia;no_research;Jupyter Notebook +https://github.com/jkhlr/pytorch-distributed-rnn;;no_research;Jupyter Notebook +https://github.com/jkhlr/raspi;;no_research; +https://github.com/jkhlr/spotify-connect-play;;no_research;Python +https://github.com/jkhlr/talkmatch;;no_research;Python +https://github.com/jkreindl/SulongDebugDemo;Debugging C and Ruby on GraalVM;no_research;C +https://github.com/jkreindl/taint-benchmarks;Multi-Language Implementations of Shootout Benchmarks for the Evaluation of TruffleTaint.;no_research;C +https://github.com/jnslk/AoC2020;;no_research;Jupyter Notebook +https://github.com/jnslk/AoC2021;;no_research;Jupyter Notebook +https://github.com/JoeAtHPI/CDV_Muschel-Mosaik;Muscheln und Schnecken des Museums für Naturkunde Berlin freistellen und neue Bilder generieren. Erweiterung, dass man ein Selfie von sich nutzen kann und Metainfos durch Antippen auslesen kann.;no_research; +https://github.com/JoeAtHPI/CDV_VR-Fechten;Fechten lernen durch das Fechtbuch von Hans Talhoffer der Forschungsbibliothek Gotha der Universität Erfurt .;no_research;C# +https://github.com/jokrah/unicorn9-panic;;no_research;Vue +https://github.com/jon-kroko/quickseq;Kotlin compiler plugin to easily create sequence diagrams from your code;no_research;Kotlin +https://github.com/jon-kroko/quickseq-annotations;The Kotlin annotations needed for using the QuickSeq compiler plugin;no_research;Kotlin +https://github.com/jonaskordt/Gauss-Thinning;;no_research;TypeScript +https://github.com/Jostafarr/ai-demonstrator;;no_research;HTML +https://github.com/Jostafarr/duplicate-detection-algorithm;;no_research;Jupyter Notebook +https://github.com/JulianEgbert/bachelor-thesis-kepler.gl;A combined webpage to display interactive kepler.gl pages;no_research;HTML +https://github.com/JulianEgbert/League-Guesser;A simple guessing game for League of Legends Champions;no_research;JavaScript +https://github.com/JulianEgbert/MMM-LeagueOfLegends;A MagicMirror Module to display your current rank, as well as your match history;no_research;JavaScript +https://github.com/julianweise/actor-based-database;;no_research;Java +https://github.com/julianweise/cleanWikipediaCorpus;Tiny script utilizing gensim WikiCorpus to clean a Wikipedia dump;no_research;Python +https://github.com/julianweise/DDM-Exercises;Repo for all exercise solution of lecture Distributed Data Management at the HPI;no_research;Java +https://github.com/julianweise/firefighter-self-service;;no_research;Python +https://github.com/julianweise/go-basic-blockchain;;no_research;Go +https://github.com/julianweise/mailStorageService;Microservice responsible for receiving and storing mails;no_research;Go +https://github.com/julianweise/MOCC-Exercises;Repo to collect solutions and submissions for all exercises of HPI lecture Methods of Cloud Computing;no_research;C +https://github.com/julianweise/simpleSMTP;Basic implementation of a simple smtp server in go;no_research;Go +https://github.com/julisa99/avocato-app;;no_research;Dart +https://github.com/julisa99/Blockchain-Based-Compliance-System-For-Business-Processes;;no_research;JavaScript +https://github.com/julisa99/FlowerInfinityMirror;infinity mirror in flower shape to have colorful flowers all year round 🌷;no_research;C++ +https://github.com/julisa99/IKEAPS2014;Control your IKEA PS 2014 lamp with a servo motor and Wemos d1 mini (ESP8266) via Alexa – dimmable solution 💡;no_research;C++ +https://github.com/julisa99/Lovebox;DIY project to lasercut a lovebox on your own (see https://en.lovebox.love/), which would cost almost $100.;no_research;C++ +https://github.com/julisa99/MakeYourSchool-SmartHome;LED-Streifen mit Alexa ansteuern (WS2812B, ESP32 Dev Board);no_research;C++ +https://github.com/julisa99/NationalPark;;no_research;C++ +https://github.com/Junber/7DRL-2018;Metamorph - A game for 7DRL 2018;no_research;C++ +https://github.com/Junber/Arkhes;Hierarchical Spotify Playlists;no_research;Python +https://github.com/Junber/bump-bot;An idiosyncratic discord bot to schedule things;no_research;Python +https://github.com/Junber/Ichthyornis;;no_research;Ruby +https://github.com/Junber/Idle-Test;;no_research; +https://github.com/Junber/LD-37;I'm no shut-in - A game for LD 37;no_research;C +https://github.com/Junber/LD-38;ARMageddon - An unfinished game for Ludum Dare 38 by lowercase games;no_research;C++ +https://github.com/Junber/LD-39;Captain Pixel - A game for Ludum Dare 39 by lowcase_games;no_research;C++ +https://github.com/Junber/LD-40;Dipsomaniac - lowercase_games' entry for Ludum Dare 40;no_research;C++ +https://github.com/Junber/network-creation;;no_research;Python +https://github.com/kanihal/anonymous_requests;Make anynomous requests using TOR or free VPNs ;no_research;Python +https://github.com/kanihal/belkirk-jekyll-demo;;no_research;HTML +https://github.com/kanihal/blog_posts;Entire Blog Source Folder Backup;no_research;HTML +https://github.com/kanihal/CS631_pg_semantic_search;;no_research;Python +https://github.com/kanihal/CS725-Foundations-of-Machine-Learning;Course Project for CS725 Foundations of Machine Learning;no_research;Python +https://github.com/kanihal/darknet_m;;no_research;C +https://github.com/kanihal/darknet_mod;;no_research;C +https://github.com/kanihal/detection_tracking;;no_research;Jupyter Notebook +https://github.com/kanihal/docker-vinge-explore-and-query;docker image for vinge explore and query for sparql endpoints;no_research;HTML +https://github.com/kanihal/pub_repo;;no_research;Python +https://github.com/kanihal/vatic_modified;;research;HTML +https://github.com/kanihal/west_tacl14;code for `Exploiting Social Network Structure for Person-to-Person Sentiment Analysis` - west et al.;no_research;Groovy +https://github.com/kc-/ryu-cl;;no_research;Common Lisp +https://github.com/kej-jay/IMP-submission;;no_research;Python +https://github.com/kej-jay/QRUco;;no_research;JavaScript +https://github.com/kej-jay/RoPudica;;no_research;Python +https://github.com/kej-jay/StartHackUPC;;no_research; +https://github.com/kej-jay/WeMosD1miniChristmasOrnament;A complete guide on how to prepare, solder, code and have fun with a self made christmas ornament.;no_research;C++ +https://github.com/Killerameise/bartender;Bartender with Raspberry Pi;no_research;Java +https://github.com/Killerameise/homebridge-contact-sensor;;no_research;JavaScript +https://github.com/Killerameise/homebridge-infrared-motion-sesnor-gpio;;no_research;JavaScript +https://github.com/Killerameise/homebridge-rc433-motion-sensor;This Homebridge plugin enables you to control a 433 MHz motion sensor. All you need is a 433 MHz receiver.;no_research;JavaScript +https://github.com/Killerameise/Homekit;;no_research;Java +https://github.com/Killerameise/InformationIntegration;;no_research;C# +https://github.com/Killerameise/MMDS-Amazon-Reviews;Extract the features of a product from corresponding amazon reviews.;no_research;Java +https://github.com/Killerameise/SWTI2014-Project-15;;no_research;Smalltalk +https://github.com/Kolpa/action-graalsqeak-ci;a github actions graalsqueak testrunner;no_research;Shell +https://github.com/Kolpa/Aushilfshamster;;no_research;Dart +https://github.com/Kolpa/bazel_rollup_module_root;;no_research;Python +https://github.com/Kolpa/cc-update-checker;a github commit based updatechecker for computercraft;no_research;Lua +https://github.com/Kolpa/FF1Bot;;no_research;Lua +https://github.com/Kolpa/FF4bot;;no_research;C# +https://github.com/Kolpa/git_to_sticker;;no_research;Rust +https://github.com/Kolpa/HPKaddiSticker;;no_research; +https://github.com/Kolpa/InventorySorter;;no_research;Kotlin +https://github.com/Kolpa/karaoke;;no_research;TypeScript +https://github.com/Kolpa/MensaCardSwiftUI;;no_research;Swift +https://github.com/Kolpa/redditguessr;it's like geoguessr but for reddit;no_research;TypeScript +https://github.com/Kolpa/sentry-uaa-auth;;no_research;Python +https://github.com/Kolpa/ShellyPowerMenu;An Android app that allows the user to control shelly smart-home devices via the power menu exposed by Android 11 (currently only rollers are supported because they are all that i own and can test);no_research;Kotlin +https://github.com/Kolpa/SleepManager;;no_research;Kotlin +https://github.com/Kolpa/SusML_GCN;;no_research;Python +https://github.com/Kolpa/VillagerBucketing;;no_research;Kotlin +https://github.com/konradh/diceware;;no_research;D +https://github.com/konradh/secure-code-game;;no_research;Python +https://github.com/krono/camtester;;no_research;Objective-C +https://github.com/krono/cop2016-sidewayscomp;COP 2016 Paper Sideways Composition;no_research;Python +https://github.com/krono/CrayonsInfo;;no_research;Objective-C +https://github.com/krono/dltest;;no_research;C +https://github.com/krono/dotfiles;My Dotfiles;no_research;Emacs Lisp +https://github.com/krono/endianness;;no_research;C +https://github.com/krono/hausbar;Hausbar — personal Homebrew tap;no_research;Ruby +https://github.com/krono/map-keys-on-attach;;no_research;Objective-C +https://github.com/krono/Melanin;A most simple OS X screen saver.;no_research;Objective-C +https://github.com/krono/nautobot-device-sync-jobs;Sync Jobs for Nautobot;no_research;Python +https://github.com/krono/nocommand;;no_research;Shell +https://github.com/krono/programmingexperience;;no_research; +https://github.com/krono/Squeak-Fonts;;no_research;Python +https://github.com/krono/Squeak-Trunk-Deps;Build nice pdfs from the dependency information from the Squeak trunk.;no_research;Shell +https://github.com/krono/squeaksource3;Seaside-based Monticello code repository for Squeak, Pharo and GemStone;no_research; +https://github.com/krono/SqueakSSL-build;;no_research;Makefile +https://github.com/krono/sshfp-to-tinydns;;no_research;Perl +https://github.com/krono/swathesis;An unofficial LaTeX class for writing theses at the Software Architecture Group, Hasso-Plattner-Institut, University of Potsdam, Germany.;no_research;TeX +https://github.com/krono/toggleBluetooth;Toggle the Bluetooth state on OS X;no_research;C +https://github.com/krono/x509hostmatch;;no_research;C +https://github.com/Lando-L/code-embeddings;The aim of this project is to improve the experience of developers with poorly documented code, when reaching out to the original authors is not an option.;no_research;Python +https://github.com/Lando-L/connect-four;;no_research;Python +https://github.com/Lando-L/darwin;;no_research;Python +https://github.com/Lando-L/ocd-detection;The aim of this project is to make the assessment and treatment of OCD more accessible and effective. ;research;Python +https://github.com/Lando-L/polysemy-es;Experimental event-sourcing effects for polysemy.;no_research;Haskell +https://github.com/Lando-L/reinforcement-learning-with-jax;;no_research;Jupyter Notebook +https://github.com/Lando-L/ssi;A Haskell implementation of Decentralized Identifiers and Verifiable Credentials;no_research;Haskell +https://github.com/Lando-L/tsmixer-weather-forecast;Kedro project of time-series-forecast of the multivariate weather using TSMixer.;no_research;Python +https://github.com/Lando-L/zio-es;A type-safe library adding event sourcing concepts to the zio ecosystem.;no_research;Scala +https://github.com/Lando-L/zio-ssi;A type-safe library for building self-sovereign identity applications powered by ZIO;no_research;Scala +https://github.com/leogeier/amalgamage;Entry for Ludum Dare 46;no_research;GDScript +https://github.com/leogeier/Cinestar-Availability-Checker;;no_research;Python +https://github.com/leogeier/dankbot;;no_research;Python +https://github.com/leogeier/dl-2020-prog-gan;;no_research;Python +https://github.com/leogeier/dotfiles;;no_research;Vim Script +https://github.com/leogeier/faraday-uncaged;;no_research;GDScript +https://github.com/leogeier/godot-squeak-api;;no_research;Smalltalk +https://github.com/leogeier/hackhpi23;;no_research;Jupyter Notebook +https://github.com/leogeier/highscore-backend;;no_research;JavaScript +https://github.com/leogeier/impact_juggling;;no_research;GDScript +https://github.com/leogeier/ld-45;;no_research;GDScript +https://github.com/leogeier/ld-53;;no_research; +https://github.com/leogeier/ld49;;no_research;GDScript +https://github.com/leogeier/ldjam-44-kosmas;;no_research;GAP +https://github.com/leogeier/ludum-dare-50;;no_research;GDScript +https://github.com/leogeier/mc_uptime;;no_research;Python +https://github.com/leogeier/netlify-personal;;no_research;HTML +https://github.com/leogeier/powernap;;no_research;CSS +https://github.com/leogeier/pt2ubungen;;no_research;C++ +https://github.com/leogeier/Tomb-Robbers-3;Ludum Dare Game Jam;no_research;GDScript +https://github.com/LeonBein/CRM20;Analyzing language influence on code style - fast analysis of repositories;no_research;Jupyter Notebook +https://github.com/LeonBein/DummyRepository;;no_research;Smalltalk +https://github.com/LeonBein/masterThesisCode;;research;Jupyter Notebook +https://github.com/LeonBein/MensaWidget;A small widget to show the next day meals in the canteen.;no_research;Java +https://github.com/LeonBein/SmalltalkGitTesting;;no_research;Smalltalk +https://github.com/LeonBein/Talos;A BPMS-to-RPAS bridge system;no_research;Java +https://github.com/LeonMatthes/Autocompletion;A modern Autocompletion for your Squeak image;no_research;Smalltalk +https://github.com/LeonMatthes/cmake-gen;A tool for auto-generating CMakeLists.txt files - written by @BraunTom;no_research;JavaScript +https://github.com/LeonMatthes/cmps;An intelligent touch;no_research;Rust +https://github.com/LeonMatthes/Dotfiles;;no_research;Vim Script +https://github.com/LeonMatthes/evdev-macros;;no_research;Rust +https://github.com/LeonMatthes/flip-bytes;;no_research;Rust +https://github.com/LeonMatthes/Interpreter;;no_research;C++ +https://github.com/LeonMatthes/intertest;A testing library for rust that allows you to express dependencies between tests.;no_research;Rust +https://github.com/LeonMatthes/LucidNightmare;;no_research;C# +https://github.com/LeonMatthes/managed-thread;A rust library, allowing you to spawn threads that will be automatically destroyed when no longer needed;no_research;Rust +https://github.com/LeonMatthes/mousefollowsfocus;A GNOME extension for a more efficient keyboard driven navigation.;no_research;JavaScript +https://github.com/LeonMatthes/PragmaTestCase;This project adds different pragmas to the SUnit TestCase classes;no_research;Smalltalk +https://github.com/LeonMatthes/serde-arc;A serializable Arc implementation that keeps identity across serializations.;no_research;Rust +https://github.com/LeonMatthes/SkeleTurn;A fun 1v1 arena game. Created during the hpi game jam 2018;no_research;GDScript +https://github.com/LeonMatthes/social-impro-theatre-club;;no_research;HTML +https://github.com/LeonMatthes/Vulkano-Hello-Triangle;;no_research;Rust +https://github.com/LeonMatthes/WatchyOS;My own operating system for Watchy;no_research;C +https://github.com/leonschmidt99/bpi-concept-drift-paper-example;;no_research;Python +https://github.com/leonschmidt99/Quicksort-Java;Quicksort Algorithm in Java;no_research;Java +https://github.com/leonschmidt99/Teste;Minecraft Mod-Teste für MC 1.8;no_research;JavaScript +https://github.com/leopetter/slack-app-bolt-ts-template;Minimal Template for a Slack App using Bolt with TypeScript;no_research;TypeScript +https://github.com/leoselig/coding-dojo-nodejs;Application setup for a Node.JS coding dojo kata with mocha, should.js and sinon;no_research;JavaScript +https://github.com/leoselig/cookbook;;no_research;JavaScript +https://github.com/leoselig/example-babelrc-recursive;;no_research; +https://github.com/leoselig/flow-engine;A simple Node.JS flow engine.;no_research;JavaScript +https://github.com/leoselig/foodie;;no_research;JavaScript +https://github.com/leoselig/foodie-client;;no_research; +https://github.com/leoselig/foodie-server;;no_research;JavaScript +https://github.com/leoselig/grunt-concat-deps;Grunt plugin for concatenating files according to their declarative module definitions.;no_research;JavaScript +https://github.com/leoselig/HexFieldJs;Lightweight hexagonal field library for JavaScript for handling placement on edges, corners and hexagons independent of orientation.;no_research;JavaScript +https://github.com/leoselig/hexjs;;no_research; +https://github.com/leoselig/JSCopyControl;Native JavaScript plugin to attach information to copied document selections and modify pasted text.;no_research;JavaScript +https://github.com/leoselig/JSEnum;A light-weight enum library for JavaScript;no_research;JavaScript +https://github.com/leoselig/jsFancyScroll;Ridiculously fast custom scrollbar plugin for jQuery using the same smart technique as Facebook.;no_research;JavaScript +https://github.com/leoselig/jsObjective;Lightweight and smart OOP library for simplified use of prototype chain, super implementation etc.;no_research;JavaScript +https://github.com/leoselig/leoselig.dev;This is the source code for my site: https://leoselig.dev;no_research;TypeScript +https://github.com/leoselig/MightyTiles;;no_research; +https://github.com/leoselig/omnidelicious;;no_research;JavaScript +https://github.com/leoselig/presentations;;no_research;JavaScript +https://github.com/leoselig/QueueJS;A powerful yet easy to use queueing library for JavaScript;no_research;JavaScript +https://github.com/leoselig/react-extract-proptypes;Runtime extraction of propTypes for React components;no_research;JavaScript +https://github.com/leoselig/react-material-ui-starter;;no_research;TypeScript +https://github.com/leoselig/recurrence-phrasing;;no_research;JavaScript +https://github.com/leoselig/redux-entitize;;no_research;JavaScript +https://github.com/leoselig/repro-vscode-eslint-ignorefiles;;no_research;JavaScript +https://github.com/leoselig/restify-resourcify;Declarative bindings to restify service endpoint registration.;no_research;JavaScript +https://github.com/leoselig/rockstar-99-bottles-of-beer;;no_research; +https://github.com/leoselig/TaggedJS;A wonderful customizable tagging plugin for enriching input elements with markup;no_research; +https://github.com/leoselig/todo;PHP To-do-list;no_research;PHP +https://github.com/leoselig/utils;;no_research;JavaScript +https://github.com/leoselig/waste-of-dime;;no_research; +https://github.com/leoselig/yarn-bug-repro-licenses-github-url;;no_research; +https://github.com/leowe/bear_voila_classifier;;no_research;Jupyter Notebook +https://github.com/leowe/git-tutorial-codenight;Cooles git Tutorial;no_research; +https://github.com/leowe/haskell-scheme-interpreter;;no_research;Haskell +https://github.com/leowe/jgwiki;;no_research;Python +https://github.com/leowe/lets-git-mooc-answers;;no_research; +https://github.com/leowe/ml-experiments;;no_research;Jupyter Notebook +https://github.com/leowe/mostlyDrivingRobot;;no_research;C++ +https://github.com/leowe/todo;;no_research;Haskell +https://github.com/levjj/aipf;A game for AI/path finding experiments;no_research;CoffeeScript +https://github.com/levjj/bfhs;Brainfuck interpreter in Haskell;no_research;Haskell +https://github.com/levjj/bfxp;Brainfuck XP is an imperative programming language that is compiled to brainfuck.;no_research; +https://github.com/levjj/compile-loader;Webpack loader to which evaluates the module at compile time;no_research;JavaScript +https://github.com/levjj/consha;Minimal imperative programming language implemented in Dafny with references, concurrency and a linear type system with verified absence of data races.;no_research;Makefile +https://github.com/levjj/crnotes;CRNotes is a simple web application for taking and managing notes.;no_research;Ruby +https://github.com/levjj/crtodo;CRToDo is a minimalistic to-do list web application.;no_research;Ruby +https://github.com/levjj/dafny-parsing;Parser combinator library for Dafny;no_research;C# +https://github.com/levjj/dicegame;A trivial Java project with a nice test suite. This project is mainly used for experiments in static and dynamic analysis.;no_research;Java +https://github.com/levjj/dietcop;A minimal COP implementation for Java using dynamic proxies.;no_research;Java +https://github.com/levjj/docker-persistence;Persistence for Docker volumes with duplicity backups and recovery to Amazon S3;no_research;Shell +https://github.com/levjj/esverify;ECMAScript verification with SMT solvers;no_research;TypeScript +https://github.com/levjj/esverify-theory;Formalism and proofs for esverify;no_research;Lean +https://github.com/levjj/esverify-vim;Vim Syntastic plugin for esverify;no_research;Vim script +https://github.com/levjj/esverify-web;Ace-based editor for esverify;no_research;TypeScript +https://github.com/levjj/gwibber-qwittheme;A Gwibber Theme that displays messages like the Qwit Twitter client.;no_research; +https://github.com/levjj/jambuddy.oc;Music bot that automatically adjusts to the player;no_research;ooc +https://github.com/levjj/js-timing-attacks;Examples of how to leak information through covert channels;no_research;JavaScript +https://github.com/levjj/jsfxs;Static analysis/Effect system for JavaScript;no_research;CoffeeScript +https://github.com/levjj/jstimerdateformatter;A Drupal module that formats CCK date fields by using the JavaScript Countdown Timer.;no_research;PHP +https://github.com/levjj/latex-examples;Minimal example documents for different LaTeX features;no_research; +https://github.com/levjj/legind;Dynamic Analysis environment for JavaScript;no_research;JavaScript +https://github.com/levjj/levbot;AI for Starcraft;no_research;C++ +https://github.com/levjj/lively-subserver;An example Lively subserver with a Lively environment.;no_research;JavaScript +https://github.com/levjj/lively-sync;Sync implementation for Lively based on diffing and patching serialized state.;no_research;JavaScript +https://github.com/levjj/mbench;Micro-benchmark tool reporting both time and memory;no_research;JavaScript +https://github.com/levjj/metalsmith-convert;;no_research;JavaScript +https://github.com/levjj/ni-sched;Time-sensitive Secure Multi-Execution through Scheduling;no_research;JavaScript +https://github.com/levjj/rde;Reactive Live Programming Environment ;no_research;JavaScript +https://github.com/levjj/react-play;simple app for learning react;no_research;JavaScript +https://github.com/levjj/rlet;Simple FRP syntax for JavaScript;no_research;JavaScript +https://github.com/levjj/rticomp;Compression for RTI images;no_research;JavaScript +https://github.com/levjj/rustsweeper;Small Rust example project of a Mine finding game with a HTML UI based on yew and wasm;no_research;Rust +https://github.com/levjj/sweet-actors;A set of sweet.js macros to write Scala-like actors.;no_research;JavaScript +https://github.com/levjj/ualbertabot;Fork of UAlbertaBot with opponent modelling prototype;no_research;C++ +https://github.com/levjj/uc_firstdata_gateway;UC First Data Gateway is a payment gateway for Ubercart.;no_research;PHP +https://github.com/levjj/vimrc;My VIM config based on Vundle;no_research;Vim script +https://github.com/levjj/wahlomat-visualization;Visualization of the Wahl-o-mat;research;Python +https://github.com/lewurm/32bit-64bit-aot;;no_research;Assembly +https://github.com/lewurm/amd-bad-value-repro;Repro for bad value issue on AMD Threadripper 1920X;no_research;Shell +https://github.com/lewurm/blog;My Blog;no_research;TeX +https://github.com/lewurm/dx8_reversing;Playground for Reverse Engineering Spektrum DX8 Firmware;no_research;Python +https://github.com/lewurm/frprog;a native linux programmer for MB91F465X;no_research;C++ +https://github.com/lewurm/geocaching-history;visualization of geocaching finds;no_research;PureScript +https://github.com/lewurm/graal;Clone of the OpenJDK repository of the Graal project;no_research;C++ +https://github.com/lewurm/hwmodskel;"hwmodskel ist eine ""Vorlage"" zur praktischen Benutzung der Altera Tools unter Linux, fuer die LVA ""Hardware Modellierung VL""";no_research;Tcl +https://github.com/lewurm/ldrinsntest;stress testing some arm assembly snippet wrapped in a xamarin-android project;no_research;C# +https://github.com/lewurm/libunwind;fork of https://android.googlesource.com/platform/external/libunwind;no_research;C +https://github.com/lewurm/logs;;no_research; +https://github.com/lewurm/mini;mini is not ios (see hackmii.com for details);no_research;C +https://github.com/lewurm/mini-broadway;A fork of MINI, and a collection of libraries to be used on Broadway.;no_research;C +https://github.com/lewurm/ppcskel;http://groups.google.com/group/bootmii-devel;no_research;C +https://github.com/lewurm/r32c_flashor;a simple programmer for a R32C (Renesas) starterkit by Glyn;no_research;Python +https://github.com/lewurm/savezelda;Wii exploits: Twilight Hack, Indiana Pwns, Bathaxx and Return of the Jodi;no_research;C +https://github.com/lewurm/scimark-mm-regression;regression on arm32/linux;no_research;Groff +https://github.com/lewurm/testub10;"gemeinschaftliche Sammlung von Testfaellen fuer die Uebungsbeispiele der LVA ""Uebersetzerbau (SS10)""";no_research;Shell +https://github.com/lewurm/toolsa;Collection of tools to read Tesla related files;no_research;Python +https://github.com/lewurm/watch4-mono-playground;;no_research;Objective-C +https://github.com/LinaUr/Pixelborne-Mirror;This computer game is a 2D souls-like side scroller with a multiplayer and singleplayer mode.;no_research; +https://github.com/LinqLover/ColorContextMenu;A simple color chooser tool for Squeak/Smalltalk, comprising a radial menu API for Morphic;no_research;Smalltalk +https://github.com/LinqLover/create-image;GitHub Action for creating and preparing a Squeak image;no_research;Smalltalk +https://github.com/LinqLover/DebugLogInspector;Parse Squeak DebugLogs and inspect them in a debugger;no_research;Smalltalk +https://github.com/LinqLover/downstream-repository-mining;Mine usage information about your JavaScript/TypeScript package from dependent repositories.;research;TypeScript +https://github.com/LinqLover/google-photos-rummy;Create your own card game for an individual end-of-the-year review based on your Google Photos gallery.;no_research;Python +https://github.com/LinqLover/hpi-ai-teaching-linear-regression;Exercise and examples of a simple linear regression implementation;no_research;C +https://github.com/LinqLover/KotlinWorkspace;;no_research;Python +https://github.com/LinqLover/LinqLover;Student of IT-Systems Engineering;no_research;HTML +https://github.com/LinqLover/OnAirSync;Automatically monitor whether you are in a (video) call and push updates to openHAB;no_research;C# +https://github.com/LinqLover/pbi-crash-tests;Load & crash tests for Power BI reports (pbix/pbit files);no_research;C# +https://github.com/LinqLover/Regex-Tools;Experimental visualizations and exploratory tools for Squeak's regex engine;no_research;Smalltalk +https://github.com/LinqLover/SimulationStudio;A growing suite of applications and tools using code simulation in Squeak/Smalltalk;no_research;Smalltalk +https://github.com/LinqLover/sonyx;A toolkit to explore software systems through sonification in Squeak/Smaltalk;no_research;Smalltalk +https://github.com/LinqLover/squeak-raspi-docker;Docker files and build scripts for compiling and running the Squeak/Smalltalk OSVM on a Raspberry Pi;no_research;Dockerfile +https://github.com/LinqLover/Squeak-SemanticText;ChatGPT, embedding search, and retrieval-augmented generation for Squeak/Smalltalk;no_research;Smalltalk +https://github.com/LinqLover/Squeak-TipOfTheDay;"A ""Did you know...?"" window for Squeak";no_research;Smalltalk +https://github.com/LinqLover/squeak-windowmanager;A simple window manager for Squeak;no_research;Smalltalk +https://github.com/LinqLover/SqueakFanatics-StatusMorph;A simple status display for Squeak;no_research;Smalltalk +https://github.com/LinqLover/SquotRepositoryTest02;;no_research;Smalltalk +https://github.com/LinqLover/SquotTest01;;no_research;Smalltalk +https://github.com/LinqLover/SquotTest02;Hello World;no_research;Smalltalk +https://github.com/LinqLover/SWT19-Demo-Test;;no_research;Smalltalk +https://github.com/LinqLover/symbolic-execution-survey;A survey of literature and applications for symbolic execution tools;no_research;TeX +https://github.com/LinqLover/SystemVisualizations;A loose collection of visualizations/simulations for some algorithms and systems.;no_research;Smalltalk +https://github.com/LinqLover/TelegramBot;Telegram Bot framework for Squeak/Smalltalk;no_research;Smalltalk +https://github.com/LinqLover/TelegramSmalltalkBot;A Telegram bot that connects you to a remote Squeak/Smalltalk image and allows you to explore it by sending Smalltalk expressions to the bot.;no_research;Smalltalk +https://github.com/linusha/bundesweiter-mietendeckel-visualisierung;This repository contains code for an interactive explanation/visualization of the effects a federal rent cap would have in Germany.;no_research;JavaScript +https://github.com/linusha/dotfiles;Backup of my personal dotfiles for vim, zsh,...;no_research;Shell +https://github.com/linusha/estudiante;A tiny tool to make presentations and demos within `iframes` inside of `lively.next` easier.;no_research;JavaScript +https://github.com/linusha/fino-solarized;;no_research; +https://github.com/linusha/FoDS21-Demo;A repository for demonstrating how to use git, GitHub and RStudio together. Made for the Fundamentals of Data Science Course at the University of Potsdam during the summer semester 2021.;no_research; +https://github.com/linusha/lively-next-direct-renderer-dev;;no_research;JavaScript +https://github.com/linusha/Portable-Binaries;;no_research;Shell +https://github.com/linusha/r4ds;;no_research; +https://github.com/linusha/redshift-blocklet;A simple script for redshift integration in i3blocks.;no_research;Shell +https://github.com/linusha/reference-helper-scripts;A tiny, opinionated helper script to deal with references in scientific manuscripts (mainly in the social sciences).;no_research;R +https://github.com/linusha/twitter-saxony-anhalt-election-2021-sentiment;"Code and data used in the research paper ""Emotions and Information Diffusion on Social Media: A Replication in the Context of Political Communication on Twitter"" (Hagemann, L., Abramova, O.), to be published in AIS Transactions on Replication Research.";research;HTML +https://github.com/linusha/twitter-sentiment-2020-election;"Code for data collection, processing and analysis as well as the data-set used for the research paper ""Crafting Audience Engagement in Social Media Conversations: Evidence from the U.S. 2020 Presidential Elections"" presented at HICSS 2022.";research;Python +https://github.com/linusha/whole-lively-catalog;A collection of research papers, articles, books, software, and all things lively.;no_research; +https://github.com/lisakoeritz/akka-exercise1;;no_research;Java +https://github.com/lisakoeritz/BA_DataProfiling_OpenData;"Prototyp der Bachelorarbeit zu ""Untersuchung von Möglichkeiten zur Datenprofilierung von Open Data im Kontext von Ernährungssicherheit""";no_research;Python +https://github.com/lisakoeritz/kaggle-credit-data;university project to become familar with explorative data analysis with pandas as well as training and prediction algorithms;no_research;Jupyter Notebook +https://github.com/lisakoeritz/voila_DataProfiling;Voila Dashboard zu BA;no_research;Python +https://github.com/lisakoeritz/web_crawler;Studienprojekt HTW WiSe 2016/17 im Modul Content Management, Such- und Texttechnologien ;no_research;Jupyter Notebook +https://github.com/llunn/moms-recipes;Ember Web App for my Mom's recipe collection;no_research;JavaScript +https://github.com/llunn/relaxed;A python library for CouchDB;no_research;Python +https://github.com/lmeyerov/aivillage_data_masterclass;AI Village: Intro to Data Masterclass at Def Con 2018;no_research; +https://github.com/lmeyerov/followerfollower;;no_research;JavaScript +https://github.com/lmeyerov/neptune-bolt-poc;;no_research;JavaScript +https://github.com/lmeyerov/promptjs;Concurrency JS lib whose core unifies promises and sync/async streams (FRP) and whose combinators integrate with the client (XHR, DOM).;no_research;JavaScript +https://github.com/lmeyerov/sc;superconductor;no_research; +https://github.com/lmeyerov/the_data_ride_alongs;The Data Ride Alongs: The unique monthly data science live coding show and community!;no_research;Jupyter Notebook +https://github.com/loewis/moodle-auth_ldap_instances;Template moodle plugin to allow multiple instances of auth_ldap_syncplus;no_research;PHP +https://github.com/loewis/swift;Mirror of http://swift.im/git/swift;no_research;C++ +https://github.com/loewis/test2015;;no_research; +https://github.com/ltratt/aeschylus;Auto-Editing ScreenCast system;no_research;Python +https://github.com/ltratt/bin;Scripts and utilities;no_research;Shell +https://github.com/ltratt/cheri_malloc_blog;;no_research;C +https://github.com/ltratt/cmdseq;Execute interleaved sequences of commands;no_research;Shell +https://github.com/ltratt/converge;The Converge programming language;no_research;Python +https://github.com/ltratt/convergeweb;Converge website;no_research;HTML +https://github.com/ltratt/email_merger;Send customised e-mails;no_research;Python +https://github.com/ltratt/extsmail;Robust remote e-mail sending;no_research;C +https://github.com/ltratt/fetegeo;Free text geocoder;no_research;Python +https://github.com/ltratt/hk;hk: Set temporary X11 hotkeys;no_research;C +https://github.com/ltratt/minimum_times;A simple experiment showing that using the minimum time of a benchmark can be misleading;no_research;Python +https://github.com/ltratt/multitime;Time command execution over multiple executions;no_research;C +https://github.com/ltratt/pizauth;Command-line OAuth2 authentication daemon;no_research;Rust +https://github.com/ltratt/registervm;A simple RPython VM for a simple register machine language;no_research;Python +https://github.com/ltratt/rsync_cmd;rsync_cmd: edit locally, build remotely;no_research;Python +https://github.com/ltratt/rustbfs;Rust BF interpreters;no_research;Rust +https://github.com/ltratt/snaretest;;no_research; +https://github.com/ltratt/srep;srep (Search and REPlace);no_research;Python +https://github.com/ltratt/supuner;supuner (SUPpress UNless ERror);no_research;Shell +https://github.com/ltratt/try_repeat;Run a command 'n' times, exiting early if the command returns non-zero;no_research;Roff +https://github.com/ltratt/vms_experiment;Benchmark suite for dynamically typed languages and VMs;no_research;C +https://github.com/LucPrestin/Configuration;;no_research;Lua +https://github.com/LucPrestin/Hidden-Modularity;;no_research;Smalltalk +https://github.com/LucPrestin/hpi-game-jam-11;;no_research;GDScript +https://github.com/LucPrestin/SmartHomeBroker;;no_research;Shell +https://github.com/LucPrestin/SmartHomeControl;An app to control different smart home devices;no_research;Dart +https://github.com/LucPrestin/SmartLights;;no_research;C++ +https://github.com/LucPrestin/songify-your-voice;;no_research;JavaScript +https://github.com/luisebenkert/AdventOfCode;adventofcode.com;no_research;Python +https://github.com/luisebenkert/erp;HackHPI 2019 - SAP Challenge #1;no_research; +https://github.com/luisebenkert/GenePreprocessingTool;;no_research;JavaScript +https://github.com/luisebenkert/Potree-Extension;;research;JavaScript +https://github.com/lukashueller/bachelor-thesis;;no_research;TeX +https://github.com/lukashueller/design_thinking_paper;This paper was written in relation to the Wayfinder Seminar at HPI. It deals with the connection between prototyping and Lego Serious Play in leadership workshops.;no_research;TeX +https://github.com/lukashueller/lukashueller.de_v3;Repository for my personal webpage;no_research;HTML +https://github.com/lukashueller/portfolio_website;;no_research;JavaScript +https://github.com/lukashueller/suppy-chain-monitor;;no_research;JavaScript +https://github.com/lukashueller/trello_onboarding;This repository gives an introduction to Trello for beginners. ;no_research; +https://github.com/lukashueller/WhatsAppWordPrediction;Analyze your WhatsApp chats and get word suggestions based on your chat history while writing!;no_research;Python +https://github.com/lukasstadler/RAPI;R native API prototyping area;no_research;C +https://github.com/m-hemmings/interact;;no_research;JavaScript +https://github.com/m-hemmings/LNDocker;Docker Environment for Lively-Next;no_research;Shell +https://github.com/m-hemmings/MiscFiles;;no_research;HTML +https://github.com/m-hemmings/socketchat-app;my socket.io chat;no_research;JavaScript +https://github.com/m0e33/GRAPHS;;no_research;Python +https://github.com/m0e33/REST-bot;;research;Python +https://github.com/m0r13/abizeitung_django;;no_research;Python +https://github.com/m0r13/arduino-stuff;;no_research;HTML +https://github.com/m0r13/awoxl;Bluetooth remote control for AWOX Smart Light.;no_research;C +https://github.com/m0r13/derpbot;A crappy chatbot written in Python.;no_research;Python +https://github.com/m0r13/dotfiles;My dotfiles.;no_research;Shell +https://github.com/m0r13/ds2017-homework1;;no_research;Python +https://github.com/m0r13/ds2017-homework2;;no_research;Python +https://github.com/m0r13/fortune-mod-stargate;Stargate fortune cookies;no_research;Python +https://github.com/m0r13/hpi-quotedb;HPI Quote Database;no_research;Python +https://github.com/m0r13/mapcrafter-simplegui;A very simple Mapcrafter GUI.;no_research;C++ +https://github.com/m0r13/MapTools;Exports data about players from a Minecraft server to a JSON-File.;no_research;Java +https://github.com/m0r13/mclogalyzer;Minecraft Server Log Analyzer;no_research;Python +https://github.com/m0r13/mcwexpand;;no_research;Python +https://github.com/m0r13/minavatars;;no_research;Python +https://github.com/m0r13/mixxx-zomo-mc-1000;Mixxx Mappings for Zomo MC-1000 Midi Controller;no_research;JavaScript +https://github.com/m0r13/nebel-in-the-cloud;;no_research;HTML +https://github.com/m0r13/pyBrainfuck;a Brainfuck interpreter written in Python;no_research;Python +https://github.com/m0r13/pymoppy;;no_research;Python +https://github.com/m0r13/pyvisual;;no_research;Python +https://github.com/m0r13/technoqualle-android;;no_research;Java +https://github.com/m0r13/thermalD;;no_research;C +https://github.com/m0r13/tigol;Game of Life for the Texas Instruments graphic calculators.;no_research;C +https://github.com/m0r13/tripping-octo-batman;tripping-octo-batman, what a great repo name suggestion!;no_research;Python +https://github.com/m0r13/vamp-beat-detection;;no_research;C++ +https://github.com/marc-rosenau/Projekt1;;no_research; +https://github.com/marc-rosenau/Projekt2;;no_research; +https://github.com/marc-rosenau/YouLearnDay;This is an example webpage for you to customise;no_research;HTML +https://github.com/MarcelGarus/banners;Flutter package for dynamically displaying global banners at the top of the screen.;no_research;Dart +https://github.com/MarcelGarus/bingo;A bingo game for boring lectures;no_research;Dart +https://github.com/MarcelGarus/bluetooth_bridge;A bluetooth bridge for Calor thermostats. This is part of the GHSi Castle Project.;no_research;Kotlin +https://github.com/MarcelGarus/c1c;C1 compiler;no_research;C +https://github.com/MarcelGarus/cards;A simple card-based party game. Basically, you give it your names and it simulates a stack of cards with tasks and questions on them, picking one each turn and filling in your names. Much fun!;no_research;Dart +https://github.com/MarcelGarus/cash_timer;;no_research;Dart +https://github.com/MarcelGarus/colorz;🎨 Color constants which represent named colors from colornames.org.;no_research;Dart +https://github.com/MarcelGarus/coronoise;An app that assesses the Covid-19 risk based on incidence and Exposure Notification tokens and generates a scary sound that matches the risk level;no_research;Dart +https://github.com/MarcelGarus/data_classes;Dart packages that automatically generate data classes for you.;no_research;Dart +https://github.com/MarcelGarus/dependability;A library for making your programs more reliable;no_research;Rust +https://github.com/MarcelGarus/dungbeetle;A tiny toy VM that consists of 256 bytes of memory and a cursor.;no_research;Zig +https://github.com/MarcelGarus/factorize;A simple real-time prime factorization program for the command line. Also supports imports as a python library with generators for primes and prime factors.;no_research;Python +https://github.com/MarcelGarus/flutter_cached;🧾 Flutter widget allowing easy cache-based data display in a ListView featuring pull-to-refresh and error banners.;no_research;Dart +https://github.com/MarcelGarus/flutter_slides;;no_research;Dart +https://github.com/MarcelGarus/flutter_swipe_back_bug;Repository to illustrate a bug in the Flutter framework.;no_research;Dart +https://github.com/MarcelGarus/garus-consulting;Die Website von garus.consulting;no_research;HTML +https://github.com/MarcelGarus/girahomeserver;Client library for the Gira HomeServer.;no_research;Dart +https://github.com/MarcelGarus/glados;🍰 A property-based testing framework that tries to break your invariances.;no_research;Dart +https://github.com/MarcelGarus/googleio;A companion app to the Google I/O 19 extended event hosted at HPI.;no_research;Dart +https://github.com/MarcelGarus/hackernews;A hackernews client app.;no_research;Dart +https://github.com/MarcelGarus/has_is_getters;;no_research;Dart +https://github.com/MarcelGarus/hive_cache;A persistent cache that uses hive.;no_research;Dart +https://github.com/MarcelGarus/implicitly_animated_list;A Flutter widget that implicitly animates a list whenever it rebuilds with new items.;no_research;Dart +https://github.com/MarcelGarus/jupyter-energy;A plugin for Jupyter Notebooks that shows you its energy use.;no_research;Jupyter Notebook +https://github.com/MarcelGarus/kakuro;;no_research;Rust +https://github.com/MarcelGarus/list_accessors;;no_research;Dart +https://github.com/MarcelGarus/list_diff;📃 Calculates a minimal list of operations that convert one list into another if applied in order.;no_research;Dart +https://github.com/MarcelGarus/make_monsters_feel_crappy;A simple single-player, turn-based, numerical strategic survival game for the command line.;no_research;Python +https://github.com/MarcelGarus/marcelgarus;Things about me;no_research; +https://github.com/MarcelGarus/marquee;A Flutter widget that scrolls text infinitely. Provides many customizations including custom scroll directions and velocities, pausing after every round and specifying custom durations and curves for accelerating and decelerating.;no_research;Dart +https://github.com/MarcelGarus/math_clock;A mathematical clock, written in Flutter.;no_research;Dart +https://github.com/MarcelGarus/minilist;A simple shopping list.;no_research;Dart +https://github.com/MarcelGarus/murderers;A dead-simple multi-player real-world game lasting several days.;no_research;Dart +https://github.com/MarcelGarus/numbers;An app that tells you facts about numers.;no_research;C++ +https://github.com/MarcelGarus/number_fun_facts;Interesting facts about numbers.;no_research;Dart +https://github.com/MarcelGarus/repository;High-level data management.;no_research;Dart +https://github.com/MarcelGarus/semdoc;A document file format that allows writers to focus on the content solely and empowers readers to adapt the appearance to their devices and needs.;no_research;Rust +https://github.com/MarcelGarus/server;My server running marcelgarus.dev;no_research;Rust +https://github.com/MarcelGarus/shrinkgrow;A new versioning format;no_research; +https://github.com/MarcelGarus/tape;The API package framework.;no_research;Dart +https://github.com/MarcelGarus/todo;Offers a TODO() method to indicate that code has not been implemented yet.;no_research;Dart +https://github.com/MarcelGarus/xkcd;An xkcd client written in Flutter. Watch all the xkcd comics without the hassle of zooming in on the comic tiles - the app offers this functionality automatically.;no_research;Dart +https://github.com/marceltaeumel/squeak-ffi;Wrapper around source.squeak.org/FFI to run automated tests.;no_research;Shell +https://github.com/marcfreiheit/black-docker;A Docker image running black inside in order to automatically lint & fix python code;no_research;Dockerfile +https://github.com/marcfreiheit/BugBlaster360-Action;;no_research; +https://github.com/marcfreiheit/dotfiles;Dotfiles for vim, tmux and zsh;no_research;Shell +https://github.com/marcfreiheit/drinklist;;no_research;Smalltalk +https://github.com/marcfreiheit/flake8-docker;A Docker container running flake8 for python linting;no_research;Dockerfile +https://github.com/marcfreiheit/follett-track-renaming;Small script to rename audio tracks from CDs of Ken Follett to an uniform format;no_research;C +https://github.com/marcfreiheit/gcp-storage-uploader;A docker container to automatically upload files to Google Cloud Storage;no_research;Ruby +https://github.com/marcfreiheit/generic-functions-squeak;An implementation of generic functions in Squeak/Smalltalk;research;Smalltalk +https://github.com/marcfreiheit/gs-topaz;Gemstone Topaz Language Support for Visual Studio Code;no_research; +https://github.com/marcfreiheit/gs-topaz-ls;Language Server Support for writing Topaz scripts;no_research;TypeScript +https://github.com/marcfreiheit/hackhpi2017-app;Our implementation of challenge #1 of Pfizer;no_research;Swift +https://github.com/marcfreiheit/hackhpi2017-display;;no_research;Python +https://github.com/marcfreiheit/htr-api;Rails-based backend of the HTR tool suite;no_research;Ruby +https://github.com/marcfreiheit/htr-camunda-dmn;;no_research;Java +https://github.com/marcfreiheit/htr-deployment;Deployment of software tools from HTR ;no_research; +https://github.com/marcfreiheit/htr-web;;no_research;TypeScript +https://github.com/marcfreiheit/lis-in--lis-out;Interface to import data exported from LIS WinSped logistics software;no_research; +https://github.com/marcfreiheit/lisp-in-cool;An implementation of a LISP parser in Squeak/Smalltalk;no_research;C# +https://github.com/marcfreiheit/vim-setup;My vim setup including my .vimrc file and my installed plugins included as submodules using pathogen;no_research;Vim script +https://github.com/marcfreiheit/weather;The weather app to learn Angular;no_research;TypeScript +https://github.com/marcfreiheit/wsk-cli;Command Line Interface for openwhisk;no_research;Dockerfile +https://github.com/marcfreiheit/zorc-foundry-displays;Installation Guide and Scripts to Install Displays for the Zorc Foundry Cloud;no_research;Shell +https://github.com/marcfreiheit/zorc-scripts;;no_research;Shell +https://github.com/marhew/datasciencecoursera;Git Repo for Coursera's Data Science Course;no_research; +https://github.com/MariusDoe/AlphaFight;Game made with Godot where you fight letters with letters.;no_research;GDScript +https://github.com/MariusDoe/DropInShapes;Music drops, shapes are dropped in, ball is dropped;no_research;GDScript +https://github.com/MariusDoe/HPI-BSII2022-Rust-for-Linux;FAT filesystem implementation in Rust for the Linux kernel (BS II lecture 2022 at HPI) ;no_research; +https://github.com/MariusDoe/MazeTag;Game where some players run through a maze and play tag.;no_research;JavaScript +https://github.com/MariusDoe/schafoom;;no_research;GDScript +https://github.com/MariusDoe/Test;test repo;no_research;JavaScript +https://github.com/matthias-springer/amber-athens;;no_research;JavaScript +https://github.com/matthias-springer/amber-athens-library;Athens implementation for Amber Smalltalk;no_research;JavaScript +https://github.com/matthias-springer/amber-athens-tutorial;Athens tutorial for Amber Smalltalk;no_research;JavaScript +https://github.com/matthias-springer/amber-rails;;no_research; +https://github.com/matthias-springer/amber-sinatra-example;;no_research;JavaScript +https://github.com/matthias-springer/array2016-paper;;no_research; +https://github.com/matthias-springer/ba-thesis;;no_research;TeX +https://github.com/matthias-springer/bench-icooolps2015;;no_research;Shell +https://github.com/matthias-springer/codek-moment;;no_research;Java +https://github.com/matthias-springer/cop-ContextAmber;;no_research;JavaScript +https://github.com/matthias-springer/cse135-serverside-web-apps;;no_research;Java +https://github.com/matthias-springer/cse190-database-analytics;;no_research;TeX +https://github.com/matthias-springer/cse190-linear-programming;;no_research;TeX +https://github.com/matthias-springer/cse199-db-context-queries;;no_research;C++ +https://github.com/matthias-springer/cse202-algorithms;;no_research;TeX +https://github.com/matthias-springer/cse260-parallel-computation;;no_research;Shell +https://github.com/matthias-springer/deli;;no_research;Ruby +https://github.com/matthias-springer/ecoop2015-cop-workshop;;no_research;TeX +https://github.com/matthias-springer/elfinder-grails-plugin;;no_research;JavaScript +https://github.com/matthias-springer/fachenglisch3-contextamber;;no_research;TeX +https://github.com/matthias-springer/huffman-encoding;Huffman encoding C++ library with variable word size;no_research;C++ +https://github.com/matthias-springer/icooolps2017-dart2java;;no_research;TeX +https://github.com/matthias-springer/ikra-playground;;no_research;Ruby +https://github.com/matthias-springer/is-programming-language-design;;no_research;TeX +https://github.com/matthias-springer/m-sp.org-downloads;;no_research; +https://github.com/matthias-springer/maglev-database-explorer;;no_research;JavaScript +https://github.com/matthias-springer/maglev-database-explorer-gem;Explore and modify objects in your Rails application running on MagLev.;no_research;JavaScript +https://github.com/matthias-springer/master-thesis;;no_research;PostScript +https://github.com/matthias-springer/mathematics-library;;no_research;Smalltalk +https://github.com/matthias-springer/matthiasspringer.de;;no_research;HTML +https://github.com/matthias-springer/module-systems-presentation;;no_research;TeX +https://github.com/matthias-springer/parser-mensa-potsdam;;no_research;Python +https://github.com/matthias-springer/ruby-class-ext;;no_research; +https://github.com/matthias-springer/ruby-gpu;;no_research; +https://github.com/matthias-springer/space-cleanup;A bomberman clone written in Squeak Smalltalk;no_research;Smalltalk +https://github.com/matthias-springer/tode-web;;no_research;Ruby +https://github.com/matthias-springer/truffle-presentation;;no_research;TeX +https://github.com/mattonem/action-deploy-pharo-lambda;;no_research; +https://github.com/mattonem/AgileSmsGenerator;Notre beau projet de simulateur de vie sociale AGILE en utilisant Eclipse/Androïd;no_research;Java +https://github.com/mattonem/API-testing;;no_research;JavaScript +https://github.com/mattonem/ApprovedCookery;;no_research;TeX +https://github.com/mattonem/arbc-data;;no_research; +https://github.com/mattonem/AutoPilot;;no_research;Smalltalk +https://github.com/mattonem/BioMatingSim;;no_research;Smalltalk +https://github.com/mattonem/browserstack-automation-kata;;no_research;Python +https://github.com/mattonem/browserstack-local-smalltalk;;no_research;Smalltalk +https://github.com/mattonem/browserstack-side-runner;;no_research;JavaScript +https://github.com/mattonem/Browserstack-webdriverIO-kata;;no_research;JavaScript +https://github.com/mattonem/BrowserStackPresentation;;no_research;Smalltalk +https://github.com/mattonem/browserstack_test;;no_research;Python +https://github.com/mattonem/bstack-build-id;;no_research;JavaScript +https://github.com/mattonem/code-export-browserstack-mocha;;no_research;JavaScript +https://github.com/mattonem/codeceptjs-playwright-browserstack;;no_research;JavaScript +https://github.com/mattonem/codova-shadowdom;;no_research;CSS +https://github.com/mattonem/cv-latex;;no_research;TeX +https://github.com/mattonem/cypress-jenkins;;no_research; +https://github.com/mattonem/DockerSeaside;;no_research;Dockerfile +https://github.com/mattonem/Formular;;no_research;Java +https://github.com/mattonem/gamebox;;no_research;Smalltalk +https://github.com/mattonem/GeoCheck;;no_research;Smalltalk +https://github.com/mattonem/Griber;;no_research;Smalltalk +https://github.com/mattonem/hackathon;;no_research;Java +https://github.com/mattonem/Ironmines-doc;;no_research;TeX +https://github.com/mattonem/ironminesarduino;;no_research;C +https://github.com/mattonem/jest-browserstack;;no_research;JavaScript +https://github.com/mattonem/Kata-Anagrams;;no_research;Smalltalk +https://github.com/mattonem/Kata-BlocLunarLander;;no_research;Smalltalk +https://github.com/mattonem/Kata-BowlingCounter;;no_research;Smalltalk +https://github.com/mattonem/Kata-DiamondSquareAlgo;;no_research;Smalltalk +https://github.com/mattonem/Kata-GameOfLife;;no_research;Smalltalk +https://github.com/mattonem/MDownToHTMLLambda;aws lambda to turn markdown into html;no_research;Smalltalk +https://github.com/mattonem/MyLittlePhp;MyLittlePhp;no_research;PHP +https://github.com/mattonem/nothernLights;;no_research; +https://github.com/mattonem/ParallelTesting;;no_research;Smalltalk +https://github.com/mattonem/percy-element-selection-nightwatchjs;;no_research;JavaScript +https://github.com/mattonem/Percy-integration-Github-action;;no_research; +https://github.com/mattonem/percysync;;no_research;JavaScript +https://github.com/mattonem/Pharo-AWS-Lambda-Runtime;;no_research;Smalltalk +https://github.com/mattonem/Pharo-Kalman;;no_research;Smalltalk +https://github.com/mattonem/PharoDockerfile;;no_research;Dockerfile +https://github.com/mattonem/Phlog;Blog website for http://arb-c.eu/;no_research;Smalltalk +https://github.com/mattonem/PhlogAWSLambda;;no_research;Smalltalk +https://github.com/mattonem/PJSIPGeolocationWebApp;;no_research;Smalltalk +https://github.com/mattonem/PPecrou;;no_research;Java +https://github.com/mattonem/RestClientApp;;no_research;Smalltalk +https://github.com/mattonem/ruby-demo-action;;no_research;Ruby +https://github.com/mattonem/ScreensizeApp;;no_research;Smalltalk +https://github.com/mattonem/SeasideFileLibraries;Some file libraries available for seaside web framework.;no_research;Smalltalk +https://github.com/mattonem/selenium-IDE-browserstack;;no_research; +https://github.com/mattonem/shadowdom-testing-exprimentation;;no_research;JavaScript +https://github.com/mattonem/simple-captive-portal;;no_research;PHP +https://github.com/mattonem/smalltalk-releases;;no_research;Smalltalk +https://github.com/mattonem/SmalltalkEnv;LaTeX environment for Smalltalk. ;no_research;TeX +https://github.com/mattonem/StateMachine;;no_research;Smalltalk +https://github.com/mattonem/TemporalEncryption;;no_research;Smalltalk +https://github.com/mattonem/tf_phlitter;;no_research;Smalltalk +https://github.com/mattonem/UBNameGenerator;;no_research;Smalltalk +https://github.com/mattonem/WCGeohashWebApp;;no_research;Smalltalk +https://github.com/mattonem/WildCamping;;no_research;Smalltalk +https://github.com/mattonem/WillowChat;;no_research;Smalltalk +https://github.com/max-3l/cogter;;no_research;Vue +https://github.com/max-3l/dbs1-Uebung4-imdbSuche;;no_research;Java +https://github.com/max-3l/heartk;A analysis platform for heart signals in kotlin.;no_research;Kotlin +https://github.com/max-3l/max-3l-hpi-ii-project-2022-phoenix;;no_research; +https://github.com/max-3l/multiprocess-tqdm;A tqdm wrapper for multiprocessing and multi-threading setups in python.;no_research;Python +https://github.com/max-3l/pritunl-docker-rpi;A pritunl Docker Image;no_research; +https://github.com/maxifischer/aoc_2022;Advent of Code 2022 Scala;no_research; +https://github.com/maxifischer/brandpersonalityprediction;;no_research;Jupyter Notebook +https://github.com/maxifischer/DBpediaOTD;;no_research;HTML +https://github.com/maxifischer/festevolve;;no_research;Python +https://github.com/maxifischer/genre-prediction;"Repository of summer term 2018 seminar project in ""Introduction to Deep Learning""";no_research;Jupyter Notebook +https://github.com/maxifischer/gensim-MCC;Masterthesis on Multi-Prototype Diachronic Word Embeddings;research;Python +https://github.com/maxifischer/kaggle-circadian-rhythm;project of the course Introduction in Computational Neuroscience at University of Tartu;no_research;Jupyter Notebook +https://github.com/maxifischer/rhythm-extraction;"Repository of summer term 2018 seminar project in ""Machine Learning in Audio Applications""";no_research;Jupyter Notebook +https://github.com/MaximilianKoenig/AgentBased_Epidemic_Simulation;;no_research;Jupyter Notebook +https://github.com/MaximilianV/fb_reactions_crawler;;no_research;Python +https://github.com/MaximilianV/GiTeX-template;Ein kleines Spiel zum Lernen und Ausprobieren von Git und LaTeX in Gruppen.;no_research; +https://github.com/MaximilianV/panoramaview;Repo for HackHPI'16;no_research;Python +https://github.com/MaximilianV/rebeana;A Framework for Analysing Resource Behaviour;no_research;Python +https://github.com/MaximilianV/resource-mock;This application mocks possible endpoints of the resource manager;no_research; +https://github.com/MaximilianV/thingberry;This tool provides an easy way to connect your Raspberry Pi to the Bosch Thing Service.;no_research;Python +https://github.com/MaxTru/Berlin-Police-Reports-NLP;Project to scrape police reports from www.berlin.de, perform text classification on them using the Machine Learning StarSpace model and search & browse the reports using a Flask UI. See http://maxtru.pythonanywhere.com/ for an example instance of the WebUI.;no_research;Python +https://github.com/MaxTru/camunda-connector-openai-moderation;Camunda 8 Connector to use open API moderation;no_research; +https://github.com/MaxTru/camunda-modeler-connector-controller;Control C8 Connectors via the Connector Controller Plugin;no_research;JavaScript +https://github.com/MaxTru/camunda-modeler-templates-from-palette-plugin;;no_research;JavaScript +https://github.com/MaxTru/dmn-js-integration;;no_research;JavaScript +https://github.com/MaxTru/gh-actions-label-sync;Repository to explore label sync via GHA;no_research; +https://github.com/MaxTru/gh-actions-pr-comment-test;;no_research; +https://github.com/MaxTru/gh-forms-playground;;no_research; +https://github.com/MaxTru/IntegerCompressionUtils;Utility functions for Unary and Gamma Integer Compression;no_research;Python +https://github.com/MaxTru/StudentPerformance;Prediction of student high school performance considering demographic and social features;no_research;HTML +https://github.com/MaxTru/SurvivingTitanic;D3 js visualization of Titanic survivors and casualties;no_research;HTML +https://github.com/mbrantner/newrepo02;;no_research; +https://github.com/mdickinson/bigfloat;Python wrapper for MPFR, providing high-precision floating-point arithmetic;no_research;Python +https://github.com/mdickinson/church;Simple interpreter for the untyped lambda calculus;no_research;Python +https://github.com/mdickinson/deccoeff;Fast coefficients for Python's decimal.py.;no_research;Python +https://github.com/mdickinson/float-proofs;Experiments with Coq to prove some results about floating-point.;no_research;Coq +https://github.com/mdickinson/pcgrandom;Drop-in replacement for Python's random.Random based on the PCG family of PRNGs.;no_research;Python +https://github.com/mdickinson/pentagrid;;no_research;Python +https://github.com/mdickinson/polyhedron;Robust point-in-polyhedron testing.;research;Python +https://github.com/mdickinson/pycfa;Control flow analysis for Python code;no_research;Python +https://github.com/mdickinson/quadfloat;Unofficial reference implementation of IEEE 754 (2008) binary interchange formats.;no_research;Python +https://github.com/mdickinson/refcycle;Support for displaying and analyzing reference graphs of Python objects.;no_research;Python +https://github.com/mdickinson/repeat;Really simple Python script to repeat a command indefinitely.;no_research;Python +https://github.com/mdickinson/rounders;;no_research;Python +https://github.com/mdickinson/simplefractions;;no_research;Python +https://github.com/mdickinson/snippets;Odds and ends, collected together for convenience;no_research;TeX +https://github.com/Mehdzor/altarix-test-backend;Alatarix test task backend;no_research;Go +https://github.com/menski/action-test;;no_research; +https://github.com/menski/alpine-pkg-xmlstarlet;The XMLStarlet Command Line XML Toolkit as Alpine Linux package;no_research; +https://github.com/menski/awesome-config;awesome wm configuration files;no_research;Lua +https://github.com/menski/backport-action;;no_research;JavaScript +https://github.com/menski/backport-test;;no_research; +https://github.com/menski/camunda-hazelcast-runner;;no_research;Java +https://github.com/menski/camunda-rest-deployment-example;A little example how to use the REST API to deploy processes to Camunda BPM;no_research;Java +https://github.com/menski/camunda-tngp-wireshark;[UNMAINTAINED] Camunda TNGP Protocol Wireshark Dissector;no_research;Lua +https://github.com/menski/cherubim-loadl;A Cherub plugin for the workload scheduler LoadLeveler;no_research;Python +https://github.com/menski/cloud-benchmark;;no_research;Shell +https://github.com/menski/consul-demo;Consul Demo for Camunda DevOps Roundtable;no_research; +https://github.com/menski/ctrader.py;;no_research;Python +https://github.com/menski/decision-starter;;no_research;Java +https://github.com/menski/didactic-fortnight;;no_research;Makefile +https://github.com/menski/dish-decision-as-a-service;Dish Decision with Camunda DMN Engine and AWS Lambda;no_research;Java +https://github.com/menski/dmn-engine-java-main-method;;no_research;Java +https://github.com/menski/dmn-rest-complex-object;;no_research;Java +https://github.com/menski/docker-bind9;Docker image for bind 9;no_research;DIGITAL Command Language +https://github.com/menski/docker-camunda-bpm-platform;;no_research;Shell +https://github.com/menski/docker-camunda-bpm-platform-new;;no_research;Shell +https://github.com/menski/docker-dev;Docker image with development tools;no_research; +https://github.com/menski/docker-iperf;Docker image for iperf tool;no_research; +https://github.com/menski/docker-nsupdate;Docker image for nsupdate;no_research; +https://github.com/menski/dotfiles;;no_research;VimL +https://github.com/menski/dotfiles-old;Minimal dotfiles;no_research;Self +https://github.com/menski/dothipster;Hipsterfied Minimalistic Dotfile Setup;no_research;VimL +https://github.com/menski/ec2-benchmark;;no_research;Java +https://github.com/menski/foobar;;no_research;Rust +https://github.com/menski/git-helper;Small shell scripts to ease working with multiple git repositories;no_research;Shell +https://github.com/menski/grip-docker;GitHub README.md Preview as Docker Image;no_research;Makefile +https://github.com/menski/I-woke-up-like-this;Re-reboot of camunda docker images;no_research;Shell +https://github.com/menski/master-thesis;Master Thesis;no_research;C +https://github.com/menski/menski.github.com;Blog;no_research;JavaScript +https://github.com/menski/minipcs-cookbook;cookbook for my minipcs like raspberry, beaglebone, cubietruck and cubox;no_research;Ruby +https://github.com/menski/Mobilkommunikation;"Seminar Netzwerktechnologien ""Mobilkommunikation"" ";no_research; +https://github.com/menski/model-api-demo;Demo of the camunda BPMN model API;no_research;JavaScript +https://github.com/menski/mrk.sed;sed script to parse mrk markup;no_research;Shell +https://github.com/menski/oh-my-zsh-custom;custom files for oh-my-zsh;no_research;Shell +https://github.com/menski/paramMCTS;Parameter tuning with MCTS;no_research;Python +https://github.com/menski/ppr-s11;Praktikum Paralleles Rechner - Sommersemester 2011;no_research;Python +https://github.com/menski/random-stream-server;Small TCP streaming server;no_research;Rust +https://github.com/menski/robosim;Robot Simulator;no_research;Java +https://github.com/menski/servload-0.5-fork;Fork of servload-0.5 tag;no_research;C +https://github.com/menski/slim-theme-dwm;Simple SLiM theme with dwm logo;no_research; +https://github.com/menski/sshmenu;Use dmenu to start new ssh sessions;no_research;Shell +https://github.com/menski/st;st is a simple terminal implementation for X. Forked from http://git.suckless.org/st;no_research;C +https://github.com/menski/tcpdump-analyse;tcpdump Analyse;no_research;TeX +https://github.com/menski/test;;no_research; +https://github.com/menski/test-travis-docker;;no_research;Shell +https://github.com/menski/Verteilte-System;;no_research;Java +https://github.com/menski/vim-config;Vim configuration files;no_research;VimL +https://github.com/menski/watch-clipboard-rs;Monitor clipboard for changes and print them to stdout;no_research;Rust +https://github.com/menski/WeddingCard;;no_research;Java +https://github.com/menski/wurstgulasch;DNS based process resource discovery;no_research;Java +https://github.com/menski/yacqt;Yet Another Camunda Cloud Quality Assurance Tool;no_research;Java +https://github.com/menski/zeebe-atomix;;no_research;Java +https://github.com/menski/zeebe-backport-action;;no_research;Shell +https://github.com/menski/zeebe-backport-action-js;;no_research;JavaScript +https://github.com/menski/zeebe-check-inventory-example;Zeebe Check Inventory Message Correlation Example;no_research;Java +https://github.com/menski/zeebe-cloud-bench;;no_research;Go +https://github.com/menski/zeebe-cluster-example;;no_research;Java +https://github.com/menski/zeebe-db-reader;;no_research;Java +https://github.com/menski/zeebe-incidents;;no_research;Java +https://github.com/menski/zeebe-latency-exporter;;no_research;Java +https://github.com/MerlindlH/meantest;test repo for the mean stack;no_research;JavaScript +https://github.com/MerlindlH/omjsparser;parser for open mensa written in js :);no_research;JavaScript +https://github.com/MerlindlH/Seminarfacharbeit---JCrypTool;;no_research; +https://github.com/merryman/csc-website;A small website, based on rails, for the Campus Sustainability Council at UCSC;no_research;JavaScript +https://github.com/merryman/ibn-battuta;test;no_research;JavaScript +https://github.com/merryman/lively-website-experiment;Experimental implementation of a personal website done with lively.next;no_research;JavaScript +https://github.com/merryman/partsbin;A repository to collect and share components in lively.next.;no_research; +https://github.com/merryman/test-project;Something to test if project creation is still working.;no_research;JavaScript +https://github.com/merryman/transmorphic;A Morphic centered around immutable view descriptions;no_research;Clojure +https://github.com/merwok/glitch-python-demo;;no_research; +https://github.com/meyerdan/camunda-cassandra-example;;no_research;Java +https://github.com/meyerdan/camunda-cloud-docs;Camunda Cloud Documentation;no_research; +https://github.com/meyerdan/camunda-hackdays-generative-music;;no_research;JavaScript +https://github.com/meyerdan/camunda-main;Start up camunda process engine in the main method of a java class;no_research;Java +https://github.com/meyerdan/camunda-worker-java;Competing Consumers (aka. Workers) for Camunda BPM ;no_research;Java +https://github.com/meyerdan/cycle-test;;no_research; +https://github.com/meyerdan/dotfiles;;no_research;VimL +https://github.com/meyerdan/eclipse-bpmn2;;no_research;Java +https://github.com/meyerdan/JavaEESummit2014;;no_research;Java +https://github.com/meyerdan/order-processing-demo;;no_research;JavaScript +https://github.com/meyerdan/order-processing-microservices;Microservice Order Processing with Camunda;no_research;Java +https://github.com/mgns/DBpediaLiveChangesets;;no_research;Java +https://github.com/mgns/dbpediarpv;Analyze DBpedia version changes;no_research;Python +https://github.com/mgns/my-map;;no_research;HTML +https://github.com/mgns/NIFcreator;;no_research;Java +https://github.com/mgns/PatchR;Collaborative Linked Data Cleansing;no_research;Java +https://github.com/mgns/RCStream;some experiments with Wikipedias RCStream API;no_research;Java +https://github.com/mgns/RDFDiffViewer;;no_research;JavaScript +https://github.com/mgns/SPARQLoud;;no_research;Python +https://github.com/mgns/SPARQLoud-Java;;no_research;Java +https://github.com/mgns/test;;no_research; +https://github.com/mgns/workadventuremap;;no_research;HTML +https://github.com/MichaelBuessemeyer/MyTrainingsPal;An android app allowing tracking of muscle soreness and suggesting training exercises not targeting sore muscles.;no_research;Kotlin +https://github.com/mikahoppe/BattleSnake;Battle Snake 2019;no_research;JavaScript +https://github.com/mikahoppe/BattleSnake-Spring;;no_research;TypeScript +https://github.com/mikahoppe/datenbanksysteme-exercises;;no_research;Kotlin +https://github.com/mikahoppe/deepl-parse-html;Node.js tool to translate html documents via the DeepL-API;no_research;JavaScript +https://github.com/mikahoppe/fakten-lernen-tms-trainer;"Android mobile app to TMS/EMS ""Fakten lernen""";no_research;TypeScript +https://github.com/mikahoppe/PhoenixProgrammer;Config files for my GitHub profile.;no_research; +https://github.com/milanpro/awsserver17;;no_research;Python +https://github.com/milanpro/ClusteringStreamData-Kafka;"Implementing the paper ""Clustering Stream Data by Exploring the Evolution of Density Mountain"" in the project seminar Mining Streaming Data at HPI";no_research;Scala +https://github.com/milanpro/Entschuldigungsparser;Vereinfachung des Entschuldigungsystems;no_research;Python +https://github.com/milanpro/Masterthesis-Heterogeneous-PC;Heterogeneous PC-stable - Master Thesis;no_research;C++ +https://github.com/milanpro/Masterthesis-Milan;;no_research;TeX +https://github.com/milanpro/ParProg20Assignments;;no_research;Python +https://github.com/milanpro/PT2;PT2_Aufgaben;no_research;Java +https://github.com/milanpro/react-rxdb;WIP: Library to connect RxDB with ReactJS;no_research;TypeScript +https://github.com/milanpro/rustyboy;A rust gameboy emulator;no_research;Rust +https://github.com/mlichtblau/esper-language;;no_research;JavaScript +https://github.com/mlichtblau/glo-board-api-node;;no_research;JavaScript +https://github.com/mlichtblau/hackupc2017v1;;no_research;Ruby +https://github.com/mlichtblau/hackupc2017v2;;no_research;TypeScript +https://github.com/mlichtblau/kraggl;Connect your Glo Board projects to your Toggl account and never forget to track your time again;no_research;EJS +https://github.com/mlichtblau/unicorn-adapter;Easily connect to Unicorn, the event processing engine;no_research;JavaScript +https://github.com/mlichtblau/wirvsvirus;;no_research;Ruby +https://github.com/mlichtblau/xlf-source-to-target;NPM tool to write xlf files with same target as source. Intended for use with angular i18n-polyfill package;no_research;JavaScript +https://github.com/mohamedrez/closest_store;;no_research;PHP +https://github.com/mohamedrez/graphql_demo;;no_research;Python +https://github.com/mohamedrez/grh;;no_research;Ruby +https://github.com/mohamedrez/human;;no_research;JavaScript +https://github.com/mohamedrez/hungry;;no_research;Ruby +https://github.com/mohamedrez/ilm;;no_research;PHP +https://github.com/mohamedrez/jstree_taxonomy;;no_research;JavaScript +https://github.com/mohamedrez/maktabah;;no_research;Ruby +https://github.com/mohamedrez/piw;piw;no_research;PHP +https://github.com/mohamedrez/POIOnTheRoad;;no_research;PHP +https://github.com/mohamedrez/rc2k_affectation;;no_research;JavaScript +https://github.com/MrBanhBao/3D-Design;3rd Semester: 3D Design;no_research; +https://github.com/MrBanhBao/Computer-Graphics;3rd Semester: Computer Graphics;no_research;Java +https://github.com/MrBanhBao/Coursera-R-Programming-Assignments;Coursera Course: R Programming by Johns Hopkins University;no_research;R +https://github.com/MrBanhBao/Coursera_IntroductionToDataScienceInPython;;no_research;Jupyter Notebook +https://github.com/MrBanhBao/d3-opposing-barchart;;no_research;JavaScript +https://github.com/MrBanhBao/dl4tm-project;;no_research;Jupyter Notebook +https://github.com/MrBanhBao/fundamentals_of_software_analytics;;no_research;Python +https://github.com/MrBanhBao/LearningArduino;Start Learning Arduino;no_research;Arduino +https://github.com/MrBanhBao/LearningD3;;no_research;JavaScript +https://github.com/MrBanhBao/open-spotify;;no_research;JavaScript +https://github.com/MrBanhBao/pureData_multimedia_programming;;no_research;Python +https://github.com/MrBanhBao/pySide6-examples;;no_research;Python +https://github.com/MrBanhBao/sensor-data-gans;;no_research;Jupyter Notebook +https://github.com/MrBanhBao/sveltekit-lvlup-tut;;no_research;Svelte +https://github.com/MrBanhBao/tailwind-tut;;no_research;Svelte +https://github.com/MrBanhBao/TextVisProject;;no_research;Jupyter Notebook +https://github.com/MrBanhBao/ThreeJS-Stuff;ThreeJS Playgound;no_research;JavaScript +https://github.com/mroeder/CouchDBack;Utilities for extracting a CouchDB to a CouchApp;no_research; +https://github.com/mtkunze/bibtex.js;JavaScript bibtex Library;no_research;TeX +https://github.com/mtkunze/bpm-methodcards;;no_research;JavaScript +https://github.com/mtkunze/cvbuildr;;no_research; +https://github.com/mtkunze/evaluation;;no_research;Java +https://github.com/mtkunze/jspe;;no_research; +https://github.com/mtkunze/latex;Some useful things for LaTeX typesetting.;no_research;TeX +https://github.com/mukel/bf;TruffleBrainf*ck interpreter;no_research;Java +https://github.com/mukel/Codebox;Algorithms snippets for programming contests;no_research;C++ +https://github.com/mukel/codeforces4s;Codeforces API Wrapper in Scala;no_research;Scala +https://github.com/mukel/contests;Competitive programming playground;no_research;C++ +https://github.com/mukel/cs211;Introduction à l'Informatique Visuelle EPFL (Team X);no_research;Java +https://github.com/mukel/epfml17-segmentation;Project 2: Road extraction from satellite images;no_research;Jupyter Notebook +https://github.com/mukel/GenginedBot;Telegram Bot for Google App Engine ;no_research;Scala +https://github.com/mukel/hashcode2016;HashCode 2016 Havana Blues;no_research;C++ +https://github.com/mukel/llama2.java;Inference Llama 2 in one file of pure Java;no_research;Java +https://github.com/mukel/mistral.java;Inference for mistral.ai models in pure Java.;no_research; +https://github.com/mukel/mukel.info;;no_research;JavaScript +https://github.com/mukel/mx-honey;:honey_pot: sweet (zsh) completions for mx;no_research;Shell +https://github.com/mukel/parsody;Fast parsers for Truffle :rocket:;no_research; +https://github.com/mukel/ProgrammingContests;Some codes for programming contests/online judges.;no_research;HTML +https://github.com/mukel/RegularExpressions;Simple RegExp matching using derivatives;no_research;Scala +https://github.com/mukel/scroll-magnet;:scroll: :arrow_down: Scroll magnet web-extension for Firefox/Chrome;no_research;JavaScript +https://github.com/mukel/XKillOverscroll;Tiny Xposed module which disable overscroll effect. ;no_research;Java +https://github.com/Munin33/Scylla_Rembrandt_Evaluation;This repository contains the database dump used for evaluating the business process simulation tool Scylla and the resource manager Rembrandt;no_research;JavaScript +https://github.com/mur47x111/CompilerTesting;;no_research;Java +https://github.com/mur47x111/DiSL-graal;;no_research;Java +https://github.com/mur47x111/DiSLDemo;;no_research;Java +https://github.com/mur47x111/graal-assisted-profilers;;no_research;Java +https://github.com/mur47x111/JDK8-concurrent-tagging;;no_research;C++ +https://github.com/mur47x111/jmh-test;;no_research;Java +https://github.com/mur47x111/mur47x111;;no_research; +https://github.com/mur47x111/pDiSL;;no_research;Java +https://github.com/mur47x111/svm-fasttagging;;no_research;Java +https://github.com/mur47x111/UnitTestProfilers;;no_research;Java +https://github.com/Museum-Barberini/Barberini-Analytics;A suite of data mining, analytics, and visualization solutions for analyzing museum data;no_research;Python +https://github.com/ncoghlan/admin-meta;Somewhere to file issues about archived repos :);no_research; +https://github.com/ncoghlan/ansible-vagrant-kubernetes;Bootstrapping a local k8s environment with Ansible & Vagrant;no_research;Python +https://github.com/ncoghlan/behave-pytest;Small utility package to integrate pytest asserts into Behave project;no_research;Python +https://github.com/ncoghlan/cockpit-tinkering;Tinkering repo to learn about how to create Cockpit plugins;no_research;HTML +https://github.com/ncoghlan/container-utils;Miscellaneous container related files without a better home;no_research; +https://github.com/ncoghlan/curiousefficiency;Source files for my blog at curiousefficiency.org;no_research;HTML +https://github.com/ncoghlan/debian-python;Docker files to make it easy for me to check CPython's behaviour on Debian;no_research; +https://github.com/ncoghlan/downstreaming;Streamlined initial downstream redistributor reviews of upstream projects;no_research;Python +https://github.com/ncoghlan/fedbuildenv;Fedora Docker environment for building RPMs, etc;no_research; +https://github.com/ncoghlan/jsl-elasticsearch;Generate ElasticSearch mappings from JSL definitions;no_research;Python +https://github.com/ncoghlan/microbit;Tinkering with the BBC microbit;no_research; +https://github.com/ncoghlan/misc;IPython notebooks, miscellaneous Python essays (including the Py3 Q&A), random snippets of code and proto-modules.;no_research;HTML +https://github.com/ncoghlan/optpython;Helpers to build, install, and package a custom CPython under /opt;no_research;Python +https://github.com/ncoghlan/pipcheckmeta;;no_research;Python +https://github.com/ncoghlan/pkg_resources_shim;"Download shim so ""pip install pkg_resources"" will install setuptools (with a setup.py warning that you actually want setuptools instead)";no_research;Python +https://github.com/ncoghlan/pulpdist;;no_research;Python +https://github.com/ncoghlan/pypi-data;Jupyter Notebooks for exploring PyPI download metrics;no_research;Jupyter Notebook +https://github.com/ncoghlan/pypi-dnf;PyPI upload of DNF bindings for use in virtual environments;no_research;Python +https://github.com/ncoghlan/pypi-rpm;;no_research;Python +https://github.com/ncoghlan/pypi-solv;Make the libsolv Python bindings available through PyPI;no_research;Python +https://github.com/ncoghlan/pyscl-devel;Utilities to assist in sclo-python maintenance;no_research; +https://github.com/ncoghlan/pyscorecard;Python client for submitting PMML ScoreCard models and queries against them to OpenScoring;no_research;Python +https://github.com/ncoghlan/python-release-latency;Measuring & reporting release latencies for CPython redistributors;no_research;Python +https://github.com/ncoghlan/python-userref;Detailed explanation of Python runtime constructs in terms of lower level constructs;no_research;Python +https://github.com/ncoghlan/repofunnel;RepoFunnel: a tool for aggregating and filtering upstream components into a downstream repo;no_research;Python +https://github.com/ncoghlan/rf-apitest;RepoFunnel API testing client;no_research;Cucumber +https://github.com/ncoghlan/scl-pipsi-demo;Illustrating challenges with Python scripts that rely on SCL runtimes;no_research; +https://github.com/ncoghlan/sclo-python;Metapackage for rolling Software Collection that tracks the latest upstream stable Python releases.;no_research; +https://github.com/nearlyeveryone/boxsplit;split the box for the people;no_research;Python +https://github.com/nearlyeveryone/bpm;;no_research;Python +https://github.com/nearlyeveryone/bpm-predictor;A BRNN for predicting beats using 'osu!' beatmaps as a dataset.;no_research;Python +https://github.com/nearlyeveryone/rpi-gpio-watcher;An Angular2 app, .NET Core 2.0, and python script for managing GPIO controls on a RPi.;no_research;C# +https://github.com/nearlyeveryone/tsp-genetic-algorithm;;no_research;C++ +https://github.com/nearlyeveryone/tsp-wisdom-of-crowds;Multithreaded solution for solving the Traveling Salesman Problem using a genetic algorithm and Wisdom of Crowds.;no_research;C++ +https://github.com/newapplesho/aws-sdk-smalltalk;AWS SDK for Smalltalk;no_research;Smalltalk +https://github.com/newapplesho/currencylayer-api-smalltalk;Pharo Smalltalk wrapper for currencylayer API;no_research;Smalltalk +https://github.com/newapplesho/DyNagoya-SOM;;no_research;Smalltalk +https://github.com/newapplesho/elasticsearch-smalltalk;Elasticsearch for Pharo Smalltalk;no_research;Smalltalk +https://github.com/newapplesho/fogbugzclient-smalltalk;;no_research;Smalltalk +https://github.com/newapplesho/gengo-smalltalk;;no_research; +https://github.com/newapplesho/google-api-smalltalk-client;Google APIs Client Library for Smalltalk;no_research;Smalltalk +https://github.com/newapplesho/mixpanel-smalltalk;Pharo Smalltalk Mixpanel Client Library;no_research;Smalltalk +https://github.com/newapplesho/oxr-smalltalk;Pharo Smalltalk wrapper for the Open Exchange Rates API;no_research;Smalltalk +https://github.com/newapplesho/pardot-smalltalk;Pardot API for Pharo Smalltalk;no_research;Smalltalk +https://github.com/newapplesho/resty-docker;;no_research;Dockerfile +https://github.com/newapplesho/rust-web-app-example;;no_research;Rust +https://github.com/newapplesho/salesforce-smalltalk;Salesforce API Library for Pharo Smalltalk;no_research;Smalltalk +https://github.com/newapplesho/sendgrid-smalltalk;SendGrid API Libraries for Smalltalk;no_research;Smalltalk +https://github.com/newapplesho/twilio-smalltalk;Smalltalk library for communicating with the Twilio REST API;no_research;Smalltalk +https://github.com/nicolas-alder/ALP3;Universitätsmodul;no_research;TeX +https://github.com/nicolas-alder/difflogictest;;research;Python +https://github.com/nicolas-alder/energy-efficient-gp;;no_research;Python +https://github.com/nicolas-alder/KAFKA-EFDT;"Implementing the paper ""Extremely Fast Decision Tree"" on Apache Kafka by Nicolas B. Alder and Henrik Wenck";research;Java +https://github.com/nicolas-alder/ScanVsIndex;HPI TUK Project;no_research;C++ +https://github.com/NicoNico6/ArchComp;;no_research;Python +https://github.com/NicoNico6/BiBERT_Unofficial;This is the Unofficial implementation of BiBERT paper ;no_research; +https://github.com/NicoNico6/bitorchinfo;;no_research; +https://github.com/NicoNico6/BTransformer;;no_research;Python +https://github.com/NicoNico6/BVDSR;;no_research; +https://github.com/NicoNico6/Hyper-BinaryNet;"This is the code for paper ""Gradients Matters: Designing Binarized Neural Network via Enhanced Infornation Flow""";no_research;Python +https://github.com/NicoNico6/Implement-of-Channel-Pruning-With-Pytorch;Trying to impleament CNN Channel-Pruning algorithm with Pytorch;no_research; +https://github.com/NicoNico6/ShadowRemoval;An impleamention of Towards Ghost-free Shadow Removal using pytorch;no_research;Python +https://github.com/nikku/.github;;no_research; +https://github.com/nikku/2021-token-simulation;Making of token simulation: Understanding bpmn-js extensibility one token at a time;no_research;HTML +https://github.com/nikku/2021-token-simulation-internals;An update on token simulation.;no_research;HTML +https://github.com/nikku/action_annotation;Allows to write human readable behavioural descriptions of controller actions which can be accessed inside a rails-app at runtime;no_research;Ruby +https://github.com/nikku/amvn;Maven with change detection and automatic rebuild.;no_research;JavaScript +https://github.com/nikku/angular-cookbook;A collection of Angular JS snippets;no_research; +https://github.com/nikku/angular-data-depend;A toolkit for implementing complex, data heavy AngularJS applications;no_research;JavaScript +https://github.com/nikku/annotation_security;AnnotationSecurity is a rails plugin which provides a security layer for rails applications. Security policies are set up based on actions and resources and not, as common, based on url patterns.;no_research;Ruby +https://github.com/nikku/async-didi;The async fellow of didi;no_research;JavaScript +https://github.com/nikku/auction-process-demo;A sample auction application built with camunda fox and Java EE technologies;no_research;Java +https://github.com/nikku/belbin;Belbin team inventory online test;no_research;JavaScript +https://github.com/nikku/bio-dts;;no_research;JavaScript +https://github.com/nikku/bpmn-js-cli-modeling-dsl;A modeling DSL for bpmn-js;no_research;JavaScript +https://github.com/nikku/bpmn-js-copy-paste-example;An example how to copy and paste between multiple instances of bpmn-js;no_research;JavaScript +https://github.com/nikku/bpmn-js-debug-overlay;Stepping controls for your BPMN 2.0 processes;no_research;JavaScript +https://github.com/nikku/bpmn-js-extension-demo;A demo application built around the bpmn-js modeler.;no_research;JavaScript +https://github.com/nikku/bpmn-js-nft;The bpmn-js NFT integration;no_research;JavaScript +https://github.com/nikku/bpmnlint-loader;Consume bpmnlint config files with webpack;no_research;JavaScript +https://github.com/nikku/bpmnlint-local-loading-test;;no_research;JavaScript +https://github.com/nikku/bpmnlint-pack-config;Pack bpmnlint configuration into a browser consumable bundle;no_research;JavaScript +https://github.com/nikku/camunda-bpm-community-day-2013;camunda BPM community day 2013 demo;no_research;JavaScript +https://github.com/nikku/camunda-deploy;Deploy to Camunda from the command-line.;no_research;JavaScript +https://github.com/nikku/camunda-modeler-plugins-talk-2019;;no_research;JavaScript +https://github.com/nikku/camunda-modeler-self-signed-root-ca-test;;no_research;Shell +https://github.com/nikku/camunda-playground;Try out and explore Camunda in minutes, not hours.;no_research;JavaScript +https://github.com/nikku/camunda-worker-monitor;An external task / worker monitor for Camunda;no_research;JavaScript +https://github.com/nikku/camunda-worker-node;Implement your external task workers for Camunda in NodeJS.;no_research;JavaScript +https://github.com/nikku/carbon-test;A quick and dirty Carbon test;no_research;HTML +https://github.com/nikku/cockpit-sample-plugin;A sample plugin for camunda cockpit;no_research;Java +https://github.com/nikku/continuous-delivery-without-jenkins-tm;A talk I gave as a Camunda tech talk in April 2020;no_research;HTML +https://github.com/nikku/create-bpmnlint-plugin;The bpmnlint plug-in scaffolding utility.;no_research;JavaScript +https://github.com/nikku/create-camunda-modeler-plugin;;no_research;JavaScript +https://github.com/nikku/custom-elements-not-workin;A test project verifying that custom elements are not production ready (yet);no_research;JavaScript +https://github.com/nikku/didi;Dependency Injection for JavaScript;no_research;JavaScript +https://github.com/nikku/dotfiles;Arch Linux # i3wm # tmux # web dev dot files;no_research;Shell +https://github.com/nikku/eslint-plugin-license-header;Rules to validate the presence of license headers in source files.;no_research;JavaScript +https://github.com/nikku/feel-playground;An interactive playground to try out and the DMN FEEL language. ;no_research;JavaScript +https://github.com/nikku/feelin;A DMN FEEL parser and interpreter written in JavaScript;no_research;JavaScript +https://github.com/nikku/file-drops;A simple in-browser file drop utility.;no_research;JavaScript +https://github.com/nikku/heroku-deploy-blueprint;;no_research; +https://github.com/nikku/hplayer;An audio drama fall asleep specialized command line based media player;no_research;JavaScript +https://github.com/nikku/hugo-cli;Run hugo (the static site generator) painlessly from Node;no_research;JavaScript +https://github.com/nikku/image-gallery;A simple to use image gallery;no_research;JavaScript +https://github.com/nikku/inherits-browser;Browser first inherits utility.;no_research;JavaScript +https://github.com/nikku/invisibleTower;A canvas game test project;no_research;JavaScript +https://github.com/nikku/jquery-bootstrap-scripting;A number of jQuery plugins to ease scripting of bootstrap featured pages.;no_research;JavaScript +https://github.com/nikku/jquery-controls;Registration of ajax handlers to bind to certain elements of a page;no_research;JavaScript +https://github.com/nikku/jquery-tagit;JQuery plugin for auto completion of tags;no_research;JavaScript +https://github.com/nikku/js-sax-parser-tests;The { EasySax - sax-js - Saxen } performance shoot out;no_research;JavaScript +https://github.com/nikku/karma-browserify;A fast Browserify integration for Karma that handles large projects with ease;no_research;JavaScript +https://github.com/nikku/karma-debug-launcher;Launches your favorite browser with your tests in DEBUG view.;no_research;JavaScript +https://github.com/nikku/kartoffeldruck;A all-in-one, opinionated, swiss army knife, hackable static site generator.;no_research;JavaScript +https://github.com/nikku/kellergucker;A stock value tracker application;no_research;Java +https://github.com/nikku/kickr.io;A social kicker app. Built with express.js, MongoDB and AngularJS;no_research;JavaScript +https://github.com/nikku/lang-feel;DMN FEEL language definition for CodeMirror 6;no_research;TypeScript +https://github.com/nikku/lefedt.de;The sources of my website;no_research;HTML +https://github.com/nikku/lezer-el;Lezer-based EL grammar;no_research;JavaScript +https://github.com/nikku/lezer-feel;Lezer grammar definition for the DMN 1.3 FEEL language;no_research;JavaScript +https://github.com/nikku/linux-utils;Utilities that make my life easier as a Linux user;no_research;Shell +https://github.com/nikku/lordsandknights.automate.js;In-browser automation for Lords and Knights;no_research; +https://github.com/nikku/markmark;Markdown language tooling, exposed as a language server;no_research;JavaScript +https://github.com/nikku/merge-me;A GitHub app that merges your pull requests once all required checks pass.;no_research;JavaScript +https://github.com/nikku/merge-me-app;A running instance of the merge-me GitHub app;no_research; +https://github.com/nikku/mons;Stay sane with your multi screen configuration.;no_research;JavaScript +https://github.com/nikku/nashorn-async;Simple async support for Nashorn (the Java 8 JavaScript Engine);no_research;JavaScript +https://github.com/nikku/ng-simple-dialog;A simple dialog component for AngularJS;no_research;JavaScript +https://github.com/nikku/nixis-commons;Some handy helper libraries for lightweight java web development;no_research;Java +https://github.com/nikku/node-project;Template repository for node-based projects;no_research;JavaScript +https://github.com/nikku/node-xsd-schema-validator;A schema (XSD) validator for NodeJS;no_research;JavaScript +https://github.com/nikku/order-demo-camundacon-2019;;no_research;JavaScript +https://github.com/nikku/pfwr;Turns your Markdown file into a beautiful HTML slide deck. Batteries included.;no_research;HTML +https://github.com/nikku/play-2.1.1-testing-samples;Samples for Testing Play 2.1.x applications. Result of Play user group talk in Berlin, 2013-04-15.;no_research;Scala +https://github.com/nikku/probot-1475-repro;;no_research;TypeScript +https://github.com/nikku/process-engine-async-test;;no_research;Java +https://github.com/nikku/requirejs-angular-define;A friendly integration of AngularJS into RequireJS powered applications;no_research;JavaScript +https://github.com/noha/ASN.1;Smalltalk implementation of a ASN.1 parser that compiles into a runtime model;no_research;Smalltalk +https://github.com/noha/Base62;Base62 short id generation;no_research;Smalltalk +https://github.com/noha/Cassowary;Cassowary constraint solving ;no_research;Smalltalk +https://github.com/noha/Erlang;Implementation of thenErlang model on pharo;no_research;Smalltalk +https://github.com/noha/Foliage;A simple static site generator;no_research;Smalltalk +https://github.com/noha/gsbuilder;jenkins integration for gemstone;no_research;Smalltalk +https://github.com/noha/image-launch;A set of script to make it easier starting pharo images;no_research;Smalltalk +https://github.com/noha/JSONWebToken;A pharo implementation of JSON web token (JWT);no_research;Smalltalk +https://github.com/noha/Mandrill;Pharo implementation of the mandrill mail API;no_research;Smalltalk +https://github.com/noha/mustache;A mustache template implementation in smalltalk;no_research;Smalltalk +https://github.com/noha/noha.github.com;;no_research; +https://github.com/noha/openhab;A hacky client to access OpenHAB;no_research;Smalltalk +https://github.com/noha/pharo-cluster;Test repo to play with clustering of pharo images;no_research; +https://github.com/noha/pharo-minimal;A set of scripts and resources to produce a pharo minimal headless image;no_research;Smalltalk +https://github.com/noha/pharo-pcap;Simple scanner for pcap files;no_research;Smalltalk +https://github.com/noha/pharo-scripts;Some scripts to use pharo and tools from the commandline;no_research;Shell +https://github.com/noha/pharo-toolbox;A collection of little tools for pharo;no_research;Smalltalk +https://github.com/noha/Prolog;An attempt to implement a prolog interpreter in pharo;no_research;Smalltalk +https://github.com/noha/prolog-todo-web-app;An implementation of a todo web app in prolog for prolog advanced class;no_research;JavaScript +https://github.com/noha/Recurring;An implementation that deals with temporal recurring events. ;no_research;Smalltalk +https://github.com/noha/slides-functions-in-js;slides about functions in javascript (german);no_research;JavaScript +https://github.com/noha/stone-creator;builds a directory to hold a new stone;no_research;Shell +https://github.com/noha/TCPProxy;A small hacked tcp proxy with remote control;no_research;Smalltalk +https://github.com/noha/toggl;Implementation of the Toggl (http://toggl.com) API;no_research;Smalltalk +https://github.com/noha/Transactional;An experiment to have concurrent memory transactions;no_research;Smalltalk +https://github.com/noha/virtual-gemstone;bootstrapping a virtual appliance that runs the GemStone OO database and prerequisites to run web applications;no_research;Ruby +https://github.com/noha/X.509;Simple implementation of a parser for X.509 using ASN.1 library;no_research;HTML +https://github.com/noha/XML-Schema;A simple start of a XML Schema reader and model builder to examine XSD;no_research;Smalltalk +https://github.com/noha/xml-testsuite;very simple test suite that helps when creating an XML schema;no_research;Shell +https://github.com/noha/Zuul;A simple password manager;no_research;Smalltalk +https://github.com/NoSuck/CursesPadScroller;Pass a putwin() pad. Scroll with j/k. See bug-ncurses mailing list from September, 2015.;no_research;C +https://github.com/NoSuck/lcs;longest common string: a visualization of an interesting problem;no_research;Shell +https://github.com/NoSuck/MuttMailto;Parses mailto links for mutt.;no_research;Shell +https://github.com/nukopy/archived-atcoder;for competitive programming;no_research;C++ +https://github.com/nukopy/ARCHIVED-linux-in-practice;「試して理解 Linux のしくみ(技術評論社,2018)」の実験用リポジトリ;no_research;Shell +https://github.com/nukopy/arkit-book;;no_research; +https://github.com/nukopy/aws-cfn-templates;;no_research;Shell +https://github.com/nukopy/aws-ecs-fargate-rds-template;;no_research;Python +https://github.com/nukopy/aws-practice;Practice AWS;no_research;Python +https://github.com/nukopy/aws-spa-api-template;;no_research;Python +https://github.com/nukopy/basic-html-css-javascript;;no_research;JavaScript +https://github.com/nukopy/circleci-pytest;;no_research; +https://github.com/nukopy/competitive-programming-library;;no_research;Python +https://github.com/nukopy/csharp-introduction;;no_research;C# +https://github.com/nukopy/dart-introduction;;no_research;Dart +https://github.com/nukopy/deep-learning-from-scratch;;no_research;Python +https://github.com/nukopy/dev-wiki;;no_research; +https://github.com/nukopy/djangogirls;Created my blog by Django Girls Tutorial.;no_research;Python +https://github.com/nukopy/dotfiles;My dotfiles repository;no_research;Emacs Lisp +https://github.com/nukopy/Essence_of_ML;implementation of Essence of ML(2018, SB creative);no_research;Python +https://github.com/nukopy/flutter-practical-introduction;;no_research;C++ +https://github.com/nukopy/go-ads;Algorithms and Data Structures in Go;no_research;Go +https://github.com/nukopy/go-cli-basic;;no_research; +https://github.com/nukopy/go-gitlab-api-usage;;no_research;Go +https://github.com/nukopy/go-tcpip-protocol-stack;;no_research; +https://github.com/nukopy/golang-perfect-introduction;;no_research;Go +https://github.com/nukopy/grpc-tutorial;;no_research;Go +https://github.com/nukopy/HariboteOS;;no_research; +https://github.com/nukopy/hello-deno;;no_research;TypeScript +https://github.com/nukopy/HowToCreateGameWithUnity;;no_research;ShaderLab +https://github.com/nukopy/intro-sqlc;;no_research;Go +https://github.com/nukopy/intro-sqlx;;no_research;Rust +https://github.com/nukopy/ios-todo-app-architectures;;no_research; +https://github.com/nukopy/isucon10-qualify;;no_research;Python +https://github.com/nukopy/JetBrainsRiderSettings;;no_research; +https://github.com/nukopy/jupyter-book-test;;no_research;TeX +https://github.com/nukopy/Kaleidoscope;"LLVM tutorial: Implementing a Language called ""Kaleidoscope"" with LLVM";no_research;C++ +https://github.com/nukopy/Landmarks;iOS app for discovering and sharing the places you love;no_research;Swift +https://github.com/nukopy/latex-in-docker-on-vscode;"LaTeX environment in Docker on VSCode with extension ""Remote - Containers"", ""LaTeX Workshop""";no_research;TeX +https://github.com/nukopy/learn-io-from-golang;;no_research;Go +https://github.com/nukopy/learning-SQL;;no_research;TSQL +https://github.com/nukopy/lerna-monorepo-test;;no_research;TypeScript +https://github.com/nukopy/libraries;Libraries for competitive programming(e.g. AtCoder);no_research;C++ +https://github.com/nukopy/linux-in-practice-2nd;「[試して理解] Linux のしくみ - 実験と図解で学ぶ OS、仮想マシン、コンテナの基礎知識【増補改訂版】(技術評論社、2022/10)」の実験用リポジトリ;no_research;Shell +https://github.com/nukopy/lisp-lang;My LISP playgroud;no_research;Common Lisp +https://github.com/nukopy/markdown-parser-py;Markdown parser with Python from scratch.;no_research; +https://github.com/nukopy/math-calculus;;no_research;TeX +https://github.com/nukopy/math-girls;数学ガールの読書ノート;no_research;TeX +https://github.com/nukopy/mathematics;;no_research; +https://github.com/nukopy/mathematics-of-realtime-graphics;;no_research; +https://github.com/nukopy/mini-redis;;no_research;Rust +https://github.com/nukopy/mixi-ios-swiftui-training;;no_research;Swift +https://github.com/nukopy/nand2tetris;Learning 'The Elements of Computing Systems', By Noam Nisan and Shimon Schocken (MIT Press);no_research;C++ +https://github.com/nukopy/network-analysis-with-python;;no_research;Jupyter Notebook +https://github.com/nukopy/nextjs-prisma-graphql-web-app;;no_research;TypeScript +https://github.com/nukopy/nginx-docker-test;;no_research;Dockerfile +https://github.com/nukopy/nodejs-playground;;no_research;HTML +https://github.com/nukopy/nukopy;;no_research; +https://github.com/nukopy/nukopy-home;;no_research; +https://github.com/nukopy/nukopy.com;WIP: My Personal Website;no_research;TypeScript +https://github.com/nukopy/past-application-architectures;Implement various application architecture with FastAPI;no_research;Python +https://github.com/nukopy/past-competitive-programming;Competitive programming codes;no_research;C++ +https://github.com/nukopy/past-mathematics;Study records of mathematics. Each note is written with LaTeX.;no_research;TeX +https://github.com/nukopy/pdf-text-adder-py;;no_research;Python +https://github.com/nukopy/portfolio;My portfolio with Next.js/TypeScript;no_research;TypeScript +https://github.com/nukopy/postgresql-docker-compose-template;;no_research; +https://github.com/nukopy/python-sandbox;My Python Sandbox;no_research;Dockerfile +https://github.com/nukopy/react-fastapi-auth-template;;no_research; +https://github.com/nukopy/react-playground;;no_research; +https://github.com/nukopy/react-typescript-main-concepts;;no_research;TypeScript +https://github.com/nukopy/react-typescript-tutorial;;no_research;TypeScript +https://github.com/nukopy/reddit-clone-flutter;;no_research; +https://github.com/nukopy/relax-mint-vscode-theme;A Visual Studio Code theme, Relax Mint, dark green & grey for eyes.;no_research; +https://github.com/nukopy/remix-test;;no_research; +https://github.com/nukopy/rit;Implementation of Git in Rust;no_research;Rust +https://github.com/nukopy/road-to-intermediate-of-golang;;no_research;Go +https://github.com/nukopy/rollup-test;;no_research; +https://github.com/nukopy/rsbotters;;no_research;Rust +https://github.com/nukopy/rust-playground;;no_research;Rust +https://github.com/nukopy/rust-tokio-understanding-asynchronous-and-green-thread;;no_research;Rust +https://github.com/nukopy/slides;;no_research;CSS +https://github.com/nukopy/software-rendering-3dcg-rasterization;;no_research;Rust +https://github.com/nukopy/spa-api-login-template;;no_research; +https://github.com/nukopy/statistics-note;Summary of statistics in PDF format: https://github.com/nukopy/statistics-note/tree/master/out;no_research;TeX +https://github.com/numberpi/bigdisplays;;no_research;Python +https://github.com/numberpi/thesis-progress;;no_research;HTML +https://github.com/oclasen/ddm2018;;no_research;Java +https://github.com/oguzeroglu/Ego;A lightweight decision making library for game AI.;no_research;JavaScript +https://github.com/oguzeroglu/Kompute;A pluggable steering library for game AI.;no_research;JavaScript +https://github.com/oguzeroglu/kompute-demos-with-roygbiv;This repository hosts Kompute library demos rendered via ROYGBIV engine;no_research;GLSL +https://github.com/oguzeroglu/Nearby;Find nearby 3D objects in constant time O(1).;no_research;JavaScript +https://github.com/oguzeroglu/Rhubarb;A WebSocket library optimized for multiplayer JS games, works on WebWorkers with binary data.;no_research;JavaScript +https://github.com/oguzeroglu/ROYGBIV;A 3D engine for the Web;no_research;JavaScript +https://github.com/oguzeroglu/TextureMerger;A lightweight library that creates a Texture Atlas from Three.js textures;no_research;JavaScript +https://github.com/olegsfinest/find-and-import-Pgp-keys-for-contacts;Checks all of your emails stored in your contacts if they have a public key available;no_research;Shell +https://github.com/olegsfinest/skatify;a small nifty lightweight list for skat;no_research; +https://github.com/olegsfinest/tailr_concurrent-upload;a small client, that allows synchronus uploading to the tailr platform (https://github.com/pmeinhardt/tlr;no_research; +https://github.com/oliveradameck/ORA;;no_research;Python +https://github.com/olpaw/jfr-parser_repro_case_graalvm_linkage_bug-bevans;;no_research;Java +https://github.com/olpaw/quarkus-hello-world;;no_research;Java +https://github.com/Oluwoye/ddm-konfuzius-kung-fu-confusion;Distributed Data Management 2019 Group: Konfuzius Kung Fu Confusion;no_research;Java +https://github.com/Oluwoye/DimensionReduction;Based on the work Mateusz Espadoto and Youngjoo Kim;no_research;Python +https://github.com/Oluwoye/Don-t_be_stupid-;New Go book: Come on! Don't be stupid! written in German;no_research; +https://github.com/Oluwoye/SCT2020_TopicBundestag;;no_research;Python +https://github.com/Oluwoye/website;;no_research;Pug +https://github.com/onsetsu/active-collection-prototype;A JavaScript Prototype of Reactive Object Queries;no_research;JavaScript +https://github.com/onsetsu/active-expressions-git-copy;;no_research; +https://github.com/onsetsu/active-expressions-git-target;;no_research; +https://github.com/onsetsu/area51;A zone implementation derived from Dexie.Promise for stand-alone use;no_research;JavaScript +https://github.com/onsetsu/area51-dexie;;no_research;JavaScript +https://github.com/onsetsu/array-to-stack;A useless(?) utility to test webpack module workflow.;no_research;JavaScript +https://github.com/onsetsu/bloob;An experimental HTML5 Game Engine featuring soft body physics.;no_research;JavaScript +https://github.com/onsetsu/boilerplate-webpack;A boilerplate for JavaScript libraries featuring webpack, karma, jasmine, coverage via istanbul and babel6 plugins.;no_research;JavaScript +https://github.com/onsetsu/buoyancy-chart;A d3 visualization inspired by Shan Carter's visualization on Obama’s Budget Proposal.;no_research;JavaScript +https://github.com/onsetsu/codemine;Mining JavaScript modules for hidden aspects.;no_research;JavaScript +https://github.com/onsetsu/cop-es7;A JavaScript implementation of context-oriented programming layers using ES7 decorators.;no_research;JavaScript +https://github.com/onsetsu/cop2.0;Fast, simple, and extensible context-oriented programming;no_research;JavaScript +https://github.com/onsetsu/d3-bundleview;A d3 implementation of bundleviews (circular edge bundles);research;JavaScript +https://github.com/onsetsu/dbuggr;Abstraction-aware Debugging Tools for JavaScript;no_research;JavaScript +https://github.com/onsetsu/dbuggr-chrome-remote-debugging;Testing Chrome's remote debugging protocol and facilities ;no_research; +https://github.com/onsetsu/dbuggr-node-inspector;Testing node-inspector regarding its suitability for dbuggr;no_research; +https://github.com/onsetsu/dragon-natlink-dragonfly-installation-guide;;no_research;Python +https://github.com/onsetsu/dwarfcassowary;Yet another port of the dwarfcassowary library;no_research; +https://github.com/onsetsu/es6module-test;;no_research;JavaScript +https://github.com/onsetsu/floom;A JavaScript Fluid Simulation using the Material Point Method (MPM);no_research;JavaScript +https://github.com/onsetsu/GameJam6;The most awesome game ever with just one button as input;no_research;GAP +https://github.com/onsetsu/gengo;Language experiments;no_research;JavaScript +https://github.com/onsetsu/gesture_recognition;Exploring the possibilities of gestures;no_research; +https://github.com/onsetsu/how-to-hack-your-dragon;A selection of Dragonfly grammers for voice coding in PyCharm and Lively4;no_research;Python +https://github.com/onsetsu/HPIGameJam;;no_research;GDScript +https://github.com/onsetsu/ink-to-text-server;Ink to text server for proxying Windows UWP;no_research; +https://github.com/onsetsu/ink-to-text-service;Ink to text server for proxying WinRT module;no_research; +https://github.com/onsetsu/intentional-javascript;An experimental environment to test ideas on intentional programming, live programming, and time-traveling.;no_research;JavaScript +https://github.com/onsetsu/jellojs;Extended port of Walabers soft body physics engine to JavaScript;no_research;JavaScript +https://github.com/onsetsu/lazygreedysolver;A lazy greedy solver to satisfy a set of constraints;no_research; +https://github.com/onsetsu/lively-email-proxy;An email client (imap) with a proxy for https://lively-kernel.org/lively4/lively4-core/start.html on top;no_research;JavaScript +https://github.com/onsetsu/lively4-core;Core functionality for Lively4 module management;no_research;JavaScript +https://github.com/onsetsu/livsel;A JavaScript framework for automatically updating data structures.;no_research;JavaScript +https://github.com/onsetsu/miniclass;A tiny JavaScript class library.;no_research;JavaScript +https://github.com/onsetsu/minimodule;A tiny JavaScript module library.;no_research;JavaScript +https://github.com/onsetsu/ml.js;Machine learning library for JavaScript (ANN);no_research;JavaScript +https://github.com/onsetsu/onsetsu;A prototype of Onsetsu in fashion of Duel Network (not automated);no_research; +https://github.com/onsetsu/onsetsu-prototype;A prototype of Onsetsu in fashion of Dueling Network (not automated);no_research;JavaScript +https://github.com/onsetsu/onsetsu.engine;A JavaScript engine for Onsetsu.;no_research;JavaScript +https://github.com/onsetsu/prefab.js;Embrace prototypical inheritance;no_research;JavaScript +https://github.com/onsetsu/reflective-js;Allow for AOP-like hooks into JavaScript execution;no_research;JavaScript +https://github.com/onsetsu/repotodelete;A repository to be deleted by Lively4.;no_research; +https://github.com/onsetsu/rttcg-mvp-original-idea;Game Prototype for a real-time TCG (corresponds to the original idea);no_research;GDScript +https://github.com/onsetsu/scarlet;Base JavaScript Framework;no_research;JavaScript +https://github.com/onsetsu/service-worker-testing;Testing Service Worker API;no_research;JavaScript +https://github.com/onsetsu/stack-es2015-module;The stack data type as es2015 module;no_research;JavaScript +https://github.com/onsetsu/syllableboard;Logic for Onsetsu prototype;no_research;JavaScript +https://github.com/onsetsu/t3;Javascript framework that uses d3.js to layout 3D scenes with three.js;no_research; +https://github.com/onsetsu/thesis-progress;;no_research;JavaScript +https://github.com/onsetsu/tree-generator;A generator for tree-like input data to d3 visualizations (including hierarchical and relational edges).;no_research;JavaScript +https://github.com/onsetsu/understanding-zone.js-and-dexie-promises;Check how zone.js interacts with native await;no_research;JavaScript +https://github.com/onsetsu/ursuppe;Genetic Programming for Node.js;no_research;JavaScript +https://github.com/onsetsu/webrtc-testing;testing webrtc libraries;no_research;JavaScript +https://github.com/onsetsu/wombo-puppet;;no_research;JavaScript +https://github.com/orsenthil/acmedevhq;acmedevhq - repo for testing purposes.;no_research;Python +https://github.com/orsenthil/adminer-on-mac;Using Adminer on Mac.;no_research; +https://github.com/orsenthil/algs4-py;;no_research;Python +https://github.com/orsenthil/aws-explorer;;no_research;JavaScript +https://github.com/orsenthil/cloudutils;;no_research;Python +https://github.com/orsenthil/contests;Repo for various programming contest problems.;no_research;Python +https://github.com/orsenthil/coursedocs;Notes from OMSCS Lectures and Transcripts.;no_research;Python +https://github.com/orsenthil/cpython-design;design notes of cpython.;no_research; +https://github.com/orsenthil/cpython-hg-to-git;Hg to Git Migrator;no_research;Python +https://github.com/orsenthil/dillo;Git repository for https://hg.dillo.org/dillo maintained by me.;no_research;C++ +https://github.com/orsenthil/docker-library;Personal Docker file library.;no_research;Dockerfile +https://github.com/orsenthil/eksctl-explorer;eksctl-explorer;no_research;JavaScript +https://github.com/orsenthil/experiments;;no_research; +https://github.com/orsenthil/fortune-browser-extension;Browser Extension that gives a random new quote.;no_research;JavaScript +https://github.com/orsenthil/go-cmdtest-example;Demonstration of go-cmdtest usage;no_research;Go +https://github.com/orsenthil/golinks;golinks;no_research;Python +https://github.com/orsenthil/goproject;A simple go project.;no_research;Go +https://github.com/orsenthil/gtkhello;gtk hello;no_research;C +https://github.com/orsenthil/hello-api;hello-api;no_research;Python +https://github.com/orsenthil/hg-git;hg-git repo;no_research; +https://github.com/orsenthil/ke;small editor in C. Followig this tutorial: https://github.com/antirez/kilo;no_research;C +https://github.com/orsenthil/kubectl-explorer;;no_research;JavaScript +https://github.com/orsenthil/learn-python-with-tests;Learn Python with tests;no_research;Python +https://github.com/orsenthil/maven-failsafe-example;A complete example of maven failsafe test.;no_research;Java +https://github.com/orsenthil/mock-introduction;introduction to mock testing using python;no_research;Python +https://github.com/orsenthil/mysql-adminer;mysql and adminer via docker-compose;no_research; +https://github.com/orsenthil/numpy-tutorial;A tutorial introduction to numpy;no_research;Python +https://github.com/orsenthil/opencv_intro_cmake;Open CV setup on Ubuntu;no_research;C++ +https://github.com/orsenthil/projects;projects.learntosolveit.com;no_research;CSS +https://github.com/orsenthil/pyljvim;vim plugin for posting to livejournal;no_research;Python +https://github.com/orsenthil/redditbot; Reddit Bot for sending CoronaVirus News by Email.;no_research;Python +https://github.com/orsenthil/senthil.learntosolveit.com;Senthil Kumaran's Blog;no_research;Python +https://github.com/orsenthil/simple-shell;simple shell implementation (Based on https://brennan.io/2015/01/16/write-a-shell-in-c/) ;no_research;C +https://github.com/orsenthil/smile-camera;smile camera;no_research;Python +https://github.com/orsenthil/snakegame;snakegame in c++;no_research;CMake +https://github.com/orsenthil/sskweb;Spastics Society Of Karnataka website;no_research;Python +https://github.com/orsenthil/tools;Configuration files for various tools / programs that I use on my mac and linux;no_research;Shell +https://github.com/orsenthil/udacity-webapp-course;Web Application for Udacity Course CS 253;no_research;Python +https://github.com/orsenthil/who-slides-wins;15 puzzle. AI vs human.;no_research;Python +https://github.com/Palez/Graphing-;;no_research;R +https://github.com/Palez/JS2TS;;no_research;JavaScript +https://github.com/Palez/Thesis;Thesis;no_research; +https://github.com/patrickdundas/BunnyHill;;no_research; +https://github.com/patrickdundas/GameOfSet;Game of Set with Java 8 and JavaFX;no_research;Java +https://github.com/patrickdundas/menu-reader;;no_research; +https://github.com/paul-ww/elte-sqtg;Repository for the Selenium Assignment for ELTE's Software Quality and Testing course;no_research;Java +https://github.com/Paula-Kli/skat-reinforcement;;no_research;Python +https://github.com/Paulpanther/AbletonMidiControls;Control Ableton from your ESP32;no_research;C++ +https://github.com/Paulpanther/analog-synth;Modular Synth inspired by https://www.youtube.com/@MoritzKlein0;no_research; +https://github.com/Paulpanther/AudioMaze;Experience topology through audio;no_research;C# +https://github.com/Paulpanther/CastlesAndDragons;Frustrating online game to play with your local Antonius;no_research;Kotlin +https://github.com/Paulpanther/cc;Competitive Programming Things;no_research;Python +https://github.com/Paulpanther/funkECS;A entity-component-system based language;no_research;C +https://github.com/Paulpanther/GameJam11;Chronos House;no_research;GDScript +https://github.com/Paulpanther/Highscore;;no_research;Vue +https://github.com/Paulpanther/info-flow;;no_research;Jupyter Notebook +https://github.com/Paulpanther/intellij-action-detection;;no_research;Kotlin +https://github.com/Paulpanther/intellij-babylonian-plugin;Fast and intuitive Babylonian Live Programming in Intellij IDEA;no_research;Kotlin +https://github.com/Paulpanther/intellij-keyword-info-kotlin;Show information on hover for Kotlin Keywords.;no_research;Kotlin +https://github.com/Paulpanther/intellij-squeak;Intellij Plugin to edit and execute Smalltalk code from your Squeak Image;no_research;Kotlin +https://github.com/Paulpanther/kyubcraft;Build in minecraft, export to https://kyub.com and lasercut;no_research;Java +https://github.com/Paulpanther/LaserGenerator;Tool for generating patterns for the laser cutter;no_research;TypeScript +https://github.com/Paulpanther/LaserStuff;Objects that can be Laser-cutted;no_research; +https://github.com/Paulpanther/Miisery;;no_research;TypeScript +https://github.com/Paulpanther/ModPathfinder;;no_research;Java +https://github.com/Paulpanther/MonstrousSounds;The hardest Game since Dark Souls;no_research;C# +https://github.com/Paulpanther/MultiplayerTowerDefense;;no_research;GDScript +https://github.com/Paulpanther/muse-embedded-live-programming;MμSE is a plugin for CLion that provides example-based live programming for embedded systems;no_research;Kotlin +https://github.com/Paulpanther/Parceljs-Vue-Ts-Template;Template for static website using parcel-bundler with vue written in ts, pug and sass;no_research;Vue +https://github.com/Paulpanther/Random-Music-Generator;Ein Zufallsmusikgenerator, der einen Kanon komponiert;no_research;Java +https://github.com/Paulpanther/RobotRace;;no_research;C++ +https://github.com/Paulpanther/rps101parser;Parses https://www.umop.com/rps101/1.htm (Rock Paper Scissors with 101 gestures) into json and downloads images;no_research;Python +https://github.com/Paulpanther/sent-from-my-iphone;"Git Hook that adds the line ""Sent from my iPhone"" at the end of your commits";no_research;Shell +https://github.com/Paulpanther/Spacescaper;;no_research;GDScript +https://github.com/Paulpanther/squeak-intellij-plugin;Plugin for Squeak that lets it talk to Intellij IDE;no_research;Smalltalk +https://github.com/Paulpanther/StayhomeApp;Android App that helps you staying home during COVID-19 #WirVsVirus;no_research;Kotlin +https://github.com/Paulpanther/SustainabilityLeaderboard;Show the Co2 and other emissions for your travel route and compare it to others ;no_research;TypeScript +https://github.com/Paulpanther/TelegramTemplatePollBot;WIP. Create and send Poll-Templates;no_research;Kotlin +https://github.com/Paulpanther/TestByExample;Write Tests as Example-Annotations;no_research;Kotlin +https://github.com/Paulpanther/TestByExample-Intellij;;no_research;Kotlin +https://github.com/Paulpanther/TruthBeToldTelegramBot;;no_research;Kotlin +https://github.com/Paulpanther/twitter2stickerbot;Creates Telegram Stickers from Twitter Posts;no_research;Kotlin +https://github.com/Paulpanther/VoicesInMyHead;;no_research;ShaderLab +https://github.com/PaulVII/coma-project;;no_research;HTML +https://github.com/PaulVII/er-test;;no_research;Vue +https://github.com/PaulVII/init-covradar-cache;;no_research;TypeScript +https://github.com/PaulVII/microbit-chrone-dinosaur;Microbit example inspired by a famous web browser's offline minigame. Built for Girls' Day 2021@HPI;no_research;TypeScript +https://github.com/pbowden-msft/CrashLogger;Microsoft Office 2016 Crash Logger Tool;no_research;Shell +https://github.com/pbowden-msft/DisableStore;Microsoft Office 365/2019/2016 Disable Store Tool;no_research;Shell +https://github.com/pbowden-msft/DisableWordProofing;Tool to disable Word speller, grammar and auto-correct proofing;no_research;Python +https://github.com/pbowden-msft/ExtensionAttributes;Jamf Pro Extension Attribute Library;no_research;Shell +https://github.com/pbowden-msft/FlightReset;Microsoft Office 365/2019/2016 for Mac Flight Reset Tool;no_research;Shell +https://github.com/pbowden-msft/GalleryViewPoke;Microsoft Office 2016 for Mac Gallery View Changer;no_research;Shell +https://github.com/pbowden-msft/InstallerCache;Microsoft Office 365/2019/2016 Installer Cache;no_research;Shell +https://github.com/pbowden-msft/JamfManifests;Jamf JSON Manifests for Microsoft Office;no_research; +https://github.com/pbowden-msft/MAUCacheAdmin;Microsoft AutoUpdate Cache Admin;no_research;PowerShell +https://github.com/pbowden-msft/MobileConfigs;macOS Configuration Profiles;no_research; +https://github.com/pbowden-msft/msupdatehelper;msupdate helper for Jamf Pro;no_research;Shell +https://github.com/pbowden-msft/NukeOffKeychain;Microsoft Office 365/2019/2016 Keychain Removal Tool;no_research;Shell +https://github.com/pbowden-msft/O365NetworkTest;Office 365 Network Tester;no_research;Python +https://github.com/pbowden-msft/OfficeCDNCheck;Microsoft Office CDN Version Check;no_research;Shell +https://github.com/pbowden-msft/OfficeDetect;Microsoft Office Detection Tool;no_research;Shell +https://github.com/pbowden-msft/OutlookDBVer;Microsoft Outlook 365/2021/2019/2016 Database Version;no_research;Shell +https://github.com/pbowden-msft/OutlookFontPoke;Microsoft Outlook 365/2019/2016 for Mac Default Font Changer;no_research;Shell +https://github.com/pbowden-msft/Payloads;MDM Payloads;no_research; +https://github.com/pbowden-msft/PromoteAddIns;Helper script for New Outlook to promote conference call add-ins to the toolbar;no_research;Shell +https://github.com/pbowden-msft/RegMAU;Microsoft Office 365/2019/2016 Register AutoUpdate;no_research;Shell +https://github.com/pbowden-msft/Remove2011;Microsoft Office 2011 for Mac Removal Tool;no_research;Python +https://github.com/pbowden-msft/ResetUpdateMessage;Microsoft Office 365/2021/2019/2016 Reset Update Message Tool;no_research;Shell +https://github.com/pbowden-msft/SignInHelper;Microsoft Office for Mac Sign In Helper;no_research;Shell +https://github.com/pbowden-msft/Unlicense;Microsoft Office 365/2021/2019/2016 for Mac License Removal Tool;no_research;Shell +https://github.com/pdebruic/amber-slime-rules;Slime refactorings for porting Smalltalk code from other dialects to Amber;no_research;Smalltalk +https://github.com/pdebruic/ansible-smalltalk;ansible scripts to install Smalltalk servers - works with Squeak, Pharo, Gemstone;no_research;Shell +https://github.com/pdebruic/ansible-tarsnap;;no_research;Shell +https://github.com/pdebruic/ARIA;ARIA code helpers for Seaside;no_research;Smalltalk +https://github.com/pdebruic/BerkeleyDBPlugin;The BerkeleyDBPlugin allows one to access BerkeleyDB from Squeak or Pharo Smalltalk;no_research;Smalltalk +https://github.com/pdebruic/blowfish-smalltalk;A smalltalk implementation of the blowfish algorithm;no_research;Smalltalk +https://github.com/pdebruic/centered-interval-tree;Smalltalk implementation of a centered interval tree;no_research;Smalltalk +https://github.com/pdebruic/ChronosTimeZones;;no_research;HTML +https://github.com/pdebruic/ConfigurationOfSeaside3;Seaside 3, 3.1 build testing on Squeak, Pharo and GemStone;no_research;Smalltalk +https://github.com/pdebruic/Country;ISO Country stuff for Smalltalk;no_research;Smalltalk +https://github.com/pdebruic/DataTables;Smalltalk API client for https://www.datatables.net;no_research;Smalltalk +https://github.com/pdebruic/Elasticsearch;Smalltalk code for elasticsearch v5.6;no_research;Smalltalk +https://github.com/pdebruic/EmailReplyParser;Parse emails in Smalltalk;no_research;Smalltalk +https://github.com/pdebruic/Geolocation;Geolocation utilities for Smalltalk. ;no_research;Smalltalk +https://github.com/pdebruic/Gettext;Gettext for Smalltalk - copied from squeaksource and also smalltalkhub;no_research;Smalltalk +https://github.com/pdebruic/git-fast-writer-filetree;git-fast-writer but in filetree format;no_research;Smalltalk +https://github.com/pdebruic/git-migration-filetree;GitMigration but makes filetree rather than tonel repos;no_research;Smalltalk +https://github.com/pdebruic/Gravatar;Smalltalk Gravatar client copied from Smalltalhub;no_research;Smalltalk +https://github.com/pdebruic/Highcharts;https://www.github.com/ba-st/HighchartsSt but in filetree and not tonel so GemStone can use it. ;no_research;Smalltalk +https://github.com/pdebruic/History;Smalltalk library to store data with a timestamp ;no_research;Smalltalk +https://github.com/pdebruic/HTTPAPIClient;abstration for Squeak, Pharo, GemStone so making cross platofrm API clients is easier. ;no_research;Smalltalk +https://github.com/pdebruic/ICal;Smalltalk library for ICal - should work in Squeak, GemStone, Pharo;no_research;Smalltalk +https://github.com/pdebruic/JQueryWidgetBox;Use JQuery widgets in your Seaside project. copied from Smalltalkhub ;no_research;Smalltalk +https://github.com/pdebruic/JSON;Standalone JSON library for Smalltalk. From Squeaksource, then smalltalkhub, but now on git. ;no_research;Smalltalk +https://github.com/pdebruic/misc;random Smalltalk utility libraries;no_research;Smalltalk +https://github.com/pdebruic/MockGemStone;Pretend Pharo is GemStone;no_research;Smalltalk +https://github.com/pdebruic/Money;Money library for Smalltalk;no_research;Smalltalk +https://github.com/pdebruic/password-hashing-smalltalk;works on linux to provide in image bcrypt and crypt based password hashing;no_research;Smalltalk +https://github.com/pdebruic/pdebruic;About page ;no_research; +https://github.com/pdebruic/PostMark;PostMark client for Smalltalk;no_research;Smalltalk +https://github.com/pdebruic/seaside-ab-testing;A/B Testing for Seaside 3;no_research; +https://github.com/pdebruic/seaside-css-frameworks;Some CSS frameworks in Seaside 3.0 for people who want to try them out. OR for starting a new project with something other than the default browser styling.;no_research;Smalltalk +https://github.com/pdebruic/SeasideGoogleMapsV3;Google Maps API V3 client for Smalltalk;no_research;Smalltalk +https://github.com/pdebruic/SegmentIO;SegmentIO client for Smalltalk;no_research;Smalltalk +https://github.com/pdebruic/smalltalk-abtesting;AB Testing for Squeak, Pharo, GemStone. ;no_research;Smalltalk +https://github.com/pdebruic/Soup;Smalltalk port of Beautiful Soup;no_research;Smalltalk +https://github.com/pdebruic/Squeak-All-In-One;bash scripts to create a Cog based Squeak All In One;no_research;Shell +https://github.com/pedesen/0h0gfx;A zero graphics space invader audio game created in zero hours for 0h Game Jam;no_research;JavaScript +https://github.com/pedesen/arduino-smartrix;A message protocol for turning on or off LEDs in up to 16 MAX72xx matrices;no_research;Arduino +https://github.com/pedesen/BeerPMN-Demo;This is a demo of a BeerXML importer plugin for bpmn-js. Created during Camunda Hack Days 2018;no_research;JavaScript +https://github.com/pedesen/bpmn-jsonator;shows all direct child classes of a given BPMN element;no_research;JavaScript +https://github.com/pedesen/bpmnklotz;;no_research;Python +https://github.com/pedesen/c8sound;c8sound - How does Camunda 8 Sound like?;no_research;Java +https://github.com/pedesen/cinnamon-applet-headsetcontrol-battery;This Cinnamon Applet shows the battery status of specific headsets;no_research;JavaScript +https://github.com/pedesen/mumlr;MUMLR - Multi User Mate Light Remote;no_research;JavaScript +https://github.com/pedesen/node-red-contrib-braumeister;Node-RED nodes for interacting with Speidels Braumeister homebrewing system;no_research;JavaScript +https://github.com/pedesen/node-red-contrib-camunda-bpm;CamundaBPM external task nodes for Node-RED ;no_research; +https://github.com/pedesen/node-red-contrib-pilight;Basic Node-RED nodes to receive configuration updates from pilight;no_research;HTML +https://github.com/pedesen/node-red-contrib-zeebox-oled;Node-RED nodes for showing text on OLED displays;no_research;HTML +https://github.com/pedesen/plogx;plogx is a Flask webapp, which analyses nginx log items stored in a mongodb database;no_research;Python +https://github.com/pedesen/pyligadb;A Python wrapper for the OpenLigaDB webservice.;no_research;Python +https://github.com/pedesen/smartrix;Arduino + LED Matrix = ❤;no_research;JavaScript +https://github.com/pedesen/testcafe-testing-library-example;;no_research;JavaScript +https://github.com/pedesen/trebergarten;;no_research;HTML +https://github.com/pedesen/twitter-highscore;A local node app which is showing highscores based on a twitter timeline;no_research;JavaScript +https://github.com/pedesen/zeebe-microcontroller;This is a PoC that microcontrollers can be used with Zeebe;no_research;Python +https://github.com/pejovica/aot-bench;;no_research;Java +https://github.com/petrbel/cxflow-rethinkdb;RethinkDB support for cxflow;no_research;Python +https://github.com/petrbel/czech-working-month;Working month calculator for Czech environment;no_research;Python +https://github.com/petrbel/GameJamSurvival;Game Jam - technologies, setup, tips&tricks;no_research; +https://github.com/petrbel/psc_konvertor;Jednoduchý PSČ konvertor na okresy a kraje.;no_research;Python +https://github.com/petrbel/teeworlds;Teeworlds server in docker;no_research;Dockerfile +https://github.com/PFischbeck/cn-noise-experiments;"The code and data for the PAKDD 2023 paper ""The Common-Neighbors Metric is Noise-Robust & Reveals Substructures of Real-World Networks""";research;Python +https://github.com/PFischbeck/pygirgs;Python package for girgs and hypergirgs generators;no_research;Jupyter Notebook +https://github.com/philipp-bode/lock-free-pc;A load-balanced, lock-free implementation of the PC-algorithm for causal inference from high-dimensional data.;no_research;C++ +https://github.com/philipp-bode/random_genre_bot;A Telegram bot that plays random genres on a linked Spotify account.;no_research;Python +https://github.com/philippfromme/arrayaccess;My artist website;no_research;HTML +https://github.com/philippfromme/bpmn-gpt;Create BPMN processes from natural language descriptions.;no_research;JavaScript +https://github.com/philippfromme/bpmn-js-i18n;Translate BPMN Diagrams Using bpmn-js and the BPMN 2.0 Extension for Internationalization;no_research;JavaScript +https://github.com/philippfromme/bpmn-js-space-tool-playground;;no_research;JavaScript +https://github.com/philippfromme/camunda-modeler-plugin-resize-tasks;Camunda Modeler plugin that makes tasks resizable;no_research;JavaScript +https://github.com/philippfromme/canvas-3d;3D with 2D Canvas;no_research;JavaScript +https://github.com/philippfromme/daily-distances-calculator;Calculates daily distances, given a weekly distance.;no_research;HTML +https://github.com/philippfromme/dependentree;🌲;no_research;JavaScript +https://github.com/philippfromme/diagram-js-element-detection;Detect elements at a given position. 🔍 ;no_research;JavaScript +https://github.com/philippfromme/easy-dat-gui;dat.gui made easy;no_research;JavaScript +https://github.com/philippfromme/generative-art-playground;Generative art with p5.js. Batteries included.;no_research;JavaScript +https://github.com/philippfromme/generative-music;An endless piece of generative music.;no_research;JavaScript +https://github.com/philippfromme/granular-js;Granular synthesis using the Web Audio API;no_research;JavaScript +https://github.com/philippfromme/granular-js-demo;A demo of granular-js;no_research;JavaScript +https://github.com/philippfromme/hackdays-2023;Modeling BPMN accelerated;no_research;JavaScript +https://github.com/philippfromme/linting-playground;🚧🏗️👷🚧;no_research;JavaScript +https://github.com/philippfromme/node-sequencer;A Node-Based Sequencer for the Web;no_research;JavaScript +https://github.com/philippfromme/node-sequencer-bot;Your friendly bot tweeting a new sequence every day.;no_research;JavaScript +https://github.com/philippfromme/node-sequencer-demo;A Node-Based Sequencer for the Web;no_research;CSS +https://github.com/philippfromme/philippfromme;;no_research; +https://github.com/philippfromme/plugin-manager-playground;A playground for diagram-js plugin manager ideas.;no_research;JavaScript +https://github.com/philippfromme/socket-io-chat;A simple Socket.IO chat;no_research;JavaScript +https://github.com/philippfromme/strava-heatmap;Strava Heatmap;no_research;HTML +https://github.com/philippfromme/svg-curves;Create SVG curves;no_research;JavaScript +https://github.com/philippfromme/timeline;SVG timeline;no_research;JavaScript +https://github.com/philippfromme/ts-moddle;Generate type declarations from meta-models;no_research;JavaScript +https://github.com/phkeese/avr-threads;A multithreading library for AVR;no_research;C++ +https://github.com/phkeese/HPI-GameJam-2019;"Jump around, wallslide and walljump in this absolute trainwreck of a ""platformer""";no_research;GDScript +https://github.com/phkeese/HPI-GameJam-2020.02;HPI GameJam 2020 Theme: Two Colors;no_research;GDScript +https://github.com/phkeese/json-parser;A C++ library for JSON-parsing;no_research;C++ +https://github.com/phkeese/Maeaeaehhh;;no_research;GDScript +https://github.com/phkeese/objimport;;no_research;C++ +https://github.com/phkeese/phkeese;;no_research; +https://github.com/phkeese/rambock;An external memory library for Arduino;no_research;C++ +https://github.com/phkeese/Sonic-Thinking;;no_research;C# +https://github.com/phkeese/WorkingTItle;;no_research;GDScript +https://github.com/pielco11/didYouThinkItWasSoEasy;;no_research; +https://github.com/pielco11/DOGE;Darknet Osint Graph Explorer;no_research;CSS +https://github.com/pielco11/DOT;Darknet OSINT Transform;no_research;Python +https://github.com/pielco11/fav-up;IP lookup by favicon using Shodan;no_research;Python +https://github.com/pielco11/JungleScam;An Amazon OSINT scraper for potential scam accounts;no_research;Python +https://github.com/pielco11/JungleScam-graph-explorer;A graph explorer for JungleScam;no_research;CSS +https://github.com/pielco11/Platypus;;no_research;Python +https://github.com/pielco11/telescan;;no_research;Python +https://github.com/pielco11/thrint;Threads.net Open Source Intelligence tool;no_research; +https://github.com/pinussilvestrus/100daysofdesign;Daily UI Challenge - Deliverables;no_research; +https://github.com/pinussilvestrus/auto-suggest-experiments;;no_research;JavaScript +https://github.com/pinussilvestrus/bachelor_thesis;Bachelor's Thesis @ Hasso-Plattner-Institute;no_research;TeX +https://github.com/pinussilvestrus/bncl;Natural like language for quickly modeling BPMN 2.0 models;no_research;CSS +https://github.com/pinussilvestrus/bncl-autolayout;Autolayout Api for BNCL (BPMN Natural Creation Language);no_research;JavaScript +https://github.com/pinussilvestrus/bncl-node;Node.js module for quickly model bpmn models via bncl statements;no_research;JavaScript +https://github.com/pinussilvestrus/bpmn-js-honkify;bpmn-js extension which is inspired by honkify 🦆;no_research;JavaScript +https://github.com/pinussilvestrus/c8-custom-tasklist;;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-bpmn-js-examples;Examples for camunda-bpmn-js;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-bpmn-js-parcel;;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-bpmn-js-typescript-example;;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-modeler-autosave-plugin;Automatically save your diagrams modeled in Camunda Modeler;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-modeler-dmn-plugin-examples;Examples of DMN Plugins for the Camunda Modeler;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-modeler-excel-import-plugin;Camunda Modeler plugin to import Excel Sheets to DMN 1.3 Decision Tables (and vice versa).;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-modeler-inspector-plugin;Camunda Modeler Plugin for inspecting JSON object tree of a diagram;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-modeler-swap-elements-plugin;Camunda Modeler plugin for swapping elements;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-modeler-wakatime-plugin;Wakatime Plugin for the Camunda Modeler;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-modeler-webpack-plugins;Webpack plugins to easily configure Camunda Modeler extensions.;no_research;JavaScript +https://github.com/pinussilvestrus/camunda-toggl;Easily create time entries for camunda work on Toggl;no_research;JavaScript +https://github.com/pinussilvestrus/ccs2022-resources;"Resources and examples from the talk ""Taking Templates to the Limit"" at Camunda Community Summit 2022.";no_research; +https://github.com/pinussilvestrus/cl-site;;no_research;JavaScript +https://github.com/pinussilvestrus/clickable-prototype;Lightweight React Library for creating clickable Prototypes;no_research;JavaScript +https://github.com/pinussilvestrus/dev-articles;Articles written on dev.to;no_research; +https://github.com/pinussilvestrus/diagram-js-cursor-debug;Debugging tool for diagram-js. Displaying the current local point on canvas.;no_research;JavaScript +https://github.com/pinussilvestrus/django-solid-app;;no_research;Python +https://github.com/pinussilvestrus/dmn-prototypes;Prototypes built via our DMN Innovation Process, Q1 & Q2 2020;no_research;JavaScript +https://github.com/pinussilvestrus/epwt;Roller coaster mining with Camunda Cloud;no_research;JavaScript +https://github.com/pinussilvestrus/feathers-python;Feathers.js Backend Services with Python Scripts;no_research;JavaScript +https://github.com/pinussilvestrus/form-field-extension;Hackdays project: Custom form fields;no_research;JavaScript +https://github.com/pinussilvestrus/form-json-schema;JSON Schema for form-js;no_research;JavaScript +https://github.com/pinussilvestrus/form-playground-prototypes;Playground for Form Playground Prototypes.;no_research;JavaScript +https://github.com/pinussilvestrus/form-playground-react-example;;no_research;JavaScript +https://github.com/pinussilvestrus/fpv-logfile-analyzer;Script for automatically analyzing fhem log-files (Forschungsprojekt Virtualisierung HS-Harz);no_research;JavaScript +https://github.com/pinussilvestrus/generator-mantra-react;A Yeoman for React Modules based on our Mantra philosophy (https://kadirahq.github.io/mantra/);no_research;JavaScript +https://github.com/pinussilvestrus/github-bpmn;Applications Collection: Render BPMN, CMMN and DMN files on GitHub;no_research;JavaScript +https://github.com/pinussilvestrus/hours-for-improvement;Weekly notes on hours for improvement;no_research;JavaScript +https://github.com/pinussilvestrus/jTU;;no_research;JavaScript +https://github.com/pinussilvestrus/lirete;Web Plotter with linreg.py;no_research;JavaScript +https://github.com/pinussilvestrus/master-thesis;Master Thesis;no_research;TeX +https://github.com/pinussilvestrus/mocha-set-only;Sets the only tag to a mocha-test for a given file;no_research;JavaScript +https://github.com/pinussilvestrus/modeler-playground;Playground repository for bpmn-js Modeler;no_research;JavaScript +https://github.com/pinussilvestrus/modeler-plugins-api-example;;no_research;JavaScript +https://github.com/pinussilvestrus/modeler-ui-components;Reusable components and styles, for Camunda Modeler;no_research;Svelte +https://github.com/pinussilvestrus/momo-cam;Combined Node.js based streamer and client service for live-streaming our lovable Momo ❤️;no_research;JavaScript +https://github.com/pinussilvestrus/mopl;Easily install Camunda Desktop Modeler plugins.;no_research;Shell +https://github.com/pinussilvestrus/mr-flap-js;Game 'Mr Flap' written in plain javascript;no_research;JavaScript +https://github.com/pinussilvestrus/node-crawler-example;Web Crawling example for exercise on 'Information Retrieval' course @HSHarz ;no_research;JavaScript +https://github.com/pinussilvestrus/org-stargazers;List stargazer counts for all repositories inside a GitHub organization.;no_research;JavaScript +https://github.com/pinussilvestrus/paper_wfa;White Paper - Assessment of the driving ability of a driver with wearables or smartphone;no_research;TeX +https://github.com/pinussilvestrus/pinussilvestrus;;no_research; +https://github.com/pinussilvestrus/pool-collapse-test;;no_research;JavaScript +https://github.com/pinussilvestrus/postit-js;Create post-it boards - built with diagram-js;no_research;JavaScript +https://github.com/pinussilvestrus/properties-provider-plugin-example;;no_research;JavaScript +https://github.com/pinussilvestrus/prototyping-example;Frontend Chapter - Creating Quick Demos;no_research;HTML +https://github.com/pinussilvestrus/pt2langekiefer;pt2 excercise;no_research;C++ +https://github.com/pinussilvestrus/randomcatpick;Example VS Code Extension (final) - Frontend Chapter;no_research;TypeScript +https://github.com/pinussilvestrus/rpa-prototypes;Prototypes built via our RPA Prototyping phase, Q2 2020;no_research;Svelte +https://github.com/pinussilvestrus/scenario-analysis-cloud-computing;Scenario analysis for Cloud Computing in educational area;no_research;TeX +https://github.com/pinussilvestrus/svelte-demo;Small demo to show how to create varied applications with Svelte.;no_research;JavaScript +https://github.com/pinussilvestrus/talks;Collection of Talks in the past;no_research;HTML +https://github.com/pinussilvestrus/Test;testing stuff;no_research; +https://github.com/pinussilvestrus/trellics;;no_research;JavaScript +https://github.com/pinussilvestrus/use-spinner;Add a simple loading spinner to your async JS calls - built for the browser.;no_research;JavaScript +https://github.com/pinussilvestrus/validate-templates-cli;Command Line Tool to validate Camunda Element Templates;no_research;JavaScript +https://github.com/pinussilvestrus/variables-prototypes;Process Variable Management Prototypes.;no_research;Svelte +https://github.com/pinussilvestrus/what-to-cook-app;;no_research;JavaScript +https://github.com/pinussilvestrus/wirvsvirus-hackathon-prototype;MyQuarantine - Prototype for #wirvsvirus Hackathon;no_research; +https://github.com/pitrou/breathe-issue407;Reproducer for https://github.com/michaeljones/breathe/issues/407;no_research;C++ +https://github.com/pitrou/conda-recipes;;no_research;Python +https://github.com/pitrou/ep2015;;no_research;Python +https://github.com/pitrou/flatbuf_issue;;no_research;C++ +https://github.com/pitrou/pickle5-backport;Backport of the pickle 5 protocol (PEP 574);no_research;C +https://github.com/pkuhn/Algortihm_Exercises;;no_research;Python +https://github.com/pkuhn/AnnotationFileConverter;;no_research;Java +https://github.com/pkuhn/datasciencecoursera;;no_research; +https://github.com/pkuhn/InterviewTraining;;no_research;Python +https://github.com/pkuhn/MMDS-coursera;;no_research;Java +https://github.com/pkuhn/PlaceFinder;;no_research; +https://github.com/pkuhn/RelationshipExtractor;;no_research;Python +https://github.com/pkuhn/wikilistExtractor;;no_research;Java +https://github.com/pl-semiotics/gst-libvncclient-rfbsrc;Modified gstreamer rfbsrc based on libvncclient;no_research;C +https://github.com/pl-semiotics/libqsgepaper-snoop;Extract the virtual framebuffer and damage-tracking information from reMarkable libqsgepaper.a;no_research;C +https://github.com/pl-semiotics/linux-sb;Surface Book kernels;no_research; +https://github.com/pl-semiotics/mxc_epdc_fb_damage;Userspace access to framebuffer damage information on i.MX6;no_research;C +https://github.com/pl-semiotics/nix-remarkable;Nix expressions for tools for the reMarkable tablet;no_research;Nix +https://github.com/pl-semiotics/rM-input-devices;Reading/writing/emulating input devices on the reMarkable tablet;no_research;C +https://github.com/pl-semiotics/rM-vnc-server;Damage-tracking VNC server for the reMarkable tablet;no_research;C +https://github.com/pl-semiotics/sdtpl;The String Decision Tree Processing Language;no_research;Haskell +https://github.com/polenz/camunda-resource-deployer-js;;no_research;JavaScript +https://github.com/polenz/camunda-resource-deployer-js-example;;no_research;JavaScript +https://github.com/polenz/travel-application;;no_research;Java +https://github.com/ppisl/gcode_postprocessing;Scripts for postprocessing gcode files.;no_research;Python +https://github.com/ppisl/turntable;Turn table for creating videos and photos;no_research; +https://github.com/prabod/AAAI-Paper-Scraper;;no_research;Jupyter Notebook +https://github.com/prabod/aima-Javascript;Javascript code for the book Artificial Intelligence: A Modern Approach.;no_research;JavaScript +https://github.com/prabod/aima-lua;"Lua implementation of algorithms (and visualizations) from Russell And Norvig's ""Artificial Intelligence - A Modern Approach""";no_research; +https://github.com/prabod/BinaryTree;;no_research;Java +https://github.com/prabod/chm;;no_research; +https://github.com/prabod/cmhrmate;;no_research;Java +https://github.com/prabod/cs2022-Linked-Lists;;no_research;Java +https://github.com/prabod/cs2022Stack;;no_research;Java +https://github.com/prabod/CS4642-IR-Parliament.lk-Scraper;;no_research;Python +https://github.com/prabod/Dialog-Hack;;no_research; +https://github.com/prabod/email-solution;;no_research;Shell +https://github.com/prabod/emotion-models;;no_research;Python +https://github.com/prabod/first;;no_research;Python +https://github.com/prabod/gatsby-casper;;no_research;TypeScript +https://github.com/prabod/GeneLisa;Recreating a Masterpiece Drawing by using Genetic Algorithms;no_research;JavaScript +https://github.com/prabod/Graph-Theory-Ford-Fulkerson-Maximum-Flow;Ford-Fulkerson Algorithm for Maximum Flow Problem Written in JS;no_research;JavaScript +https://github.com/prabod/Graph-Theory-Fundamentals;;no_research; +https://github.com/prabod/Graph-Theory-Push-Relabel-Maximum-Flow;Push-Relabel Algorithm for Maximum Flow Problem Written in JS;no_research;JavaScript +https://github.com/prabod/IR-Remote;;no_research; +https://github.com/prabod/jobmart;;no_research;Python +https://github.com/prabod/jobsdaily;;no_research;HTML +https://github.com/prabod/KMOD;;no_research;C +https://github.com/prabod/Multi-Dimensional-Knapsack;;no_research;Python +https://github.com/prabod/NeatJS;;no_research; +https://github.com/prabod/OMI-The-Game;;no_research;Python +https://github.com/prabod/Personality-Prediction;Personality Prediction in Low Resource Settings using Pretrained Language Models;no_research; +https://github.com/prabod/prolog;;no_research;PostScript +https://github.com/prabod/R4TLI;;no_research;CSS +https://github.com/prabod/RaviMax;;no_research;Java +https://github.com/prabod/Sample-Node.js-Application;;no_research;JavaScript +https://github.com/prabod/Scheduling-Algorithm-Demonstration;;no_research;JavaScript +https://github.com/prabod/shift-equivariant-similarity-preserving-hypervectors;;no_research;Jupyter Notebook +https://github.com/prabod/Singapore-VueLeaflet;;no_research;Vue +https://github.com/prabod/SwimmingCompetition140520G;;no_research;Java +https://github.com/prabod/Tank-Game;;no_research;Python +https://github.com/prabod/The-Senate-Bus-problem;Solution for The Senate Bus problem implemented in Java;no_research;Java +https://github.com/prithviraj-maurya/Age-Group-Classifier-React;;no_research;TypeScript +https://github.com/prithviraj-maurya/airbnb-amenity-detection-flask-api;;no_research;Python +https://github.com/prithviraj-maurya/airbnb-amenity-detection-react;;no_research;JavaScript +https://github.com/prithviraj-maurya/angular-recipes-shoppinglist-app;A food recipes app based on Angular framework;no_research;TypeScript +https://github.com/prithviraj-maurya/angular-todo-list;;no_research;TypeScript +https://github.com/prithviraj-maurya/bike-sharing-prediction;;no_research;Jupyter Notebook +https://github.com/prithviraj-maurya/covid-air-quality;;no_research;Python +https://github.com/prithviraj-maurya/Deep-Learning;;no_research;Jupyter Notebook +https://github.com/prithviraj-maurya/Diabetic-Retinopathy-CNN;Diabetic Retinopathy detection using CNN's;no_research;Jupyter Notebook +https://github.com/prithviraj-maurya/docsumo-task;;no_research;Python +https://github.com/prithviraj-maurya/elephant-vision;;no_research;Python +https://github.com/prithviraj-maurya/event-registration-app;Event registration app for Hackerearth's hackathon by Stack1.0 (https://www.hackerearth.com/challenges/hackathon/stackhack-v1/);no_research;TypeScript +https://github.com/prithviraj-maurya/expense-logger;;no_research;TypeScript +https://github.com/prithviraj-maurya/expenses-app-d3;An expense app using d3 and ReactJS;no_research;JavaScript +https://github.com/prithviraj-maurya/expenses-d3-react;;no_research;JavaScript +https://github.com/prithviraj-maurya/FaceDectection;;no_research;Python +https://github.com/prithviraj-maurya/Feelings;Share your feelings;no_research;Python +https://github.com/prithviraj-maurya/First-BootStrap-Website;My First Bootstrap Website;no_research;CSS +https://github.com/prithviraj-maurya/FirstProject;My First Website;no_research;Python +https://github.com/prithviraj-maurya/Flu-Shot-Learning-ML;;no_research;Jupyter Notebook +https://github.com/prithviraj-maurya/grad-project;;no_research;Java +https://github.com/prithviraj-maurya/GSOC-2019;;no_research; +https://github.com/prithviraj-maurya/InstaApp;Profile Page sign in register these pages are ready;no_research;Java +https://github.com/prithviraj-maurya/JavaScript;Will contain all the JS projects;no_research;JavaScript +https://github.com/prithviraj-maurya/learnboot;Creating my own bootstrap website from scratch along with php and js;no_research;CSS +https://github.com/prithviraj-maurya/Machine-Learning-Practise;;no_research;Jupyter Notebook +https://github.com/prithviraj-maurya/mapreduce-based-machine-learning;Large-scale Artificial Neural Network: MapReduce-based for Machine Learning;research;Python +https://github.com/prithviraj-maurya/Miwok;My First App;no_research;Java +https://github.com/prithviraj-maurya/ML-Project-Template;;no_research;Python +https://github.com/prithviraj-maurya/PetsApp;Uses database to store details of pets;no_research;Java +https://github.com/prithviraj-maurya/Phpstock;;no_research;PHP +https://github.com/prithviraj-maurya/portfolio-site;;no_research; +https://github.com/prithviraj-maurya/prithviraj-maurya;Config files for my GitHub profile.;no_research; +https://github.com/prithviraj-maurya/pytorch-template-nn;Pytorch template files for neural networks;no_research;Python +https://github.com/prithviraj-maurya/react-meme-generator;A random generated meme;no_research;JavaScript +https://github.com/prithviraj-maurya/react-youtube-clone;A react based youtube clone for searching and playing videos from youtube-api;no_research;JavaScript +https://github.com/prithviraj-maurya/resume-website;Resume website for showcasing my skills;no_research;JavaScript +https://github.com/prithviraj-maurya/sa-frontend-react;;no_research;TypeScript +https://github.com/prithviraj-maurya/sapient-ui-challenge;;no_research;TypeScript +https://github.com/prithviraj-maurya/stroke-model-prediction-flask;;no_research;Python +https://github.com/prithviraj-maurya/stroke_prediction_ionic_app;;no_research;TypeScript +https://github.com/prithviraj-maurya/Synthesizer;My own synthesizer gui;no_research;Python +https://github.com/prithviraj-maurya/vue-firestore-reddit-clone;Full Stack Reddit Clone with Firebase Firestore, Vue.js/Vuex, Bulma;no_research;Vue +https://github.com/prithviraj-maurya/wissen-grad-project;;no_research;TypeScript +https://github.com/prithviraj-maurya/wissen-training-angular;;no_research;TypeScript +https://github.com/prithviraj-maurya/wissen-training-java;;no_research;Java +https://github.com/prithviraj-maurya/wrapnjoy-site;;no_research;HTML +https://github.com/pstutz/adda;An embedded publish/subscribe system for Akka Streams.;no_research;Scala +https://github.com/pstutz/busy-day;;no_research;Scala +https://github.com/pstutz/graphula;Graphula is an experimental graph database with parallel divide & conquer query execution and incremental replanning for partial queries. It's really fast. :zap:;no_research;Scala +https://github.com/pstutz/okapi-trees;Test Mill build with the `okapi-trees` module;no_research;Scala +https://github.com/pstutz/scala-fullstack;Scala full stack application template that supports npm dependencies;no_research;Scala +https://github.com/pstutz/signal-collect-javaapi;Java API for Signal/Collect.;no_research;Java +https://github.com/pstutz/syncodia;Bridging Large Language Models with Scala 3 Functions;no_research;Scala +https://github.com/Quacck/bachelor-thesis-plot;;no_research;Python +https://github.com/Quacck/bid_ass1;;no_research;C++ +https://github.com/Quacck/bid_ass2;;no_research;C++ +https://github.com/Quacck/bid_ass3;;no_research;C++ +https://github.com/Quacck/bid_ass4;;no_research; +https://github.com/Quacck/information-integration-22;;no_research; +https://github.com/Quacck/natural-language-processing;;no_research;Python +https://github.com/Quacck/pt_serie3;;no_research;C +https://github.com/Quacck/pt_serie4;;no_research;C +https://github.com/Quacck/pt_serie5;;no_research;C +https://github.com/Quacck/rigidddity;;no_research;Python +https://github.com/querenker/advent-of-code-2016;;no_research;Clojure +https://github.com/querenker/COAL;;no_research;Jupyter Notebook +https://github.com/querenker/ddm-akka;;no_research;Scala +https://github.com/querenker/dotfiles;;no_research;Emacs Lisp +https://github.com/querenker/PX-ECS;;no_research;Smalltalk +https://github.com/querenker/vim-presentation;;no_research;C +https://github.com/qunaibit/test_travis;;no_research; +https://github.com/qunaibit/unladen-swallow;Automatically exported from code.google.com/p/unladen-swallow;no_research;Python +https://github.com/RachadAbiChahine/ArticleDownloader;this project will be used to download articles from news paper to build a corpus;no_research;Python +https://github.com/RachadAbiChahine/ubuntu-psql;;no_research;Dockerfile +https://github.com/rajgoel/bpmn-js-resources;;no_research;JavaScript +https://github.com/rajgoel/charla;Charla - Video conferencing;no_research;JavaScript +https://github.com/rajgoel/markdown-it-input;;no_research;JavaScript +https://github.com/rajgoel/PTZFaceTracker;OpenCV based face tracking and control of PTZ cameras;no_research;C++ +https://github.com/rajgoel/reveal.js-broadcast;;no_research;JavaScript +https://github.com/rajgoel/reveal.js-demos;Demo presentations for reveal.js;no_research;HTML +https://github.com/rajgoel/reveal.js-plugins;Plugins for reveal.js;no_research;JavaScript +https://github.com/rajgoel/schematicpp;An XML schema compiler written in C++, which generates C++ code for marshalling and unmarshalling objects;no_research;C++ +https://github.com/rajgoel/seminar;;no_research;JavaScript +https://github.com/rakachan/Machinus-Learningus;ML Project;no_research;Jupyter Notebook +https://github.com/rakachan/ProjectCG;;no_research;C +https://github.com/rakachan/Repo1;;no_research;Processing +https://github.com/RalfRothenberger/GreedyMax;Three Algorithms to solve MaxCut: an optimal solver via Integer Linear Programming with Gurobi, an approximative greedy solver and an approximative random greedy solver;no_research;C++ +https://github.com/RalfRothenberger/Power-Law-Random-SAT-Generator;Power Law Random k-SAT Generator;no_research;C++ +https://github.com/regnujAx/Deep-Learning-Kanji-Classification;;no_research;Jupyter Notebook +https://github.com/rheaSPK/adminDashboard;;no_research;HTML +https://github.com/rheaSPK/calculator;;no_research;JavaScript +https://github.com/rheaSPK/cat-page;;no_research;CSS +https://github.com/rheaSPK/library;;no_research;HTML +https://github.com/rheaSPK/rockPaperScissor;;no_research;JavaScript +https://github.com/rheaSPK/signUp;;no_research;HTML +https://github.com/rheaSPK/tiktaktoe;;no_research;JavaScript +https://github.com/rhettinger/modernpython;Sample code for the video course: Modern Python: Big Ideas, Little Code;no_research;Python +https://github.com/rksm/4clojure-solutions;see https://www.4clojure.com/;no_research;Clojure +https://github.com/rksm/ace.improved;For a better ace editor!;no_research;JavaScript +https://github.com/rksm/adventofcode;;no_research;Rust +https://github.com/rksm/axum-yew-setup;A starter project that sets up axum and yew for full stack Rust web apps.;no_research;Rust +https://github.com/rksm/axum-yew-template;A cargo-template for generating a full stack axum / yew web app.;no_research;Rust +https://github.com/rksm/bevy-bouncing-ball;A bouncing ball using Bevy;no_research;Rust +https://github.com/rksm/BrightTable;Not your typical table top...;no_research;HTML +https://github.com/rksm/browserify-on-the-fly;interface to load packages from npm, browserify them and serve them via http/websocket;no_research;JavaScript +https://github.com/rksm/canvas-streaming;;no_research; +https://github.com/rksm/cargo-add-dynamic;cargo-add command to make dependencies into dylibs;no_research;Rust +https://github.com/rksm/clj-feather;A leightweight clojure starter;no_research;Clojure +https://github.com/rksm/clj-org-analyzer;Fun with org data;no_research;Clojure +https://github.com/rksm/clj-test-helpers;some utility functions for tests;no_research;Clojure +https://github.com/rksm/cljs-debugger;A cljs-debugger via CDP;no_research;Clojure +https://github.com/rksm/cljs-repl-project-lein-template;lein template to create a scaffolding for brepl-driven project.;no_research; +https://github.com/rksm/cljs-repl-project-template;Leiningen template to create a scaffolding for brepl-driven project.;no_research;Clojure +https://github.com/rksm/cljs-slimerjs-tester;ClojureScript test runner that can be controlled from Clojure, using slimerjs;no_research;Clojure +https://github.com/rksm/clockin;Time tracking for lively.next;no_research;JavaScript +https://github.com/rksm/codeeditor;;no_research; +https://github.com/rksm/coding-challenges;;no_research;Haskell +https://github.com/rksm/copilot-emacsd;Example configuration to integrate Copilot into Emacs;no_research;Emacs Lisp +https://github.com/rksm/digitalocean-dyndns;Updates digitalocean DNS entries;no_research;JavaScript +https://github.com/rksm/doc-comments;;no_research;JavaScript +https://github.com/rksm/docker-workspaces;"a nodejs balancing frontend that will create docker ""workspaces"" and assign them to web sessions";no_research;JavaScript +https://github.com/rksm/elypy;emacs-lively-python, I want it all;no_research; +https://github.com/rksm/emacs-rust-config;emacs.d files for making Emacs a Rust development environment;no_research;Emacs Lisp +https://github.com/rksm/emacs.d;My emacs config, now with org-mode init file.;no_research;Groff +https://github.com/rksm/estree-to-js;Parser / JSON + visitor generator of the markdown estree spec (https://github.com/estree/estree);no_research;JavaScript +https://github.com/rksm/firestore-streaming-test-rs;;no_research;Rust +https://github.com/rksm/first-mate-web;Using TextMate grammars in the Web;no_research;JavaScript +https://github.com/rksm/flatn;flat node dependencies;no_research;JavaScript +https://github.com/rksm/fritz-homeautomation;;no_research;Clojure +https://github.com/rksm/fritz-homeautomation-rs;;no_research;Rust +https://github.com/rksm/fyyd-api;Fork of https://gitlab.com/a-kenji/fyyd-api;no_research;Rust +https://github.com/rksm/hello-wasm;Basic Rust WebAssembly setup with webpack;no_research;JavaScript +https://github.com/rksm/hot-lib-reloader-rs;Reload Rust code without app restarts. For faster feedback cycles.;no_research;Rust +https://github.com/rksm/iced-non-uniform-border-radius;an example to show how quads can be rendered with different border radi;no_research;Rust +https://github.com/rksm/impftermin-finder;Finden von Terminen auf impfterminservice.de;no_research;TypeScript +https://github.com/rksm/jquery-bounds;Compute and show the absolute bounds of an HTMLElement;no_research; +https://github.com/rksm/js-console-consumers;"Wraps JavaScript's console object to notify ""consumers"" about log/warn/... calls.";no_research;JavaScript +https://github.com/rksm/kinect-playground;;no_research;C++ +https://github.com/rksm/koyo;Clojure-style utils lib, for JavaScript and not implemented in ClojureScript;no_research;JavaScript +https://github.com/rksm/l2l-cpp;;no_research;C++ +https://github.com/rksm/l2l-emacs;emacs connection to l2l to remote control browser / nodejs / ... programs;no_research;Emacs Lisp +https://github.com/rksm/l2l-node;temp helper to connect a computer to lively-2-lively via a node process. works on windows;no_research;JavaScript +https://github.com/rksm/language-server-websocket-test;language-server websocket test;no_research;TypeScript +https://github.com/rksm/lively-fs-helper;;no_research;JavaScript +https://github.com/rksm/lively-git-blame;;no_research;JavaScript +https://github.com/rksm/lively-http-helper;http stuff, mainly for testing;no_research;JavaScript +https://github.com/rksm/lively-pluggable-server;;no_research;JavaScript +https://github.com/rksm/lively-R-evaluate;Providing support for R code evaluation from Lively Web.;no_research;R +https://github.com/rksm/lively-server-inspector;Enables live programming with nodejs. Load runtime-inspector into your nodejs environment to spawn an http interface for evaluating and inspecting JS.;no_research;JavaScript +https://github.com/rksm/lively-vr;V!R!;no_research;CSS +https://github.com/rksm/log-analyzer;Server log parser counting page views: https://smalltalkzoo.computerhistory.org/logs.html;no_research;Rust +https://github.com/rksm/mocha-es6;testing via mocha + es6 transpilation;no_research;JavaScript +https://github.com/rksm/my-lk-user-dir;My Lively Kernel user directory. Includes customizations and experiments.;no_research;JavaScript +https://github.com/rksm/nannou-hot-reload;cargo-generate template for hot reloading & nannou;no_research;Rust +https://github.com/rksm/new-clj-project;Clojure project creator;no_research;Clojure +https://github.com/rksm/node-hana-odbc;node.js connection to SAP HANA using node-odbc.;no_research;JavaScript +https://github.com/rksm/node-lively2lively;Connect any node.js application to a lively2lively network.;no_research;JavaScript +https://github.com/rksm/node-nrepl-client;node.js client for a Clojure nrepl server.;no_research;JavaScript +https://github.com/rksm/node-watch-interface;Interface for the node.js watch module.;no_research;JavaScript +https://github.com/rksm/notes.el;Manage buffers for note taking and such with emacs, backed by couchdb for replication awesomeness.;no_research;Emacs Lisp +https://github.com/rksm/nspell-browser;nspell, for use inside a browser;no_research;JavaScript +https://github.com/rksm/org-ai;Emacs as your personal AI assistant. Use LLMs such as ChatGPT or LLaMA for text generation or DALL-E and Stable Diffusion for image generation. Also supports speech input / output.;no_research;Emacs Lisp +https://github.com/rksm/org-linter;Checks your org files for stranger things. Currently mostly focused on soundness of org clocks.;no_research;Rust +https://github.com/rksm/paredit.js;Generic reader and editor for s-expressions.;no_research;JavaScript +https://github.com/rksm/patreon-scraper;;no_research;TypeScript +https://github.com/rksm/pg-setup-rs;Rust integration test utilities for writing tests against postgres databases. Allows to create / drop databases easily.;no_research;Rust +https://github.com/rksm/pg-taskq;A simple postgres-based distributed task queue for Rust;no_research;Rust +https://github.com/rksm/plotters-canvas-test;;no_research;Rust +https://github.com/rksm/pocket-clojure;clojure cup 2015 project;no_research;JavaScript +https://github.com/romansmirnov/bar;;no_research; +https://github.com/romansmirnov/foo;;no_research; +https://github.com/romnn/action-release-download;Download and cache github action release binaries.;no_research;TypeScript +https://github.com/romnn/action-rs;Toolkit for building safe GitHub actions in Rust.;no_research;Rust +https://github.com/romnn/ansible-playbook-istio-helm-k8s;ansible playbook to provision a bare metal kubernetes cluster.;no_research;Jinja +https://github.com/romnn/bsonpb;serialize/deserialize golang protobuf messages into/from bson documents.;no_research;Go +https://github.com/romnn/cargo-bumpversion;bump2version drop-in-replacement for cargo (WIP);no_research;Rust +https://github.com/romnn/cargo-feature-combinations;cargo plugin to run commands against all combinations of features;no_research;Rust +https://github.com/romnn/classprop;@classproperty decorator for python that works just like @property.;no_research;Python +https://github.com/romnn/configo;Dead simple handling of config structs containing optional values for your golang app.;no_research;Go +https://github.com/romnn/cookiecutter-go;opinionated cookiecutter template for golang projects;no_research;Python +https://github.com/romnn/cookiecutter-webgl;cookiecutter template for creating modern WebGL experiments with three.js.;no_research;Python +https://github.com/romnn/datemore;useful extensions around the python builtin datetime package.;no_research;Python +https://github.com/romnn/deepequal;Deep equality with useful error messages;no_research;Go +https://github.com/romnn/devproxy;tiny command line reverse proxy for local development;no_research;Go +https://github.com/romnn/djtool;DJ Tool produced djtool to be the ultimate dj tool;no_research;Rust +https://github.com/romnn/double-Q-learning;Double Q-Learning, Reinforcement Learning 2021, University of Amsterdam;no_research;Jupyter Notebook +https://github.com/romnn/embedme;Utility for embedding code snippets into markdown documents;no_research;Go +https://github.com/romnn/favico;generate the perfect favicons for every device.;no_research;Python +https://github.com/romnn/film-borders;add 35mm / 120mm film borders to your photos :);no_research;Rust +https://github.com/romnn/flags4urfavecli;useful github.com/urfave/cli/v2 CLI extensions;no_research;Go +https://github.com/romnn/flatbson;flattens bson documents.;no_research;Go +https://github.com/romnn/flink-kafka-protobuf;Minimal working example of protobuf models streamed from kafka into a flink pipeline.;no_research;Java +https://github.com/romnn/github-actions-runner-launcher;automatic setup and registration of bare-metal GitHub actions runner instances.;no_research;Go +https://github.com/romnn/go-recursive-sort;recursively sort any golang interface for comparisons in your unit tests.;no_research;Go +https://github.com/romnn/go-service;Utilities for building gRPC and HTTP services in Go;no_research;Go +https://github.com/romnn/gpucachesim;Cycle-level, trace-driven, parallel GPU simulator for NVIDIA Pascal.;no_research;Rust +https://github.com/romnn/grpc-web-health-probe;health probing for native grpc web servers;no_research;JavaScript +https://github.com/romnn/grpc-web-proto-compile;python package for generating typescript grpc-web stubs from protobuf files.;no_research;Python +https://github.com/romnn/helm-deploy-action;deploy your helm chart to k8s.;no_research;TypeScript +https://github.com/romnn/imop;image optimizing async static file server in Rust (WIP) ;no_research;Rust +https://github.com/romnn/intro-comp-sci;Introduction to Computational Science 2021, University of Amsterdam;no_research;Jupyter Notebook +https://github.com/romnn/jmxkafka;Pre configured JMX kafka docker container;no_research;Dockerfile +https://github.com/romnn/kaggle-brane;package for simple interaction with the Kaggle API for brane data pipelines.;no_research;Python +https://github.com/romnn/ldap-manager;cloud-native LDAP web management interface.;no_research;Go +https://github.com/romnn/lsde2021;Large Scale Data Engineering 2021, Vrije Universiteit Amsterdam;no_research;Jupyter Notebook +https://github.com/romnn/marina;Your own private docker and helm registry on bare-metal kubernetes.;no_research;HTML +https://github.com/romnn/mongoimport;CLI and go library for importing data from CSV, JSON or XML files into MongoDB.;no_research;Go +https://github.com/romnn/mongotypes;additional types for the golang mongo-driver.;no_research;Go +https://github.com/romnn/npm-package-validator;python package for validating npm package names.;no_research;Python +https://github.com/romnn/nvbit-rs;Rust bindings to the NVIDIA NVBIT binary instrumentation API;no_research;Rust +https://github.com/romnn/ocrmypdf;;no_research; +https://github.com/romnn/open-hpi-badge;tiny go server that serves a custom shields.io endpoint to embed openHPI badges;no_research;Go +https://github.com/romnn/par-dfs;Parallel, serial, sync, and async DFS and BFS traversal for Rust;no_research;Rust +https://github.com/romnn/postgresimporter;A simple python wrapper script based on pgfutter to load multiple dumped csv files into a postgres database.;no_research;Python +https://github.com/romnn/proto-compile;helper package that wraps protoc for your CI and projects.;no_research;Python +https://github.com/romnn/proxybootstrap;A simple python wrapper script for bootstrapping a reverse proxy inside a docker container.;no_research;Python +https://github.com/romnn/ptxemu;work in progress;no_research;Rust +https://github.com/romnn/publish-crates;publish rust crates with support for cargo workspaces.;no_research;Rust +https://github.com/romnn/pyrocko-notebook;jupyter notebook with pyrocko pre-installed;no_research;Dockerfile +https://github.com/romnn/query-git-action;query the state of your git repo.;no_research;TypeScript +https://github.com/romnn/rail-stgcnn;Using recurrent Spatio-Temporal Graph Convolutional Neural Networks to improve ETA predictions of cargo railway transportation.;no_research;Python +https://github.com/romnn/serde_json_merge;Merge, index, iterate, and sort a serde_json::Value (recursively).;no_research;Rust +https://github.com/romnn/setup-bazel-action;setup bazel in your actions workflow.;no_research;Shell +https://github.com/romnn/setup-brane-action;GitHub action to setup brane.;no_research;Makefile +https://github.com/romnn/simulators;GPGPU simulators (WIP);no_research;Jupyter Notebook +https://github.com/romnn/taski;async DAG task scheduling in Rust (WIP);no_research;Rust +https://github.com/romnn/testcontainers;pre-configured testcontainers for your golang integration tests.;no_research;Go +https://github.com/romnn/testcontainers-rs;testcontainers in Rust (WIP);no_research;Rust +https://github.com/romnn/thesis;;no_research;C +https://github.com/romnn/vue-adminator;;no_research;Vue +https://github.com/romnn/wasm-action-experiments;experimenting with github actions (WIP);no_research; +https://github.com/rschatz/workflow-test;;no_research; +https://github.com/rschatz/zathura-synctex;fork of git://pwmt.org/zathura.git, adding synctex support;no_research;C +https://github.com/s4pu/adelphi-energy;;no_research;Python +https://github.com/s4pu/adelphi-pizza;;no_research;Vue +https://github.com/s4pu/bling;;no_research;TypeScript +https://github.com/s4pu/docker_condatest;;no_research;Python +https://github.com/s4pu/DontDieTogether;;no_research;GDScript +https://github.com/s4pu/GodotTutorialTopDown;Tutorial for Godot in preparation of the next gamejam @ HPI.;no_research;GDScript +https://github.com/s4pu/stubs-schwarz;Bestes StubS;no_research; +https://github.com/samirchar/capstone;TBD;no_research;Jupyter Notebook +https://github.com/samirchar/code_snippets;Different modules for miscellaneous tasks. In this way I avoid rewriting code.;no_research;Python +https://github.com/samirchar/datascience_resources;Compilation of links, pdf or just any resource good for data science. ;no_research; +https://github.com/samirchar/DeepIMDB;;no_research;Jupyter Notebook +https://github.com/samirchar/linkedin-project;Linkedin web scraping and analysis.;no_research;Python +https://github.com/samirchar/personal-website;My personal site;no_research;JavaScript +https://github.com/samirchar/selfSupervised_fewShot;Project for Neural Networks and Deep Learning Class with Richard Zemel;no_research;Jupyter Notebook +https://github.com/samirchar/stroke_detection;Stroke detection through mobile phone;no_research;Jupyter Notebook +https://github.com/samirchar/toxic_comments;EDA and model training for the toxic comments classification challenge in Kaggle;no_research;Jupyter Notebook +https://github.com/SanJSp/FCMFromSudbueBasedPatternExtractor;This is an implementation of a toolchain to extract FCM patterns from event logs;research;Python +https://github.com/SanJSp/lets_git_example;This is an example page from the lets_git exercises;no_research; +https://github.com/SanJSp/lets_git_exercise_de;"This is an excercise created for our MOOC ""Let's Git - Versionsverwaltung & Open Source""";no_research;Python +https://github.com/SanJSp/lets_git_exercise_en;;no_research;Python +https://github.com/SanJSp/lets_git_kochbuch;;no_research; +https://github.com/SanJSp/lets_git_reisefuehrer;;no_research; +https://github.com/SanJSp/miro_exercise_frontend;miro_exercise_frontend;no_research;JavaScript +https://github.com/SanJSp/sanjsp;;no_research; +https://github.com/SanJSp/SlackCloneApp;;no_research;Kotlin +https://github.com/SanJSp/TimeCapsule;A telegram bot to replace your journal and save your memories;no_research; +https://github.com/santifa/36c3list;A checkable list of 36c3 talks;no_research;JavaScript +https://github.com/santifa/authnc;A simple DokuWiki authentication plugin which uses the nextcloud as backend.;no_research;PHP +https://github.com/santifa/clj-dbase;A small parsing library für dBASE files. ;no_research;Clojure +https://github.com/santifa/clockodo-el;A simple emacs integration of the clockodo api;no_research;Emacs Lisp +https://github.com/santifa/compilerbau;Project for the course virtualisation and compilation.;no_research;Java +https://github.com/santifa/haskell-seminar;Exercises from the seminar functional programming with haskell.;no_research;Haskell +https://github.com/santifa/haskellstuff;Some things I wrote in Haskell. Just for fun.;no_research;Haskell +https://github.com/santifa/hfts;A small java library for enhancing linked data benchmarking datasets.;no_research;Java +https://github.com/santifa/latexcompile;A small crate which is a wrapper around some latex compiler. ;no_research;Rust +https://github.com/santifa/masterarbeit;My master thesis;no_research;Coq +https://github.com/santifa/mtools;A perl script for simplifying ffmepg handling;no_research;Perl +https://github.com/santifa/paralleles-rechnen;Exercise from the course parallel computing at UP;no_research;C +https://github.com/santifa/pasp-mode;An Emas Major Mode for editing Answer Set Programs;no_research;Emacs Lisp +https://github.com/santifa/rrp;A collection of RDF parser written in Rust.;no_research;Rust +https://github.com/santifa/rs-examples;Some more advanced examples written in Rust;no_research;Rust +https://github.com/santifa/rustea;A small cli tool for managing configuration files with gitea.;no_research;Rust +https://github.com/santifa/simple-java;Some simple programs written in java to demonstrate concepts and frameworks.;no_research;Java +https://github.com/santifa/telco-billing;A simple billing system for versatel and plusnet;no_research;Clojure +https://github.com/santifa/typeclassopedia-frege;Implementations from the Haskell typeclassopedia articel;no_research;Frege +https://github.com/santifa/uconf;A small shell script for managing dot files.;no_research;Shell +https://github.com/santifa/x-influx;A simple program to import data into influxdb;no_research;Rust +https://github.com/Schirmchens/Case_Converter;;no_research;JavaScript +https://github.com/Schirmchens/Elmo;;no_research; +https://github.com/Schirmchens/radial_menu_ue4;;no_research;Dart +https://github.com/Schirmchens/websocket_client;;no_research;Dart +https://github.com/sdedic/micronaut-maven-exec-bug;Micronaut Micronaut -maven -exec -bug Application;no_research;Batchfile +https://github.com/sdedic/vscode-treeicons;;no_research;TypeScript +https://github.com/sdepold/404-repetitions;;no_research;JavaScript +https://github.com/sdepold/adventofcode;;no_research;JavaScript +https://github.com/sdepold/algodast;Algorithmen und Datenstrukturen.;no_research;JavaScript +https://github.com/sdepold/asteroids-workshop;Building Asteroids in JavaScript ;no_research;JavaScript +https://github.com/sdepold/Autocompleter.Local.MultiContent;Extension of the script.aculo.us Autocompleter.Loca for connecting a selection with a data set.;no_research;JavaScript +https://github.com/sdepold/barfooz.net;;no_research;CSS +https://github.com/sdepold/Blame;blame your colleagues ;no_research;JavaScript +https://github.com/sdepold/blog.depold.com;Repository for my personal blog.;no_research;CSS +https://github.com/sdepold/bugs-bunny;A round-robin approach for daily bug cleanup.;no_research;JavaScript +https://github.com/sdepold/buster-test;;no_research;JavaScript +https://github.com/sdepold/buster-user-agent-parser;;no_research;JavaScript +https://github.com/sdepold/chaplin-bootstrap-2-3;;no_research;JavaScript +https://github.com/sdepold/com.depold.helpers;JavaHelpers;no_research;Java +https://github.com/sdepold/connect-form;urlencoded / multipart form parsing middleware for Connect;no_research;JavaScript +https://github.com/sdepold/contentful-blog-importer;Generic data importer for blogs on Contentful.;no_research;JavaScript +https://github.com/sdepold/contentful-ghost-importer;A CLI that imports data from ghost to contentful.;no_research;JavaScript +https://github.com/sdepold/contentful_blog;Demo project that shows how to use Contentful as backend for a blog.;no_research;Ruby +https://github.com/sdepold/crypto-balance;TBD;no_research;HTML +https://github.com/sdepold/crypto-balance-commandline;;no_research;Scala +https://github.com/sdepold/cubi;;no_research;JavaScript +https://github.com/sdepold/dashboard;;no_research;JavaScript +https://github.com/sdepold/delete-duplicates;Deletion script that interprets Synology's duplication reports and deletes the duplicate files.;no_research;JavaScript +https://github.com/sdepold/dotfiles;my dotfiles;no_research;Perl +https://github.com/sdepold/dsa-test;;no_research;HTML +https://github.com/sdepold/euscheme-nw;app.net Linux client;no_research; +https://github.com/sdepold/express-view-helpers;;no_research;JavaScript +https://github.com/sdepold/fail-on-focus;Tool that searches for focussed tests in the provided files.;no_research;JavaScript +https://github.com/sdepold/feedrapp;A service for parsing RSS and Atom feeds.;no_research;JavaScript +https://github.com/sdepold/feedrapp-loadbalancer;;no_research;JavaScript +https://github.com/sdepold/file-usage-analyzer;finds unused files in a directory according to a nginx log file;no_research; +https://github.com/sdepold/fortnite-app;;no_research;JavaScript +https://github.com/sdepold/gamestar-video-downloader;;no_research;JavaScript +https://github.com/sdepold/greenkeeper-public-test;;no_research;JavaScript +https://github.com/sdepold/gulp-busterjs;BusterJS runner for gulp;no_research;JavaScript +https://github.com/sdepold/gulp-jshint-instafail;Instantly failing reporter for gulp-jshint.;no_research;JavaScript +https://github.com/sdepold/gulp-markdown-code-blocks;Gulp task for running markdown-code-blocks.;no_research;JavaScript +https://github.com/sdepold/identify.js;Parse identify (image-magick) output into JS object.;no_research; +https://github.com/sdepold/imagine;foo;no_research;JavaScript +https://github.com/sdepold/jaspin;Node.JS based Dropbox inspired solution for inhouse networks.;no_research; +https://github.com/sdepold/jaspin-test-repo;a test repo for jaspin;no_research; +https://github.com/sdepold/javascript-basics;Learning materials for getting started with JavaScript;no_research;JavaScript +https://github.com/sdepold/jquery-rss;An easy-to-use rss plugin for jquery with templating.;no_research;JavaScript +https://github.com/sdepold/jquery.char-counter;A jQuery plugin for counting and limiting the characters in a textarea.;no_research;JavaScript +https://github.com/sdepold/jquery.google-search;Execute google searches within your client-side javascript;no_research;JavaScript +https://github.com/sdepold/jquery.skeleton;A skeleton builder for jquery plugins. Included is BusterJS for testing and Google Closure Compiler for minification.;no_research;JavaScript +https://github.com/sdepold/jquery.templar;A super simple and dynamic templating engine.;no_research;JavaScript +https://github.com/serhiy-storchaka/python-misc;;no_research;Python +https://github.com/Sghahremani/sgh;;no_research; +https://github.com/shaarmann/c8-variable-size-limit-examples;;no_research;Go +https://github.com/shaarmann/camunda-7-training-shared;;no_research;Java +https://github.com/shaarmann/end-to-end-tests-external-task-worker;;no_research;Java +https://github.com/shaarmann/modifying-process-instances-in-nested-subprocesses-test;;no_research;Java +https://github.com/ShirleyNekoDev/BinaryClockMorph;simple binary clock for Morphic (Squeak/Smalltalk);no_research;Smalltalk +https://github.com/ShirleyNekoDev/Chunky-CPUNativeOctree;Implements a packed octree using native memory management in Zig + Java 19 JEP 424;no_research;Zig +https://github.com/ShirleyNekoDev/Chunky-ExperimentalEntitiesPlugin;;no_research;Kotlin +https://github.com/ShirleyNekoDev/Chunky-MagickExportPlugin;ImageMagick export plugin for the Chunky Minecraft raytracing renderer;no_research;Kotlin +https://github.com/ShirleyNekoDev/Chunky-SchematicsPlugin;Plugin for loading Schematics files as Chunky scenes;no_research;Java +https://github.com/ShirleyNekoDev/EOSSeminar-MotionController;DIY Motion Controller;no_research;Rust +https://github.com/ShirleyNekoDev/FlutterJump;Flame engine clone of doodle jump;no_research;Dart +https://github.com/ShirleyNekoDev/GameJam-PortalBrawler;;no_research;GDScript +https://github.com/ShirleyNekoDev/GroovyByte.de;Static template and content of GroovyByte.de;no_research;HTML +https://github.com/ShirleyNekoDev/HeadsUp-Unity;Heads Up - a PVP multiplayer jump'n'run game for the 2nd HPI Game Jam 2018;no_research;C# +https://github.com/ShirleyNekoDev/ShirleyNekoDev;;no_research; +https://github.com/ShirleyNekoDev/Squeak-ToolIconsPlus;better tool icons for methods;no_research;Smalltalk +https://github.com/ShirleyNekoDev/Squot-CoAuthors;Extends the squot commit dialog by the option to select pre-defined co-authors.;no_research;Smalltalk +https://github.com/ShirleyNekoDev/StyxReactor-Client;"Frontend Client for Atlas Reactor Clone ""Styx Reactor""";no_research;C# +https://github.com/ShirleyNekoDev/uip-ex1-pscom-cli;Exercise 1, User Interface Programming lecture;no_research;C++ +https://github.com/ShirleyNekoDev/uip-ex2-draft-feedback;Exercise 2, User Interface Programming lecture;no_research;JavaScript +https://github.com/ShirleyNekoDev/uip-ex3-svg-edit;Exercise 3, User Interface Programming lecture;no_research;C++ +https://github.com/ShirleyNekoDev/uip-ex4-circular-color-menu;Exercise 4, User Interface Programming lecture;no_research;HTML +https://github.com/Siddeshkanth/FE_All_in_one;A Generalized Repo for experimenting with Financial Engineering concepts;no_research;Python +https://github.com/SiddeshkanthLogonathan/credit-risk-analysis;gain insights on credit data and build models to help understand them better;no_research;Jupyter Notebook +https://github.com/SiddeshkanthLogonathan/safe-haven-investing;developing a new category of asset-class known as safe haven to replace diversification in portfolio management;no_research;Jupyter Notebook +https://github.com/SiddeshkanthLogonathan/Spotify-Recommender-System;Using Deep Learning to create a Spotify Recommender System;no_research;Python +https://github.com/SiddeshkanthLogonathan/Stock-Price-Forecasting-using-Neural-Networks;Using Neural Networks for Financial Time Series Forecasting;no_research;Python +https://github.com/SiddeshkanthLogonathan/Twitter-Sentiment-Analysis;Performing Sentiment Analysis on extracted Tweets from Twitter;no_research;Python +https://github.com/sils/compiler-construction-haskell;This repository contains solutions to the tasks for the compiler construction course given at https://e-learning.tu-harburg.de/studip/details.php?sem_id=df81c1c72298515a65ce9cba225ed6a7;no_research;Haskell +https://github.com/sils/configurations;Vim, git, other configuration files;no_research;Perl +https://github.com/sils/CV;My CV;no_research; +https://github.com/sils/docker-centos;Personal centos docker images as base for everything else that follows;no_research;Shell +https://github.com/sils/docker-centos-owncloud;Docker image for a centos with an owncloud installation;no_research;Shell +https://github.com/sils/docker-centos-webserv;Docker image for a centos with LAMP stack;no_research; +https://github.com/sils/docker-mysql;Mysql image with few modifications for owncloud;no_research; +https://github.com/sils/docker-open-xchange;open xchange for a docker container;no_research;Shell +https://github.com/sils/elm-experiments;;no_research;Elm +https://github.com/sils/fastmatrix;Uses GPU to make a matrix multiplication;no_research;C++ +https://github.com/sils/git-tutorial-test-commits;;no_research; +https://github.com/sils/githubsucks-;;no_research; +https://github.com/sils/GitMate-Review-Demo;A demo repository for GitMate-Review;no_research; +https://github.com/sils/gitmate-test;a test repository for gitmate (gitmate.com);no_research;Python +https://github.com/sils/gmtesttest;a test repo, don't use it or subscribe to it;no_research; +https://github.com/sils/gnome-clocks-redesign;;no_research; +https://github.com/sils/graph-analyzer;A simple graph analyzer;no_research;Python +https://github.com/sils/GSOC-organization-repo;;no_research;Vala +https://github.com/sils/guadec-presentation-templates;MOVED TO https://git.gnome.org/browse/presentation-templates/;no_research;TeX +https://github.com/sils/HWPrak14;;no_research;C +https://github.com/sils/hwprak_v2;;no_research;C +https://github.com/sils/i18n-flask-doc-test-template;;no_research;Python +https://github.com/sils/learning;Learning materials;no_research;HTML +https://github.com/sils/matthew;A command line for mathematical expressions;no_research;Python +https://github.com/sils/osgrub;Automatically exported from code.google.com/p/osgrub;no_research;C +https://github.com/sils/owncloud-setup;;no_research;Shell +https://github.com/sils/remotemeetup;Remote Meetup;no_research;CSS +https://github.com/sils/rultor-test;;no_research;Shell +https://github.com/sils/sils-io-3;;no_research;HTML +https://github.com/sils/sprints;Organization for PyCon.DE 2017 Sprints;no_research; +https://github.com/sils/templates;A collection of templates for new projects or so;no_research; +https://github.com/sils/test-gitmate-for-demo;;no_research; +https://github.com/sils/testing-zenhub;;no_research; +https://github.com/sils/thermo-ui;E.ON :agile DüDo Hackathon;no_research;CSS +https://github.com/sils/Workflows;;no_research;Python +https://github.com/sils/workflows-intro;An introduction to workflows;no_research;TeX +https://github.com/sils/yafos;Yet Another Free OS (And coala was started here :)) - NO LONGER MAINTAINED;no_research;C +https://github.com/SilvanVerhoeven/AUPRestore;Tool to restore Audacity 2.x projects using the `.aup` file and the `.au` files in the `xxx_data` folder.;no_research; +https://github.com/SilvanVerhoeven/lv-data-science;;no_research;Python +https://github.com/SilvanVerhoeven/StreamHub;Simple website to give access to multiple live streams.;no_research;JavaScript +https://github.com/SilvanVerhoeven/up.rising;Webpage of UP.rising;no_research;HTML +https://github.com/sim-o-n/CalendarFrontend;;no_research;TypeScript +https://github.com/sim-o-n/TA4PM;Temporal Analysis for Process Mining;no_research;Python +https://github.com/simonstadlinger/ausarbeitung_reverseInnovation;"Ausarbeitung des Vortrages ""Reverse Innovation"" im Modul Unternehmerische Denken und Handeln der Universität Potsdam - Fakultät Digital Engineering";no_research;TeX +https://github.com/simonstadlinger/Aussage2Tabelle;Erstellt eine Latex-Tabelle aus einer Aussage;no_research;Python +https://github.com/simonstadlinger/cep19-praktikum;;no_research;HTML +https://github.com/simonstadlinger/cprojects;;no_research;C +https://github.com/simonstadlinger/DYOD_2021;;no_research;C++ +https://github.com/simonstadlinger/music-walks-samples;;no_research; +https://github.com/simonstadlinger/pt-bungHPI20172018;shared folders for exercises in the subject Programmiertechnik 1 at Hasso-Plattner-Institut for WS 2017/2018;no_research;Python +https://github.com/simonstadlinger/pt2uebungSS2018;;no_research;Java +https://github.com/simonstadlinger/recipes;A website, where you can enter recipes you found online or in an app and quickly print them for your personal recipes book;no_research;TypeScript +https://github.com/simonstadlinger/zettelkasten;personal zettelkasten merged with second brain;no_research;HTML +https://github.com/SimonWiet/experiments_nsga3;"This repository contains the source code and data used in the experimental evaluation of the NSGA-III on the 3-dimensional OneMinMax benchmark. The results are used in our paper ""A Mathematical Runtime Analysis of the Non-dominated Sorting Genetic Algorithm III (NSGA-III)"" accpeted for IJCAI 2023.";no_research;Jupyter Notebook +https://github.com/SimonWiet/fun-contest;PR me pls :);no_research; +https://github.com/skydivin4ng3l/B4DI;A Gothic mod. providing a more dynamic interface ;no_research;D +https://github.com/skydivin4ng3l/CEP2019_Praktikum;;no_research;HTML +https://github.com/skydivin4ng3l/cepModelingMonitor;CEPModeMon is a Prototype for a combined web application for modelling and monitoring Complex Event Processing Pipelines.;no_research;JavaScript +https://github.com/skydivin4ng3l/cepModelingMonitorVue;;no_research;Vue +https://github.com/skydivin4ng3l/CEPModeMon_prepro;;no_research;Starlark +https://github.com/skydivin4ng3l/datatypeconverter;Golang: Convertes Timestamps strings from different Layouts into protobuf Timestamps, also Bool J/B notation to go bools;no_research;Go +https://github.com/skydivin4ng3l/http-go-server;;no_research;Go +https://github.com/skydivin4ng3l/join-program;;no_research;C++ +https://github.com/skydivin4ng3l/NewDateConTest;;no_research;Go +https://github.com/skydivin4ng3l/PT2_Uebung_lasse_chris;Unser playground;no_research;C++ +https://github.com/skydivin4ng3l/skydivin4ng3l;;no_research; +https://github.com/sm-ghavami/beautifulsoup;This is a forked version of beautifulsoup with enhanced css select function;no_research;Python +https://github.com/sm-ghavami/LMQ;Lightweight Message Queue;no_research;Go +https://github.com/smofe/BoatsBoatsBoats;;no_research;Java +https://github.com/smofe/BPMANV-DjangoPrototype;;no_research;Python +https://github.com/smofe/Fractem;A 3D-Fractal viewer written in Python;no_research;GLSL +https://github.com/smofe/go-prototype;;no_research;Go +https://github.com/smofe/HyperInfinityCubeAndroid;An android application to control RGB-LEDs over WiFi using Google Firebase;no_research;Java +https://github.com/smofe/HyperInfinityCubeHardware;;no_research;C++ +https://github.com/smofe/input_slider;A customizable input that combines a Slider which is synchronized with a TextField.;no_research;Dart +https://github.com/smofe/MandelbrotJava;A Mandelbrot fractal viewer;no_research;Java +https://github.com/smofe/mensung;Die ultimative Mensa Rating App;no_research;Dart +https://github.com/smofe/positioning-systems-beacon;;no_research;C++ +https://github.com/smofe/positioning-systems-prototype;;no_research;Dart +https://github.com/smofe/positioning_systems_trainer_tools;;no_research;Dart +https://github.com/smofe/smart_timer;A periodic timer which only runs while the app lifecycle is resumed.;no_research;Dart +https://github.com/StanleySweet/0AD-Actor-Viewer;;no_research;C# +https://github.com/StanleySweet/0AD-Chocolatey-Package;;no_research;PowerShell +https://github.com/StanleySweet/0AD-Irc-Log-Viewer;;no_research;Java +https://github.com/StanleySweet/0AD-PMP-Parser;;no_research;C# +https://github.com/StanleySweet/0AD-Skeleton-Generator;;no_research;Python +https://github.com/StanleySweet/0AD-SpringMap-To-PyrogenesisMap;;no_research;Python +https://github.com/StanleySweet/0AD-Welcome-Bot;A simple bot that attemps to get people to stick around long enough for us to give them feedback;no_research;C# +https://github.com/StanleySweet/Actimage-OCR-PISquare;A simple application that finds words using OCR and vocal commands;no_research;C# +https://github.com/StanleySweet/blender_pyrogenesis_importer;Allows to import actor files into blender;no_research;Python +https://github.com/StanleySweet/blitzed-irc-trivia;Blitzed IRC Trivia, now maintained by Andy Alt;no_research;C++ +https://github.com/StanleySweet/ESILV.CloudApplication.Problem;"Final graded lab for ""Developpement d'applications Cloud""";no_research;C# +https://github.com/StanleySweet/FinalGradedLab;;no_research;Java +https://github.com/StanleySweet/jaguar-fan-website;;no_research;HTML +https://github.com/StanleySweet/package_mod;This mod is used to package other mods for 0 A.D.;no_research; +https://github.com/StanleySweet/precompiled_helper;Python script to understand which files would benefit most from being precompiled;no_research;Python +https://github.com/StanleySweet/replay-pallas;;no_research;Svelte +https://github.com/StanleySweet/replay-pallas-api;;no_research;TypeScript +https://github.com/StanleySweet/replay-pallas-scrapper;;no_research;JavaScript +https://github.com/StanleySweet/sdl2-text-renderer;A simple test project to test rendering fonts with the SDL2;no_research;C +https://github.com/StanleySweet/sonic-screwdriver;;no_research;C++ +https://github.com/StanleySweet/SpellmongerTR3;;no_research;Java +https://github.com/StanleySweet/stanleysweet;;no_research; +https://github.com/StanleySweet/Student-Workshop-Bicep-GitHub;;no_research;Bicep +https://github.com/stefreschke/algorithmix-homework;;no_research;TeX +https://github.com/stefreschke/bowling-kata-java;[Exploratory] Coding Kata in Java to train the application of TDD;no_research;Java +https://github.com/stefreschke/bowling-kata-ts;[Exploratory] I use this kata to explore TDD in TypeScript (and programming TypeScript in general), don't rely on this code;no_research;TypeScript +https://github.com/stefreschke/cpp-lecture-exercises;;no_research;C++ +https://github.com/stefreschke/data-visualization-exercises;;no_research;CSS +https://github.com/stefreschke/ddm-akka-hands-on;Exercise utilizing https://akka.io/ actor programming for distributed data management lecture at HPI;no_research;Java +https://github.com/stefreschke/hwr-oop-lecture-shared;;no_research;Java +https://github.com/stefreschke/hwr-oop-project-template;;no_research;Java +https://github.com/stefreschke/II-Extracted-live-map-S-Bahn-Berlin;Data extraction exercise for information integration lecture at HPI. Data crawled from VBB live map (see https://www.vbb.de/fahrplan/fahrplanauskunft/vbb-livekarte). Reads a big json and extracts to a sqlite database.;no_research;Python +https://github.com/stefreschke/jit-mutation-testing-demo;;no_research;JavaScript +https://github.com/stefreschke/Klausfish;;no_research;Python +https://github.com/stefreschke/weather-station-manager-service;;no_research;Java +https://github.com/stlutz/Algorithmix;Random assortment of algorithms and data structures written for Squeak/Smalltalk;no_research;Smalltalk +https://github.com/stlutz/ContextExtras;Extensions to Squeak/Smalltalk's Context;no_research;Smalltalk +https://github.com/stlutz/DynamicLayers;;no_research;Smalltalk +https://github.com/stlutz/ohm-glsl;A PEG grammar of GLSL for Ohm/S;no_research;Smalltalk +https://github.com/stlutz/ohm-java;A Java implementation of the Ohm parsing toolkit;no_research;Java +https://github.com/stlutz/squeak-customization;Customizations to Squeak/Smalltalk;no_research;Smalltalk +https://github.com/stlutz/VarTra;Squeak instrumentation mechanism to synchronously react to variable assignments.;no_research;Smalltalk +https://github.com/t-lichtenstein/attribute-driven-case-notion-discovery;Discovers a case notion for an unlabeled event log using optional attributes and produces an XES-file that can be used for process mining.;no_research;Java +https://github.com/t-lichtenstein/ddm;;no_research;Java +https://github.com/t-lichtenstein/process-simulator;;no_research;Java +https://github.com/T4rikA/circle_packing;;no_research;Python +https://github.com/T4rikA/DualPanto_Drawing;;no_research;C# +https://github.com/t6s/graphalg;;no_research;Coq +https://github.com/t6s/qecc;;no_research;Coq +https://github.com/t6s/tpp2021;The 17th Theorem Proving and Provers meeting (TPP 2021);no_research;OCaml +https://github.com/t6s/tpp2022;The 18th Theorem Proving and Provers meeting (TPP 2022);no_research; +https://github.com/taspinar/codesnippits;codesnippits to be put on blog-posts;no_research; +https://github.com/taspinar/GPSMachineLearning;;no_research;Jupyter Notebook +https://github.com/taspinar/sidl;Deep Learning code;no_research;Jupyter Notebook +https://github.com/taspinar/siml;Machine Learning algorithms implemented from scratch;no_research;Jupyter Notebook +https://github.com/taspinar/twitterscraper;Scrape Twitter for Tweets;no_research;Python +https://github.com/tblanchard/activemerchant;FOF Active Merchant;no_research;Ruby +https://github.com/tblanchard/activemerchant-1.4.1;Fork of activemerchant v 1.4.1 so I can fix a couple bugs for a legacy system that relies on it;no_research;Ruby +https://github.com/tblanchard/HTMLAndCSSParserAndValidator;Parses HTML and CSS of questionable quality and can generate diagnostics.;no_research;HTML +https://github.com/tblanchard/ObjectiveExpat;Objective C XML Parser;no_research;C +https://github.com/tblanchard/ObjectiveFMDB;Light weight Objective-C ORM based on ActiveRecord Pattern and FMDB;no_research;Objective-C +https://github.com/tblanchard/SmalltalkCollections4ObjC;;no_research;Objective-C +https://github.com/tblanchard/TBMime;A MIME Library for Cocoa;no_research;Objective-C +https://github.com/thams/db_fixtures_dump;;no_research;Ruby +https://github.com/thams/test_001;just for testing gitish stuff;no_research;Ruby +https://github.com/thams/trackalong;Monitors tracking devices such as Garmin InReach, realtime notifies of takeoffs and landings. Work in progress;no_research;HTML +https://github.com/TheGrayStone/NoodleNotes;NoodleNotes;no_research;HTML +https://github.com/TheoRadig/DYOD_SoSe22;;no_research;C++ +https://github.com/thogaertner/assignment_fohc;Fundamentals of healthcare assignment;no_research;JavaScript +https://github.com/thogaertner/thogaertner;Config files for my GitHub profile.;no_research; +https://github.com/thomaswue/urlchecker-examples;;no_research;Java +https://github.com/ThorbenLindhauer/activiti-engine-ppi;;no_research;Java +https://github.com/ThorbenLindhauer/activiti-engine-ppi-example;Contains an example process that can be used to measure PPIs on. Illustrates the different kinds of measures.;no_research;Java +https://github.com/ThorbenLindhauer/CAM-5073-workaround;Workaround for Camunda Bug CAM-5073;no_research;Java +https://github.com/ThorbenLindhauer/CAM-5097-workaround;Workaround for Camunda Bug CAM-5097;no_research;Java +https://github.com/ThorbenLindhauer/CAM-5552-workaround;Workaround for Camunda Bug CAM-5552;no_research;Java +https://github.com/ThorbenLindhauer/CAM-7415-workaround;;no_research;Java +https://github.com/ThorbenLindhauer/CAM-7798;Application reproducing bug CAM-7798;no_research;Java +https://github.com/ThorbenLindhauer/camunda-augment-deployment;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-dmn-prediction;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-docs-recommendation;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-does-it-run;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-generated-form;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-hackdays-2017;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-hackdays2022;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-job-executor-benchmark;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-logging-example;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-script-deployment;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-training-thread-heap-dumps;;no_research;Java +https://github.com/ThorbenLindhauer/camunda-variable-serializers;A bunch of custom variable serializers to extend Camunda's default variable handling;no_research;Java +https://github.com/ThorbenLindhauer/cmmn-prediction;;no_research;Java +https://github.com/ThorbenLindhauer/cosimin;Efficient search by similarity in large amounts of vectors.;research;Java +https://github.com/ThorbenLindhauer/example-camunda-engine-plugin;This is a super simple example of writing a camunda engine plugin and registering a parse and execution listener.;no_research;Java +https://github.com/ThorbenLindhauer/flexible-delegate-example;Example showing how to make a Camunda Java deleagte reusable;no_research; +https://github.com/ThorbenLindhauer/google-docs-linker;A google apps script to automatically convert text into links to the Camunda JIRA;no_research;JavaScript +https://github.com/ThorbenLindhauer/graphical-models;;no_research;Java +https://github.com/ThorbenLindhauer/http_patch_check;A very simple JAX-RS application for checking Http PATCH support in browsers;no_research;Java +https://github.com/ThorbenLindhauer/image-recog;A demo implementing image (face) recognition using principal component analysis (pca).;no_research;Java +https://github.com/ThorbenLindhauer/maven-tech-talk;;no_research;Java +https://github.com/ThorbenLindhauer/sch86;;no_research;HTML +https://github.com/ThorbenLindhauer/sch86-dist;;no_research;HTML +https://github.com/ThorbenLindhauer/SUPPORT-7585;;no_research;Java +https://github.com/ThorbenLindhauer/zbc-go;Zeebe Go Client;no_research;Go +https://github.com/ThorbenLindhauer/zeebe-example;;no_research;Java +https://github.com/tiborboglar/-Bank-Marketing-Data-Set-;analytical insights using the bank marketing data set;no_research;Jupyter Notebook +https://github.com/tiborboglar/Artificial_Intelligence;IME-USP Artificial Intelligence;no_research; +https://github.com/tiborboglar/brazilian_basic_edu;Exploring data about brazilian basic education for BCG Datathon, authors: Marcelo and Tibor;no_research;Jupyter Notebook +https://github.com/tiborboglar/breast_cancer;tumour classification;no_research;Jupyter Notebook +https://github.com/tiborboglar/Carcassython;Custom implementation of the Carcassonne game engine using Python. This project will be used to test Reinforcement Learning algorithms. GUI interface built upon Tkinter.;no_research;Python +https://github.com/tiborboglar/classes_grades;;no_research;Jupyter Notebook +https://github.com/tiborboglar/Computational-Probability;Monte-Carlo, Metropolis-Hastings, Expectation Maximization, Bootstrapping, Newton-Raphson and more.;no_research;Jupyter Notebook +https://github.com/tiborboglar/FastWeedMapping;;no_research;Python +https://github.com/tiborboglar/hacker_rank;I'll put some of my solutions to Hacker Rank challenges;no_research;Jupyter Notebook +https://github.com/tiborboglar/HPI-DistributedDataManagement;Sending large messages remotely with Akka actors;no_research;Java +https://github.com/tiborboglar/IsLearningFeasible;Machine Learning - Mostafa;no_research;Jupyter Notebook +https://github.com/tiborboglar/KinectPy;Extraction, processing and analysis of data recorded from multiple Azure Kinect sensors. Includes transformation from RGBD to PCD, registration, filtering, segmentation and pose estimation.;no_research;Python +https://github.com/tiborboglar/MountainCar_WebCam;Fun project that allows you to control a Mountain Car based on hand recognition using your own Web Cam. End-to-end project using Tensorflow Keras as recognition model.;no_research;Python +https://github.com/tiborboglar/tableau_simplex;Implementation of Simplex Method;no_research;Jupyter Notebook +https://github.com/timfel/ace-bartman;;no_research;CMake +https://github.com/timfel/ace-project1;;no_research;C +https://github.com/timfel/ace-template;;no_research;CMake +https://github.com/timfel/adress_crawler;;no_research;Ruby +https://github.com/timfel/amigawars;;no_research;C +https://github.com/timfel/BabelsbergWinRT;Fooling around with Babelsberg/JS in WinRT JS apps;no_research;JavaScript +https://github.com/timfel/bibtex-cleaner;;no_research;Ruby +https://github.com/timfel/bmpvideodemo;;no_research;Ruby +https://github.com/timfel/cassowary-ruby;;no_research;Ruby +https://github.com/timfel/ceres-bin;;no_research;C++ +https://github.com/timfel/chest;;no_research;Ruby +https://github.com/timfel/cloudpaper;;no_research; +https://github.com/timfel/csharp-hessian;Import from http://www.hessiancsharp.org;no_research;C# +https://github.com/timfel/cv;;no_research; +https://github.com/timfel/dash;A Jump'n'Run for WP7;no_research;C# +https://github.com/timfel/deltared;Simple implementation of the DeltaBlue multi-way constraint solving algorithm;no_research;Ruby +https://github.com/timfel/dockersw;;no_research;C++ +https://github.com/timfel/dosbox-svn;A clone of the DOSBox SVN repository;no_research;C++ +https://github.com/timfel/etoys-spur;A repository to track Etoys development, keep external sources, and build all-in-one bundles;no_research; +https://github.com/timfel/euphoria;I enhanced euphoria with some new features and stuff. It used to be Tilman Sauerbeck's project (code-monkey). It's written in ruby-efl;no_research; +https://github.com/timfel/flightpanel;;no_research;Python +https://github.com/timfel/ftlk-stuff;Lots of random stuff i did in fltk. Some of it is copied from around the town.;no_research;C++ +https://github.com/timfel/gitocello;Git O'Cello tries to bridge from Squeak+Monticello to GNU Smalltalk+Git;no_research;Smalltalk +https://github.com/timfel/graalenv;;no_research;Shell +https://github.com/timfel/graalpy-jbang;;no_research;Java +https://github.com/timfel/HostedWhatsAppWeb;;no_research;JavaScript +https://github.com/timfel/intellij-darcula-solarized;;no_research;Shell +https://github.com/timfel/jruby-cext;C extension loader for JRuby;no_research;C +https://github.com/timfel/JSON-st;The Gnu Smalltalk port of the Squeak JSON library;no_research;Smalltalk +https://github.com/timfel/jumpman;;no_research;Assembly +https://github.com/timfel/kaplan;Precompiled version of Kaplan;no_research;Scala +https://github.com/timfel/krb5-auth;Mirror of the krb5-auth repository on RubyForge;no_research;C +https://github.com/timfel/lang-smalltalk;Read-only mirror of;no_research;Python +https://github.com/timfel/libmail;;no_research;C +https://github.com/timfel/lsp-graalvm;;no_research;Emacs Lisp +https://github.com/timfel/lsp-netbeans;Netbeans-based language server for emacs-lsp;no_research;Emacs Lisp +https://github.com/timgarrels/gameprog-detective-bot;"Bot Komponente für ""A Detecitve Game"" des Gameprog Seminars";no_research;Python +https://github.com/timgarrels/gameprog-detective-server;"Server Komponente für ""A Detecitve Game"" des Gameprog Seminars";no_research;Python +https://github.com/timgarrels/LazyFox;Parallelization enabled Implementation of FOX, an Overlapping Clustering Algorithm;research;C++ +https://github.com/timgarrels/MA_analytics;Collection of tools to run analyses for my master thesis, based on the pmotif_lib py-package;no_research;HTML +https://github.com/timgarrels/PickMeUp;Pick up failed list processing without re-processing;no_research;Python +https://github.com/timgarrels/pmotif_lib;Perform motif detection, either with traditional frequency, or with positional metrics for each graphlet occurrence.;no_research;Python +https://github.com/timgarrels/Random-Graph-Generator;Flask Server which creates and renders random graphs or trees with graphviz;no_research;Python +https://github.com/timgarrels/TableRecognition21;Table Recognition Seminar SS21 HPI;research;Jupyter Notebook +https://github.com/timgarrels/Tagesschau_WordFrequencyAnalysis;Analysing Tagesschau.de subtitles on word frequency by date, inspired by https://www.zeit.de/politik/deutschland/2019-09/bundestag-jubilaeum-70-jahre-parlament-reden-woerter-sprache-wandel;no_research;Python +https://github.com/timgarrels/timing_attack_demonstration;A mock-up timing attack against character wise password comparison in Python. Made for a presentation for a ISec-Seminar ;no_research;Python +https://github.com/timgarrels/WaitForItTqdm;An iterable which either shows a progress bar on each iteration, or on one specific one;no_research;Python +https://github.com/tiran/advisorytest;;no_research; +https://github.com/tiran/ansible-wasm-buildbot;Ansible playbook for WASM Buildbot;no_research;Jinja +https://github.com/tiran/borgssh;PRIVATE: do not use;no_research;Dockerfile +https://github.com/tiran/certifi-system-store;certifi-system-store, a certifi hack to use system trust store on Linux and FreeBSD;no_research;Python +https://github.com/tiran/covns;Reproducer for https://bitbucket.org/ned/coveragepy/issues/572;no_research;Python +https://github.com/tiran/cpython-wasm-test;Test CPython WebAssembly builds with Emscripten SDK;no_research;Shell +https://github.com/tiran/cpython_autoconf;Container image with autotools to regenerate Python's configure script;no_research;Shell +https://github.com/tiran/cpython_builddep;Install CPython build and development dependencies;no_research;Shell +https://github.com/tiran/ct_log_list;Generator for OpenSSL certificate transparency log list (ct_log_list.cnf);no_research;Python +https://github.com/tiran/custodia-container;Custodia container builder;no_research;Python +https://github.com/tiran/custodia-example-plugins;Custodia example plugins;no_research;Python +https://github.com/tiran/custodia_goforwarder;Custodia Forwarder in Go;no_research;Go +https://github.com/tiran/CVE-2018-8970;Demo for https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8970;no_research;C +https://github.com/tiran/defusedexpat;;no_research;C +https://github.com/tiran/defusedxml;;no_research;Python +https://github.com/tiran/dhkex;PoC for ECDHE + cert verify + HKDF;no_research;Python +https://github.com/tiran/distro-truststore;Linux distribution CA store test;no_research;Python +https://github.com/tiran/expat;clone of git://git.code.sf.net/p/expat/code_git;no_research;C +https://github.com/tiran/expat_cvs;;no_research;C +https://github.com/tiran/fast_split_tokens;Fast ldap.schema.tokenizer.split_tokens;no_research;Python +https://github.com/tiran/k8n-contentlength;Kubernetes proxy Content-Length bug;no_research;Python +https://github.com/tiran/kkdcpasn1;ASN.1 parser for KKDCP (Kerberos KDC Proxy);no_research;C +https://github.com/tiran/legacycrypt;Python legacrypt crypt module for libcrypt / libxcrypt;no_research;Python +https://github.com/tiran/legacylib;A copy of legacy modules from Python's standard library.;no_research;Python +https://github.com/tiran/militarygrade;Military grade bad crypto;no_research;Python +https://github.com/tiran/mod_nss;;no_research;C +https://github.com/tiran/multissl;Run Python tests against multiple installations of OpenSSL and LibreSSL;no_research;Python +https://github.com/tiran/nuxwdog;;no_research;Shell +https://github.com/tkmru/anarchy_proof;http://web.archive.org/web/20130609191210/http://as305.dyndns.org/aps/problem;no_research;Coq +https://github.com/tkmru/anti-debugging-poc;anti-debugging PoC;no_research;Python +https://github.com/tkmru/aoj;for cpp study;no_research;C++ +https://github.com/tkmru/awesome-edr-bypass;Awesome EDR Bypass Resources For Ethical Hacking;no_research; +https://github.com/tkmru/awesome-linux-rootkits;a summary of linux rootkits published on GitHub;no_research; +https://github.com/tkmru/benri;Miscellaneous scripts to make my life a little less painful;no_research;Shell +https://github.com/tkmru/biwx;binary editor;no_research;Python +https://github.com/tkmru/BurpSuiteExtensionTemplate;Template codes for burp extension developers;no_research;Java +https://github.com/tkmru/cibo;x86 emulator written in Go. (CURRENTLY UNDER DEVELOPMENT);no_research;Go +https://github.com/tkmru/cibo-wasm;;no_research;Go +https://github.com/tkmru/client-side-template-injection-sample;Client-Side Template Injection Sample App with AngularJS;no_research;HTML +https://github.com/tkmru/cooking-recipe;メモがないと難しい料理のメモ;no_research; +https://github.com/tkmru/coq99;coq practice [Functional Programming Memo: [Coq] Coq-99 : Part 1](http://study-func-prog.blogspot.jp/2010/07/coq-coq-99-part-1.html);no_research;Coq +https://github.com/tkmru/detect_enemy;use this senser http://akizukidenshi.com/catalog/g/gM-02471/;no_research;Processing +https://github.com/tkmru/dotfiles;My development environment on OSX and Ubuntu using Mitamae;no_research;Shell +https://github.com/tkmru/dotfiles-windows;dotfiles for windows;no_research;PowerShell +https://github.com/tkmru/favurl;This chrome extention display favorite tweets with URL in Twitter.;no_research;JavaScript +https://github.com/tkmru/favurl_icons;These Processing code make favurl icon.;no_research;Processing +https://github.com/tkmru/fixYabinary;Tool to fix Yabinary.;no_research;Python +https://github.com/tkmru/genpatch;genpatch is IDA plugin that generates a python script for patch;no_research;Python +https://github.com/tkmru/get_similar_words_from_wikipedia_ja;;no_research;Python +https://github.com/tkmru/goran;simple http server.;no_research;Go +https://github.com/tkmru/iconresizer;;no_research;JavaScript +https://github.com/tkmru/idapm;idapm is IDA Plugin Manager via GitHub Repository.;no_research;Python +https://github.com/tkmru/idapython-scripts;IDAPro scripts;no_research;Python +https://github.com/tkmru/im2pdf;Tool to convert images to pdf and unite them.;no_research;Python +https://github.com/tkmru/isucon4-qualifier-study;@ ISUCONもくもく会 in wantedly;no_research;Ruby +https://github.com/tkmru/isucon4-qualifier-study2;09.09.18;no_research;Ruby +https://github.com/tkmru/lazyCSRF;A more useful CSRF PoC generator on Burp Suite;no_research;Java +https://github.com/tkmru/linux-driver-playground;A repository to store Linux driver for practice. ;no_research;C +https://github.com/tkmru/linux-insides-ja;Japanese version of linux-insides book;no_research; +https://github.com/tkmru/machine-learning-playground;;no_research;Python +https://github.com/tkmru/maruko;malware crawler inspired by 'ちびまる子ちゃん';no_research;Python +https://github.com/tkmru/middleware_boilerplates;;no_research; +https://github.com/tkmru/mln;A modern replacement for ‘ln’. It is inspired by exa.;no_research;Go +https://github.com/tkmru/multiarch_bootstrap;bootstrap some arch debian qcow2 images for macOS/ubuntu;no_research;Shell +https://github.com/tkmru/my-frida-snippets;;no_research;Python +https://github.com/tkmru/my-gulp-template;gulp template for sass and liveReload;no_research;JavaScript +https://github.com/tkmru/nao;Simple No-meaning Assembly Omitter for IDA Pro (This is just a prototype);no_research;Python +https://github.com/tkmru/nginx-alias-traversal-sample;Nginx alias traversal vulnerable environments for study;no_research;HTML +https://github.com/tkmru/nginx-http-splitting-sample;Nginx HTTP response splitting vulnerable environments for study;no_research;HTML +https://github.com/tkmru/no_libc;C program without libc.;no_research;C +https://github.com/tkmru/pbas;Config file finder for golang;no_research;Go +https://github.com/tkmru/pwnkiller;pwn tool inspired by 'painkiller' https://www.youtube.com/watch?v=nM__lPTWThU;no_research;Python +https://github.com/tkmru/pwn_collection;CTF & practice exploit collection;no_research;Python +https://github.com/tkmru/pwn_server;pwn server for practice;no_research;Python +https://github.com/tkmru/rails_with_react_sample;my rails app with react sample;no_research;Ruby +https://github.com/tkmru/remo_to_mackerel;;no_research;Python +https://github.com/tkmru/seccamp2021-b5;;no_research;Python +https://github.com/tkmru/seccamp2023-c4;;no_research;Dockerfile +https://github.com/tkmru/sqli_dict;SQL injection dictionary for Google 日本語入力;no_research; +https://github.com/tkmru/stocks;;no_research;JavaScript +https://github.com/tkmru/sublime-text-settings;my sublime text settings;no_research;JavaScript +https://github.com/tkmru/til;Today I Learned;no_research; +https://github.com/tkmru/tkmru;Config files for my GitHub profile.;no_research; +https://github.com/tkmru/tour_of_go_practice;https://tour.golang.org/list;no_research;Go +https://github.com/tkmru/vuln-notes;A note of my favorite vulnerability.;no_research; +https://github.com/tkmru/vuln_pickle_server;;no_research;Python +https://github.com/tkmru/weatherhacks;This python code extracts Weather forecast in Japan from Weather Hacks. Weather Hacks is web service that distribute Weather forecast json data. URL:http://weather.livedoor.com/weather_hacks/webservice;no_research;Python +https://github.com/tkmru/xss_dict;xss dictionary for Google 日本語入力;no_research; +https://github.com/tkrodriguez/intellij-settings;;no_research; +https://github.com/tkrodriguez/java-hsdis;;no_research;C +https://github.com/tkrodriguez/pycharm-settings;;no_research; +https://github.com/tmillich/cornflakes;Webserver with Firebase, Angular and Node.js backend;no_research;TypeScript +https://github.com/tmillich/reverse_proxy;Nginx https reverse proxy with docker-compose;no_research;HTML +https://github.com/Tobias314/blainder;Copy of the original BlAInder repository with minor modifications;research;Python +https://github.com/Tobias314/CantaloupeStartHack23;;no_research;Jupyter Notebook +https://github.com/Tobias314/CoronaInfoWebApp;WirvsVirus Hackathon project;no_research;Python +https://github.com/Tobias314/HackZurich2021;Hack Zurich 2021 project for a flood warning app.;no_research;Jupyter Notebook +https://github.com/Tobias314/nodejs_file_upload;;no_research;JavaScript +https://github.com/Tobias314/Pass-the-Bomb-App;"A modern Android app Version of the ""Hot Potato"" game for several people. The app makes use of the phones accelerations sensors and provides options to share challanges online.";no_research;Kotlin +https://github.com/Tobias314/SparkAssignment;Solution for an batch processing assignment about finding inclusion dependency in the thch dataset. Done for a university course about distributed data management at Hasso-Plattner-Institute.;no_research;Scala +https://github.com/Tobias314/StickAndFlummy;A simple and a bit hacky physics game, created as part of the 7th HPI game jam.;no_research;C# +https://github.com/Tobias314/Wumpus_assignment_python;;no_research;Python +https://github.com/tobiasduerschmid/microservices-demo;Sample cloud-native application with 10 microservices showcasing Kubernetes, Istio, gRPC and OpenCensus. Provided for illustration and demo purposes.;no_research; +https://github.com/tobiashoppe/iban-generator;Automatically exported from code.google.com/p/iban-generator;no_research;Java +https://github.com/tobiashoppe/promnicat;Automatically exported from code.google.com/p/promnicat;no_research;Java +https://github.com/tobiashoppe/stammbaum;Creation of family trees / Erstellen von Stammbäumen;no_research;Java +https://github.com/tom95/BTLiveEdit;;no_research;Smalltalk +https://github.com/tom95/dbpedia-events-ui;;no_research;JavaScript +https://github.com/tom95/demon-go-paper;;no_research;TeX +https://github.com/tom95/dungeons-n-dancing;;no_research;TypeScript +https://github.com/tom95/elementary-docs;Vapis for valadoc for elementary projects;no_research;Vala +https://github.com/tom95/flappy3d;;no_research;Java +https://github.com/tom95/gala-alternate-alt-tab;Plugin for alternative alt-tab window switcher for the Gala WM;no_research;Vala +https://github.com/tom95/indicator-synapse;;no_research;Vala +https://github.com/tom95/indicator-toggl;;no_research;Vala +https://github.com/tom95/irc-cloud-bot;"""IRCCloud""-like Open Source Alternative";no_research;JavaScript +https://github.com/tom95/mealing-list;Mealing without mailing.;no_research;HTML +https://github.com/tom95/mysterious-murder-paper;;no_research;TeX +https://github.com/tom95/np;nc without problems. (ICE negotiator included);no_research;Vala +https://github.com/tom95/password-indicator;;no_research;Vala +https://github.com/tom95/Pheno;A morphic-based UI framework with a lot of Bootstrap-like widgets.;no_research;Smalltalk +https://github.com/tom95/pulse-app-manager;;no_research;C +https://github.com/tom95/PXCreateByAbstracting;;no_research;Smalltalk +https://github.com/tom95/sandblox;;no_research;TypeScript +https://github.com/tom95/seminar-project;a project for the seminar class;no_research; +https://github.com/tom95/server-testing;;no_research;C +https://github.com/tom95/SomeNote;;no_research;JavaScript +https://github.com/tom95/sqFreeTypeFont;A new font type for rendering via FreeType in Squeak;no_research;Smalltalk +https://github.com/tom95/sqhello;Smallish Squeak Launcher Thing that works for me. For the real stuff check out https://github.com/HPI-SWA-Teaching/Algernon-Launcher;no_research;Smalltalk +https://github.com/tom95/sqLayerCanvas;;no_research;Smalltalk +https://github.com/tom95/sqpdf;Tiny PDF display plugin for Squeak using libpoppler as its backend;no_research;Smalltalk +https://github.com/tom95/sqScreenKeys;Tiny tool to display key presses in the lower right corner of your Squeak image;no_research;Smalltalk +https://github.com/tom95/svgcanvas;A canvas to render to SVG output for Squeak/Smalltalk;no_research;Smalltalk +https://github.com/tom95/testgame;;no_research;GDScript +https://github.com/tom95/testing-hpi;just testing.;no_research;CSS +https://github.com/tom95/thrown-back;(Most certainly) an entry for the GitHub Game-off 2017;no_research;GDScript +https://github.com/tom95/TOMSpaceshooter;;no_research;Smalltalk +https://github.com/tom95/tree-sitter-smalltalk;;no_research;C +https://github.com/tom95/weather_plus;;no_research;Dart +https://github.com/tommartensen/alertmanager-logger;Logging service for alerts sent by Alertmanager;no_research;Python +https://github.com/tommartensen/arion-backend;Arion is a service to transform a set of Esper EPL queries into EQMN models. With a graphical model, even non-computer scientists can comprehend event queries, event types and the cause for an event.;no_research;Python +https://github.com/tommartensen/arion-frontend;Arion is a service to transform a set of Esper EPL queries into EQMN models. With a graphical model, even non-computer scientists can comprehend event queries, event types and the cause for an event.;no_research;JavaScript +https://github.com/tommartensen/distributed-data-management-vl;"Assignments for HPI lecture ""Distributed Data Management""";no_research; +https://github.com/tommartensen/fake-news-detector;Implementing a fake news detector. Comparing different ML algorithms and NLP strategies.;no_research;Python +https://github.com/tommartensen/gh-checker;;no_research; +https://github.com/tommartensen/gha-custom-release;;no_research;Shell +https://github.com/tommartensen/go-ci-sample;Sample Repository to demonstrate CI/CD with Travis for Golang;no_research;Makefile +https://github.com/tommartensen/hello-world-docker-action;;no_research; +https://github.com/tommartensen/jaga;Jaga is a Strava application that finds segments and their KOM time and pace to beat.;no_research;Python +https://github.com/tommartensen/mocc-assignments;"Assignments for HPI/TU Berlin lecture ""Methods of Cloud Computing""";no_research;C +https://github.com/tommartensen/raspberry-provisioning;Scripts for Raspbian Development Setup ;no_research;Shell +https://github.com/tommartensen/test-gh-actions;;no_research; +https://github.com/tommartensen/tfui;TFUI integrates with your Terraform workflow to graphically display planned changes;no_research;Go +https://github.com/tommartensen/tic;TIC is a library that acts as a Toolbox for Interpretability Comparison.;no_research;Python +https://github.com/tommartensen/tommartensen;;no_research; +https://github.com/tommartensen/ubuntu-bionic-dev;Vagrant / Ansible Local configuration for Ubuntu Bionic (18.04 LTS) Developer Machines running in VirtualBox;no_research;Shell +https://github.com/tommartensen/weather_exporter;Weather Exporter for Prometheus;no_research;Go +https://github.com/tweedge/DFIR_cxp2269_CSEC464;Stackpole pls;no_research;PowerShell +https://github.com/tweedge/dmsh;Given a list of domains, check which can be registered and optionally guess how popular each was.;no_research;Python +https://github.com/tweedge/dns-mollusc;A simple, synchronous, rate-limiting DoH client to check if a given response is filtered by the specified resolver.;no_research;Python +https://github.com/tweedge/emerging-threats-pihole;Block malware on your network using your PiHole, using threat intelligence extracted from Emerging Threats rulesets.;no_research;Python +https://github.com/tweedge/my-torrent-fish;Personal copy of the torrent-fish application provisioned with my torrents.;no_research;Dockerfile +https://github.com/tweedge/ntlk;This package prevents a shockingly common typo for NLTK, preventing typosquatting. Update: this package was banned from PyPI - neat! ;no_research; +https://github.com/tweedge/parquet2csv;Listen, sometimes you just need a dang CSV file, ok?;no_research;Python +https://github.com/tweedge/phossil;kitphishr meets VirusTotal;no_research;Python +https://github.com/tweedge/pushshift-deceptive-links-analysis;;no_research;Python +https://github.com/tweedge/pypi-examiner;Scrapes PyPI for a few things the Warehouse API doesn't provide.;no_research;Python +https://github.com/tweedge/ru-ok;"Checking the status of Russian internet properties (via RIPE Atlas) being targeted by Ukraine's hacktivist ""IT ARMY"" Telegram group (and others).";no_research;Python +https://github.com/tweedge/springcore-0day-en;"Everything I needed to understand what was going on with ""Spring4Shell"" - translated source materials, exploit, links to demo apps, and more.";no_research;Python +https://github.com/tweedge/sslstrip2;Criminalizing hacking tools is even less effective than criminalizing lockpicks. By the way, here's a criminalized hacking tool.;no_research;Python +https://github.com/tweedge/tldr;TLD records archive. Revisiting the original TLDR project by mandatoryprogrammer, on the hunt for more root nameserver changes.;no_research;Python +https://github.com/tweedge/torrent-fish;Backed by libtorrent, torrent-fish is a lightweight, metadata-only peer used to make long-term torrenting easier and cheaper.;no_research;Python +https://github.com/tweedge/tweedge;It's a readme for you to read about me what more do you want;no_research; +https://github.com/tweedge/unique-local-ipv6;Restoring a good and useful site which generates IPv6 ULAs and helps inform users of IPv6 private addressing basics.;no_research;HTML +https://github.com/tweedge/unishox2-afl-harnesses;Assorted (basic) harnesses for Unishox2 to be fuzzed with AFL++;no_research;C +https://github.com/tweedge/unishox2-py3;A package for Unicode-friendly string compression using Unishox2;no_research;Python +https://github.com/tweedge/websights;Well-labeled files & regexes to search for when performing reconnaissance against websites.;no_research;Python +https://github.com/tweedge/workers-email-archiver;Cloudflare Workers worker which takes in an email, compresses it, and archives it to an S3-compatible storage provider.;no_research;JavaScript +https://github.com/tweedge/yara-rules;Personal YARA rules, for reasons;no_research;YARA +https://github.com/twollnik/ti1;;no_research; +https://github.com/twollnik/YETI;A bottom-up traffic emission calculation tool developed at the Institute for Advanced Sustainability Studies in Potsdam and built in Python.;no_research;Python +https://github.com/tylervernonsmith/ChronoChat-android;;no_research;Java +https://github.com/tzezula/AntTargetDependencies;Creates a dot file describing Ant build script target dependencies;no_research;Java +https://github.com/tzezula/ecperftest;Parser Performance Test;no_research;JavaScript +https://github.com/tzezula/J1_2016_NetBeansJigsaw;Java One 2016: The Java 9 Module System Support in the NetBeans IDE;no_research;Java +https://github.com/tzezula/JDBCInGuestLangugeSample;;no_research;Java +https://github.com/tzezula/jimfs;;no_research;Java +https://github.com/tzezula/karaf-polyglot;Using Polyglot APIs in Karaf OSGi.;no_research;Java +https://github.com/tzezula/MvnIndexPerfTest;Performance tests of the nexus maven repository index creation;no_research;Java +https://github.com/tzezula/NB-API-JMH-Test;Example of Java Microbenchmark Harness Test of NetBeans API;no_research;Java +https://github.com/tzezula/nb-ending-spaces;NetBeans module to display and remove line ending spaces;no_research;Java +https://github.com/tzezula/NetBeansJava9TestProjects;NetBeans test projects for Java 9 features;no_research;Java +https://github.com/tzezula/rajce-downloader;Simple image downloader from www.rajce.idnes.cz written in Node.js;no_research;JavaScript +https://github.com/tzezula/ruby-unchained-test;Test of truffle ruby using maven.;no_research;Java +https://github.com/tzezula/zipfs;Zip filesystem for graalvm polyglot application;no_research;Java +https://github.com/UliPrantz/CoffeeTerminal;Small Flutter project for a transaction terminal e.g. a vending machine based on a Raspberry Pi;no_research;Dart +https://github.com/UliPrantz/GitHubContributionBot;GitHub Contributions Bot - Earning Contributions by making commits to private repos.;no_research;Python +https://github.com/UliPrantz/Hack_HPI23;Flutter frontend repo for the HackHPI 2023 challenge;no_research;C++ +https://github.com/UliPrantz/Hack_HPI23_Dashboard;Dashboard for the companies;no_research;HTML +https://github.com/UliPrantz/PortfolioWebsite;My own portfolio website.;no_research;JavaScript +https://github.com/UliPrantz/RaspberryPiSpeaker;Raspberry Pi (Zero 2 W) as Speaker with HifiBerry DAC+ Module. Pi acts as Spotify Speaker device and as Bluetooth A2DP Receiver with Pin Code Authorization.;no_research;Python +https://github.com/UliPrantz/TestRepo;;no_research;Dart +https://github.com/UliPrantz/UliPrantz;My personal Repository;no_research; +https://github.com/veerlosar/AhoCorasick;;no_research;C++ +https://github.com/veerlosar/ERHS;;no_research;Jupyter Notebook +https://github.com/veerlosar/rp_canonicalisation;;no_research; +https://github.com/vjovanov/actormig;;no_research;Scala +https://github.com/vjovanov/bigdata2012;;no_research;Shell +https://github.com/vjovanov/db-interface;The database interface when JavaScript programs are running outside MLE.;no_research;JavaScript +https://github.com/vjovanov/db-interface-mle;;no_research;JavaScript +https://github.com/vjovanov/dissertation;My PhD dissertation.;no_research;TeX +https://github.com/vjovanov/eval;Failures in the eval of LMS;no_research;Scala +https://github.com/vjovanov/finally-tagless;"The Scala implementation of the code from the paper ""Finally Tagless Partially Evaluated"" by Carette et al. ";no_research;Scala +https://github.com/vjovanov/interpreter;AST interpreter for scala.meta;no_research;Scala +https://github.com/vjovanov/kdp2009;Automatically exported from code.google.com/p/kdp2009;no_research;Java +https://github.com/vjovanov/maps;;no_research;Objective-C +https://github.com/vjovanov/microfluidic;Prototype for a laboratory-on-chip DSL.;no_research;Scala +https://github.com/vjovanov/mle;The JavaScript interface for the Multi-Lingual Engine.;no_research;JavaScript +https://github.com/vjovanov/mpde-dsl;Simple DSL that uses macro based deep embedding (MPDE);no_research;Scala +https://github.com/vjovanov/papers;Papers of Vojin Jovanovic.;no_research;TeX +https://github.com/vjovanov/pia2123;Automatically exported from code.google.com/p/pia2123;no_research;Java +https://github.com/vjovanov/pia2123.pia;Automatically exported from code.google.com/p/pia2123.pia;no_research; +https://github.com/vjovanov/polyglot-native-demo;Polyglot Native Demo: Sentiment Analysis of Tweets;no_research;Python +https://github.com/vjovanov/presentations;;no_research;JavaScript +https://github.com/vjovanov/record-lubs;;no_research;Scala +https://github.com/vjovanov/reification;;no_research;Scala +https://github.com/vjovanov/scala.concurrent-sip;The SIP for 2.10 changes to scala.concurrent ;no_research; +https://github.com/vjovanov/stop-epidemic;A app that tracks your exposure to a virus without loosing any privacy;no_research;Java +https://github.com/vjovanov/string-templating;string-templating;no_research;Scala +https://github.com/vjovanov/webrevs;;no_research;HTML +https://github.com/vjovanov/yinyang-lms-example;;no_research;Scala +https://github.com/vjovanov/z-automation;Home automation scripts for Zlatibor;no_research;JavaScript +https://github.com/vsajip/action-tests;;no_research;C# +https://github.com/vsajip/asciidoc;Automatically exported from code.google.com/p/asciidoc;no_research;Python +https://github.com/vsajip/babel3;Mirror of the babel3 repo;no_research;Python +https://github.com/vsajip/bits-n-bobs;;no_research; +https://github.com/vsajip/ccc2ebnf;A CongoCC -> EBNF converter (for use with https://bottlecaps.de/rr);no_research; +https://github.com/vsajip/cefpython-old;Automatically exported from code.google.com/p/cefpython;no_research;Python +https://github.com/vsajip/cfgclient;Example programs/projects showing how to use CFG libraries from your own code.;no_research;HTML +https://github.com/vsajip/ciplay;A place for working on CI actions;no_research;Python +https://github.com/vsajip/clang;Improvements and bug-fixes for libclang. See the develop branch for these.;no_research;C++ +https://github.com/vsajip/cpython-static-analysis;Code to analyse usage of static variables in CPython;no_research;Python +https://github.com/vsajip/cs-shim;A shim to run external programs, configurable as to initial command line and working directory. License: BSD-3-Clause.;no_research;C# +https://github.com/vsajip/d-cfg-lib;A D library for working with the CFG configuration format.;no_research;D +https://github.com/vsajip/dart-cfg-lib;A Dart library for working with the CFG configuration format.;no_research;Dart +https://github.com/vsajip/distlib;A low-level library which implements some Python packaging standards (PEPs) and which could be used by third-party packaging tools to achieve interoperability.;no_research;Python +https://github.com/vsajip/django-command-extensions;Automatically exported from code.google.com/p/django-command-extensions;no_research; +https://github.com/vsajip/dokan;Automatically exported from code.google.com/p/dokan;no_research;C# +https://github.com/vsajip/dotnet-cfg-lib;A CLR library for working with the CFG configuration format.;no_research;C# +https://github.com/vstinner/check_python_vuln;Check Python vulnerabilities;no_research;Python +https://github.com/vstinner/cpython_core_tutorial;Tutorial to contribute to the CPython project;no_research;Python +https://github.com/vstinner/fat;The fat module is Python 3.6 extension module (written in C) implementing fast guards for specialized functions;no_research;C +https://github.com/vstinner/fatoptimizer;Static optimizer specializing functions with guards for Python 3.6;no_research;Python +https://github.com/vstinner/faulthandler;Fault handler for Python: display the Python backtrace on SIGSEGV, SIGFPE, SIGABRT, SIGBUS and SIGILL signals;no_research;C +https://github.com/vstinner/hachoir;Hachoir is a Python library to view and edit a binary stream field by field;no_research;Python +https://github.com/vstinner/misc;"Configuration (""dotfiles""), small personal programs like scm.py, other misc things...";no_research;Python +https://github.com/vstinner/notes;Victor Stinner's Notes;no_research;Python +https://github.com/vstinner/pycapi;PyCAPI C API for Python 2.7 to 3.13;no_research;C +https://github.com/vstinner/pyfailmalloc;Debug tool for Python injecting memory allocation faults;no_research;C +https://github.com/vstinner/pymicrobench;Suite of Python microbenchmarks written for CPython;no_research;Python +https://github.com/vstinner/pyperformance_results;Results of the Python performance benchmark suite;no_research; +https://github.com/vstinner/pysandbox;WARNING: pysandbox is BROKEN BY DESIGN, please move to a new sandboxing solution (run python in a sandbox, not the opposite!);no_research;Python +https://github.com/vstinner/python-ptrace;python-ptrace is a Python binding of ptrace library.;no_research;Python +https://github.com/vstinner/python-security;Documentation of Python security;no_research;Python +https://github.com/vstinner/pythonci;CI to run numpy on the master branch of Python;no_research;Python +https://github.com/vstinner/pythondev;Python Development Documentation;no_research;Python +https://github.com/vstinner/sixer;Add Python 3 support to Python 2 applications using the six module.;no_research;Python +https://github.com/vstinner/talks;Victor Stinner's talks;no_research;HTML +https://github.com/vstinner/tracemallocqt;Qt GUI for tracemalloc;no_research;Python +https://github.com/vstinner/unicode_book;Programming with Unicode, book written by Victor Stinner;no_research;Python +https://github.com/waffle-iron/100meals;Django app blog thingy;no_research; +https://github.com/waffle-iron/10xts-ito;Initial Token Offering;no_research; +https://github.com/waffle-iron/2DoBox-Pivot;;no_research;JavaScript +https://github.com/waffle-iron/2DoBox-Pivot-1706;;no_research;JavaScript +https://github.com/waffle-iron/2DoBox-Pivot-2;;no_research;JavaScript +https://github.com/waffle-iron/3130Project;;no_research;Java +https://github.com/waffle-iron/343-accounting;The accounting team repo for SWEN-343;no_research;Python +https://github.com/waffle-iron/360control-app;App 360 control;no_research;JavaScript +https://github.com/waffle-iron/abandoned_camel_coffee_mercantile;A one-stop coffee shop;no_research; +https://github.com/waffle-iron/agencia;Repositório para testes e compartilhar conhecimento. Receber dicas e críticas construtivas.;no_research; +https://github.com/waffle-iron/agg2.0;;no_research;CSS +https://github.com/waffle-iron/aggregator;Messages agreggator;no_research; +https://github.com/waffle-iron/ai-course;;no_research;Jupyter Notebook +https://github.com/waffle-iron/aiobean;Asyncio based beanstalkd client;no_research;Python +https://github.com/waffle-iron/Alive;Make change happen!;no_research; +https://github.com/waffle-iron/aliviate;Doctor's office and online radio;no_research;JavaScript +https://github.com/waffle-iron/all-projects;Just a placeholder repo to show all our Waffle boards in one place;no_research; +https://github.com/waffle-iron/alnap;;no_research;PHP +https://github.com/waffle-iron/amandastensland;;no_research;HTML +https://github.com/waffle-iron/anders.plashal.com;website repo;no_research; +https://github.com/waffle-iron/angular-tour-of-heroes;Angular 2 Tutorial App;no_research;TypeScript +https://github.com/waffle-iron/animate-like-newton;A physics-based approach to animation in web interfaces.;no_research; +https://github.com/waffle-iron/api;Ruby Rails Api;no_research;Ruby +https://github.com/waffle-iron/api-1;;no_research; +https://github.com/waffle-iron/api-using-cassandra;;no_research;JavaScript +https://github.com/waffle-iron/apicurious;;no_research;Ruby +https://github.com/waffle-iron/api_curious;;no_research;Ruby +https://github.com/waffle-iron/app-core;Código fuente para la aplicación web Tiempo de Siembra;no_research;JavaScript +https://github.com/warsaw/dbus-python;Mirror of upstream dbus-python repository with some musing and additions;no_research;C +https://github.com/warsaw/importlib_resources;Design and implementation for a planned importlib.resources;no_research;Python +https://github.com/warsaw/lazyimport;Python lazy import crazy idea 2017 sprint prototype implementation tools stuff;no_research;Python +https://github.com/warsaw/mailman;Semi-unofficial mirror of GNU Mailman 3;no_research; +https://github.com/warsaw/playground;;no_research; +https://github.com/warsaw/xapian;Python 3 port of Xapian using Cython;no_research;C++ +https://github.com/westphal-jan/cg;;no_research;C++ +https://github.com/westphal-jan/countries;Study all the national flags in the world.;no_research;Vue +https://github.com/westphal-jan/country-data;Various data about all countries and territories in the world.;no_research;Python +https://github.com/westphal-jan/DECENT;;no_research;Python +https://github.com/westphal-jan/kaniwani;;no_research;Vue +https://github.com/westphal-jan/knowstle-django-backend;;no_research;Python +https://github.com/westphal-jan/myNodeExpress;Testing around with Node.js, MongoDB, etc. ;no_research;CSS +https://github.com/westphal-jan/peer-data;;no_research; +https://github.com/westphal-jan/vue-push;;no_research;Vue +https://github.com/wildgarden/pmdk-mp;Multi-process support for PMDK;no_research;C +https://github.com/witsyke/ci-taec-discretization-impact;;no_research;R +https://github.com/witsyke/ddm-distriba;Distributed Data Management - Exercises;no_research;Java +https://github.com/witsyke/dvc-test-dhc;;no_research; +https://github.com/witsyke/thesis;Masterthesis: On mobility for COVID-19 forecasts in Germany using Ordinary Differential Equations and Graph Neural Networks;research;R +https://github.com/witsyke/witsyke;Config files for my GitHub profile.;no_research; +https://github.com/woess/asm;;no_research;Java +https://github.com/woess/woess;;no_research; +https://github.com/WolfgangDaniel/model-driven-RPA;;no_research; +https://github.com/wwj718/-;;no_research; +https://github.com/wwj718/ansible_server;;no_research; +https://github.com/wwj718/asyncio_lab;asyncio lab;no_research; +https://github.com/wwj718/awesome-chatbot;A curated list of chatbot frameworks, platforms, tools and resources;no_research; +https://github.com/wwj718/awesome-chinese-nlp;收集中文自然语言处理相关的工具和资源;no_research; +https://github.com/wwj718/awesome-cozmo;A curated list of Anki Cozmo resources.Feel free to contribute!;no_research; +https://github.com/wwj718/awesome-microbit-zh;micro:bit资源大全中文版;no_research; +https://github.com/wwj718/awesome-micropython;A curated list of BBC MicroPython resources.;no_research; +https://github.com/wwj718/awesome-python-in-education-zh;Python在教育方面的资源列表;no_research; +https://github.com/wwj718/awesome-raspberry-pi-zh;树莓派(Raspberry Pi )资源大全中文版 , 包括工具、项目、镜像、资源等;no_research; +https://github.com/wwj718/awesome_conwaylife;收集我喜欢的conwaylife中的物体;no_research; +https://github.com/wwj718/aws_lambda_helloworld;;no_research;Python +https://github.com/wwj718/backbone_todo;;no_research;JavaScript +https://github.com/wwj718/BadUSB_pyb;we are anonymous;no_research;Python +https://github.com/wwj718/batch-watermark;;no_research;Jupyter Notebook +https://github.com/wwj718/bb8_with_blockly4pi;blockly4pi的bb8驱动;no_research;Python +https://github.com/wwj718/begin_django;根据django最佳实践来布局,从这里开始一个django项目,免去一些繁琐的基础配置;no_research;Python +https://github.com/wwj718/BlackHatPython;python 黑帽子;no_research;Python +https://github.com/wwj718/blockly4pi;;no_research;JavaScript +https://github.com/wwj718/blockly4pi_cloud;为blockly4pi构建的云端,用于存储和分享代码,基于kinto;no_research; +https://github.com/wwj718/blockly_dev;;no_research;JavaScript +https://github.com/wwj718/bokeh_demo_movies;;no_research;Jupyter Notebook +https://github.com/wwj718/Cheat-Sheet;常用的速查表;no_research; +https://github.com/wwj718/codelab;;no_research; +https://github.com/wwj718/codelab-adapter-tkinter-gui;;no_research;Python +https://github.com/wwj718/CodeLab-Adapter_Blockly;;no_research;JavaScript +https://github.com/wwj718/codelab.club;;no_research;Makefile +https://github.com/wwj718/codelab_adapter_client;Python Client of CodeLab Adapter v2.;no_research;Python +https://github.com/wwj718/codelab_adapter_wechat_node;CodeLab Adapter 的微信插件;no_research;Python +https://github.com/wwj718/code_of_learningjquery;《jQuery基础教程(第4版)》各章源代码;no_research;JavaScript +https://github.com/wwj718/computational_problems;The Problems of Philosophy;no_research; +https://github.com/wwj718/config_i18n_tools;;no_research; +https://github.com/wwj718/cookiecutter-xblock;;no_research;Python +https://github.com/wwj718/cookiecutter_django_demo;http://cookiecutter-django.readthedocs.io/en/latest/developing-locally.html;no_research;Python +https://github.com/wwj718/couchapp_helloworld;;no_research;HTML +https://github.com/wwj718/course_backup;a tool to backup open edx courses;no_research;Python +https://github.com/wwj718/cozmo_chatbot;;no_research;Python +https://github.com/wwj718/cozmo_pets;;no_research;Python +https://github.com/wwj718/cozmo_whatIsThis;;no_research; +https://github.com/wwj718/cv-switch;;no_research;Jupyter Notebook +https://github.com/wwj718/cv_note;Computer Vision note;no_research;Python +https://github.com/wwj718/deepThought;deepThought is a conversational smart bot;no_research; +https://github.com/xhoelbano/A-Machine-Learning-Approach-To-Detect-Covid-19-Fake-Tweets;Detecting Covid-19 Fake Tweets using Multinomial Naïve Bayes classifier;no_research;Jupyter Notebook +https://github.com/xhoelbano/Machine-Learning-Bootcamp;Python for Data Science and Machine Learning Bootcamp - by Jose Portilla;no_research;Jupyter Notebook +https://github.com/xhoelbano/mental_health_platform;A new mental health platform approach is proposed bringing a novel contribution to the currently developed market. The conducted research demonstrates through design schemas and software implementation the highly impactful role of the psychologist as a main leading influential in the proposed mental health platform.;no_research;JavaScript +https://github.com/xhoelbano/Professional-Practice-Management-System;Professional Practice Management System for Universities;no_research; +https://github.com/xhoelbano/React_Native_starting_pack;This is a React Native project starter pack.;no_research;JavaScript +https://github.com/xhoelbano/Shredder-Social;Social Media App;no_research;Dart +https://github.com/xhoelbano/TiranaApps;;no_research;Java +https://github.com/yitongl/AB-testing;AB testing examples from gaming industry;no_research;Jupyter Notebook +https://github.com/yitongl/Advanced_Investment_Analysis;Understanding the trend of investments using advanced analytics;no_research;Jupyter Notebook +https://github.com/yitongl/AnalysisVisualization;;no_research;Jupyter Notebook +https://github.com/yitongl/apartment_eval;;no_research;Jupyter Notebook +https://github.com/yitongl/blog;My projects and articles;no_research;JavaScript +https://github.com/yitongl/covid19_data_analysis;Analysis on Covid-19 data and predictions;no_research; +https://github.com/yitongl/CRM_Analysis;;no_research;Jupyter Notebook +https://github.com/yitongl/Crypto;Simple cryptocurrency analysis with data from coinmarketcap;no_research;Python +https://github.com/yitongl/DataScience;Data science related projects;no_research;Jupyter Notebook +https://github.com/yitongl/DefaultPrediction;Predict defaulter from historical data;no_research;Jupyter Notebook +https://github.com/yitongl/GCP-AudioTranscription;;no_research;Python +https://github.com/yitongl/HackerNewsJobScraper;"Filter the jobs from monthly ""who's hiring"" posts at HackerNews";no_research;Python +https://github.com/yitongl/ProductionFlow_Optimization;;no_research;Jupyter Notebook +https://github.com/yitongl/PythonEnvironment;Small script to setup a python with pipenv and commonly used libraries;no_research;Python +https://github.com/yitongl/SequenceModels;Programming assignments from Andrew Ng's Deep Learning course 5: Sequence Models;no_research;Jupyter Notebook +https://github.com/yitongl/TmdbImporter;Imports the entire The Movie Database dataset into a postgres SQL database;no_research;Python +https://github.com/yitongl/WebCrawling;;no_research;Jupyter Notebook +https://github.com/ylijokic/Angular_Basics;;no_research;TypeScript +https://github.com/ylijokic/Battle-Game;;no_research;C++ +https://github.com/ylijokic/Blog;;no_research;JavaScript +https://github.com/ylijokic/Chingu-solo-project;My Solo Project for Fall 2019 Chingu Cohert;no_research;JavaScript +https://github.com/ylijokic/CS-340-Project;Database Web Application ;no_research;JavaScript +https://github.com/ylijokic/CS361_Team21;;no_research;JavaScript +https://github.com/ylijokic/CSV_Parser;;no_research;C +https://github.com/ylijokic/DAM;Digital Asset Management Web Application;no_research;JavaScript +https://github.com/ylijokic/DataStructureAndAlgorithms;;no_research;Python +https://github.com/ylijokic/Discord_App;;no_research;HTML +https://github.com/ylijokic/Django_And_Flask_Projects;Python Flask Projects;no_research;Python +https://github.com/ylijokic/DS_Questions;Data Science Internship Questions;no_research;Jupyter Notebook +https://github.com/ylijokic/Employee_Manager_Application;;no_research;Java +https://github.com/ylijokic/flask-amazon-scraper;;no_research;Python +https://github.com/ylijokic/Flixster;;no_research;Java +https://github.com/ylijokic/git_intro;;no_research; +https://github.com/ylijokic/hello-world;GitHub Practice;no_research;Python +https://github.com/ylijokic/instagram-clone;Instagram Clone using React.js and Firebase;no_research;JavaScript +https://github.com/ylijokic/Instagram_Clone;;no_research;Java +https://github.com/ylijokic/LogicGate-FrontEnd;;no_research;TypeScript +https://github.com/ylijokic/nasa_disaster_map;;no_research;JavaScript +https://github.com/ylijokic/NHL-Team-DashBoard;;no_research;TypeScript +https://github.com/ylijokic/Notes_App;;no_research;Python +https://github.com/ylijokic/quicknode-assessment;;no_research;TypeScript +https://github.com/ylijokic/Reactivities;;no_research;C# +https://github.com/ylijokic/SimpleToDoList;Simple ToDo List App;no_research;Java +https://github.com/ylijokic/SimpleTweet;;no_research;Java +https://github.com/ylijokic/Small_Shell_Terminal;;no_research;C +https://github.com/ylijokic/startup_name_generator;;no_research;Dart +https://github.com/ylijokic/TypeScript_Basics;;no_research;JavaScript +https://github.com/yT0n1/D3MEAP-Projekt;;no_research;Python +https://github.com/yunusemrecatalcam/12f629_remote;;no_research;Makefile +https://github.com/yunusemrecatalcam/16f1947_adc;;no_research;C +https://github.com/yunusemrecatalcam/16f1947_eusart;;no_research;C +https://github.com/yunusemrecatalcam/18f_eeprom_i2c;;no_research;Makefile +https://github.com/yunusemrecatalcam/18f_internal_eeprom;;no_research;Makefile +https://github.com/yunusemrecatalcam/air-fuel_rate_display;;no_research;C++ +https://github.com/yunusemrecatalcam/ansible-monitoring;;no_research; +https://github.com/yunusemrecatalcam/arduino_pulseIn_read_signal;;no_research;C++ +https://github.com/yunusemrecatalcam/bug-free-octo-tribble;;no_research;Python +https://github.com/yunusemrecatalcam/ci-cd_webapp;Sample web app to use on Jenkins, to teach people about ci-cd and jenkins;no_research;Python +https://github.com/yunusemrecatalcam/frequency_finder;python script for detecting amplitude changes of a frequency range and logging time;no_research;Python +https://github.com/yunusemrecatalcam/garga.ist;garga was a school magazine, and is an online magazine now;no_research;HTML +https://github.com/yunusemrecatalcam/grafana_influx_collectd;little compose project for you to understand monitoring at the simplest!;no_research; +https://github.com/yunusemrecatalcam/Graylog-Elastic-Fluentbit-Helm;Graylog stack helm chart;no_research;Shell +https://github.com/yunusemrecatalcam/logic_neural_net;;no_research;Python +https://github.com/yunusemrecatalcam/matlab_serial_communication;;no_research;Matlab +https://github.com/yunusemrecatalcam/maze;maze solver;no_research;Python +https://github.com/yunusemrecatalcam/one-shot_learning_omniglot;one-shot learning application for omniglot dataset;no_research;Jupyter Notebook +https://github.com/yunusemrecatalcam/pic16f628_tarti;;no_research;Makefile +https://github.com/yunusemrecatalcam/pic18fserial;;no_research;Makefile +https://github.com/yunusemrecatalcam/RD-Monitoring-Helm;RightData Monitoring Stack;no_research; +https://github.com/yunusemrecatalcam/ResourceBillingAPI;Container billing api that uses prometheus;no_research;Python +https://github.com/yunusemrecatalcam/tensorflow_vs_raw;repo for implenting learning algorithms for same problems with and without tf and comparing performance ;no_research;Jupyter Notebook +https://github.com/yunusemrecatalcam/track_simulation;;no_research;Matlab +https://github.com/yunusemrecatalcam/vps_configuration;apache,php,mysql etc. configuration how to's;no_research;Shell +https://github.com/yunusemrecatalcam/whileafl;;no_research; +https://github.com/yunusemrecatalcam/yunusemrecatalcam.com;personal website;no_research;JavaScript +https://github.com/zagto/dtbootmenu;Kexec-Hardboot based bootloader/boot menu for booting modern Linux kernels on ASUS TF300T;no_research;C++ +https://github.com/zagto/esp32-sdcard-nbd;NBD server to access SD cards connected to the ESP32;no_research;C +https://github.com/zagto/linux-tf300t;abandoned - use https://github.com/grate-driver/linux;no_research;C +https://github.com/zagto/logwords-module;example Linux kernel module;no_research;C +https://github.com/zagto/tf300t-dtboot-kernel;;no_research;C +https://github.com/zagto/zagtOS;Microkernel operating system in C++;no_research; +https://github.com/zapster/await;await - relay race for your shell;no_research;C +https://github.com/zapster/awesome-gnome;;no_research; +https://github.com/zapster/awesomerc;my awesome wm configuration;no_research;Lua +https://github.com/zapster/bibtex-export;Export only the required bibtex entries.;no_research; +https://github.com/zapster/cacao-travis;;no_research;C++ +https://github.com/zapster/cad-models;3D CAD Models mainly for 3D printing;no_research;G-code +https://github.com/zapster/ci_test;;no_research; +https://github.com/zapster/clang;rpm package for clang;no_research;Shell +https://github.com/zapster/classpath-travis;GNU Classpath Fork with Travis build setup;no_research;Java +https://github.com/zapster/datasciencecoursera;;no_research; +https://github.com/zapster/gcc-docker;;no_research; +https://github.com/zapster/getdata_project;Getting and Cleaning Data Course Project;no_research; +https://github.com/zapster/GNOME-MMkeys-MPD-Client;Lightweight MPD client which allows you to control MPD using MultiMediaKeys.;no_research; +https://github.com/zapster/gopass-rpm;fork of https://gitlab.com/daftaupe/gopass-rpm;no_research; +https://github.com/zapster/graal-core;Graal Compiler & Truffle Partial evaluator;no_research;Java +https://github.com/zapster/i3config;;no_research; +https://github.com/zapster/keebs-config;;no_research; +https://github.com/zapster/lily58-mods;Modifications and enhancements for the Lily58 keyboard;no_research; +https://github.com/zapster/mpdmmkeys;Lightweight MPD client which allows you to control MPD using MultiMediaKeys.;no_research;Python +https://github.com/zapster/mpdscribble-fm4;;no_research;C +https://github.com/zapster/ogdwien;Restructure OGD Vienna's Bicycle KML map;no_research;Python +https://github.com/zapster/r-base-latex;r-base image with texlive installation;no_research;Dockerfile +https://github.com/zapster/r-base-latex-buildbot;;no_research;Python +https://github.com/zapster/rlatex-docker;;no_research;Makefile +https://github.com/zapster/slack-lunchbot;;no_research;Python +https://github.com/zapster/st;patched rpm package for st;no_research;Shell +https://github.com/zapster/st-desktop;;no_research; +https://github.com/zapster/sulong-contributors;;no_research;Java +https://github.com/zapster/truffle-outdated;this is an outdated version of truffle for demonstration purposes;no_research;Java +https://github.com/zapster/vim-cheatsheet;Vim quick reference card (cheatsheet) based on the version by Michael Goerz;no_research; +https://github.com/zapster/xkeyboard-config;XKB data.;no_research;C +https://github.com/zapster/xkeyboard-config-rpm;Upstream;no_research;Shell +https://github.com/zapster/xst;rpm package for xst;no_research;Shell +https://github.com/zapster/zoom-local-repo;Maintain a local RPM repository for the zoom client;no_research; +https://github.com/zeropaper/analyse;A drupal module for complex rating and analysis purposes.;no_research;PHP +https://github.com/zeropaper/big-collection;A utility for large ampersand.js collections;no_research;JavaScript +https://github.com/zeropaper/big-collection-view;A Ampersand.js view using zeropaper/big-collection ;no_research;JavaScript +https://github.com/zeropaper/camunda-client;Just playing around with Camunda BPM RESTful API;no_research;JavaScript +https://github.com/zeropaper/cam_invoice_demo;A simple Drupal module to be used with the Camunda BPM API service module.;no_research;PHP +https://github.com/zeropaper/chat-gpt-video-editor;Created with StackBlitz ⚡️;no_research;TypeScript +https://github.com/zeropaper/code-description;A set of AmpersandJS classes to describe code.;no_research; +https://github.com/zeropaper/craftsman;A set of tools to develop awesome Drupal themes.;no_research;JavaScript +https://github.com/zeropaper/css-polygon-editor;A CSS Polygon editor made on top on React and Mantine UI.;no_research;TypeScript +https://github.com/zeropaper/ctools_demos;A demonstration of the Chaos Tools (Drupal module). ;no_research;PHP +https://github.com/zeropaper/DATA;DATA development;no_research;JavaScript +https://github.com/zeropaper/drupal-tools;Tools to interact with Drupal.;no_research;JavaScript +https://github.com/zeropaper/drupal6_hashbang;hashbang module for Drupal 6;no_research;JavaScript +https://github.com/zeropaper/e1;;no_research;CSS +https://github.com/zeropaper/eazin;A framework to ease the development of PWA.;no_research;JavaScript +https://github.com/zeropaper/evol;A base theme for kick ass Drupal designs.;no_research;PHP +https://github.com/zeropaper/experiment-plugins-less;An experiment to test grunt-contrib-less import paths;no_research;CSS +https://github.com/zeropaper/faceted-search;A AmpersandJS set of tools to provide faceted search.;no_research;JavaScript +https://github.com/zeropaper/ffwd;Fast Forward, a stack made of mongoose, express.js, passport.js and angular.js with resource definitions based on schema.org.;no_research;JavaScript +https://github.com/zeropaper/filefield_license;A Drupal module to manage files/images licensing (to be used with the filefield/imagefield modules).;no_research;PHP +https://github.com/zeropaper/files-collection;A ampersand.js set of classes to help files and directories handling.;no_research;JavaScript +https://github.com/zeropaper/fixturer;A small module to generate fixtures;no_research;JavaScript +https://github.com/zeropaper/foreseen;Experiment to create a YAML like ThreeJS scene, rendering description document;no_research;TypeScript +https://github.com/zeropaper/fpf;Forkable Playlist Format;no_research; +https://github.com/zeropaper/friedrichshain-hilft;;no_research;HTML +https://github.com/zeropaper/git-beat;A naive tool to get the beats of a repository.;no_research;JavaScript +https://github.com/zeropaper/grunt-gtfd;A grunt.js task to generate documentation.;no_research;JavaScript +https://github.com/zeropaper/grunt-seleniuminstall;Utility to install selenium web-driver;no_research;JavaScript +https://github.com/zeropaper/kern;A node.js / express.js / backbone.js based framework aimed to prototype web pages and develop HTML5 apps in a snap.;no_research;JavaScript +https://github.com/zeropaper/KernDocs;Kern.js Documentation;no_research; +https://github.com/zeropaper/license;A Drupal module to manage content licensing.;no_research;PHP +https://github.com/zeropaper/mashup-valentin-vago-test;Automatically exported from code.google.com/p/mashup-valentin-vago-test;no_research;Game Maker Language +https://github.com/zeropaper/netlifycms-gatsby;;no_research;JavaScript +https://github.com/zeropaper/netlifycms-nextjs;;no_research;TypeScript +https://github.com/zeropaper/neutrino-middleware-markdown-loader;Neutrino markdown loader;no_research;JavaScript \ No newline at end of file diff --git a/scripts/plot_functions.py b/scripts/plot_functions.py index a77adbc..f72c526 100644 --- a/scripts/plot_functions.py +++ b/scripts/plot_functions.py @@ -2,6 +2,7 @@ The functions from this file are reused to show plots in Jupyter notebook abstracting code and only displaying plots in the notebook. """ +import argparse import matplotlib.pyplot as plt import pandas as pd import seaborn as sns @@ -101,7 +102,7 @@ def plot_documentation(df, file_path): """ df = df[df['dlr_soft_class'].isin([0, 1, 2])] total_counts = df['dlr_soft_class'].value_counts() - features = ['readme_content', 'quick_start_guide', 'help_commands'] + features = ['project_information', 'installation_instruction', 'usage_guide'] feature_labels = ['Project Information', 'Installation Instructions', 'Usage Guide'] percentages = [ @@ -249,10 +250,10 @@ def plot_comment_start(df, file_path): df = df[df['language'].isin(['Python', 'C++', 'R'])] # Replace 'none' with 'less' and ensure comment_category - df['comment_category'] = df['comment_category'].replace('none', 'less') + df['comment_at_start'] = df['comment_at_start'].replace('none', 'less') comment_order = ['less', 'some', 'more', 'most'] - df['comment_category'] = pd.Categorical( - df['comment_category'], + df['comment_at_start'] = pd.Categorical( + df['comment_at_start'], categories=comment_order, ordered=True ) @@ -262,7 +263,7 @@ def plot_comment_start(df, file_path): # Create a pivot table for the stacked bar plot with percentages pivot_table = df.pivot_table( index='dlr_soft_class', - columns='comment_category', + columns='comment_at_start', aggfunc='size', fill_value=0 ) @@ -288,3 +289,28 @@ def plot_comment_start(df, file_path): # Show the plot plt.show() + +def main(): + parser = argparse.ArgumentParser(description='Plotting tool for data analysis.') + parser.add_argument('csv_file', type=str, help='Path to the input CSV file.') + parser.add_argument('plot_type', type=str, choices=['radar', 'documentation', 'stacked_bar_reuse', 'continuous_integration', 'comment_start'], help='Type of plot to generate.') + parser.add_argument('output_file', type=str, help='Path to the output PNG file.') + parser.add_argument('--legend_title', type=str, default='', help='Title for the legend (only used for stacked_bar_reuse plot).') + args = parser.parse_args() + + df = pd.read_csv(args.csv_file) + + if args.plot_type == 'radar': + plot_radar_chart(df, args.output_file) + elif args.plot_type == 'documentation': + plot_documentation(df, args.output_file) + elif args.plot_type == 'stacked_bar_reuse': + column_name = input("Enter the column name to calculate percentages for: ") + plot_stacked_bar_reuse(df, column_name, args.output_file, args.legend_title) + elif args.plot_type == 'continuous_integration': + plot_continuous_integration(df, args.output_file) + elif args.plot_type == 'comment_start': + plot_comment_start(df, args.output_file) + +if __name__ == "__main__": + main() \ No newline at end of file