Skip to content

Instantly share code, notes, and snippets.

View Kamalabot's full-sized avatar
💭
Working on Pytorch and Python Coding

Kamalabot

💭
Working on Pytorch and Python Coding
View GitHub Profile
@Kamalabot
Kamalabot / docker-compose.override.yml
Created October 6, 2023 13:41 — forked from azigler/docker-compose.override.yml
An example configuration file for Sebastian Müller's ChatGPT/Mattermost bot
---
version: "3.7"
services:
chatbot:
container_name: chatgpt
image: yguy/chatgpt-mattermost-bot:latest
build: .
restart: unless-stopped
depends_on:
- mattermost
@Kamalabot
Kamalabot / WebGL-WebGPU-frameworks-libraries.md
Created July 30, 2022 06:25 — forked from dmnsgn/WebGL-WebGPU-frameworks-libraries.md
A collection of WebGL and WebGPU frameworks and libraries

A non-exhaustive list of WebGL and WebGPU frameworks and libraries. It is mostly for learning purposes as some of the libraries listed are wip/outdated/not maintained anymore.

Engines and libraries

  • three.js: JavaScript 3D library
  • stack.gl: an open software ecosystem for WebGL, built on top of browserify and npm.
  • PixiJS: Super fast HTML 5 2D rendering engine that uses webGL with canvas fallback
  • Pex: Pex is a javascript 3d library / engine allowing for seamless development between Plask and WebGL in the browser.
  • Babylon.js: a complete JavaScript framework for building 3D games with HTML 5 and WebGL
  • Filament: Filament is a real-time physically based rendering engine for Android, iOS, Windows, Linux, macOS and WASM/WebGL
  • ClayGL: A WebGL graphic library
@Kamalabot
Kamalabot / index.html
Last active June 22, 2022 16:09 — forked from biovisualize/index.html
Simple D3 tooltip
<!DOCTYPE html>
<html >
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.8/d3.min.js" type="text/JavaScript"></script>
</head>
<body>
<div class="example_div"></div>
<script type="text/javascript">
var tooltip = d3.select("body")
.append("div")
@Kamalabot
Kamalabot / web_scraping.ipynb
Created February 9, 2022 10:52 — forked from nikhilkumarsingh/web_scraping.ipynb
Web Scraping using XPath and Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.