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 / TripV2@1.csv
Created August 10, 2022 00:08
Files for doing the Google Analytics Course File
We can't make this file beautiful and searchable because it's too large.
ride_id,rideable_type,started_at,ended_at,start_station_name,start_station_id,end_station_name,end_station_id,start_lat,start_lng,end_lat,end_lng,member_casual,tripduration
FE8815700C241AFF,classic_bike,2021-03-09T13:14:27Z,2021-03-09T13:21:32Z,Bissell St & Armitage Ave,13059,Clark St & Lincoln Ave,13179,41.91844,-87.65222,41.915689,-87.6346,member,425
990C72DC8EAF2D3A,classic_bike,2021-03-22T01:26:01Z,2021-03-22T09:11:01Z,Marine Dr & Ainslie St,KA1504000171,Clark St & Winnemac Ave,TA1309000035,41.9716,-87.650154,41.97334764047304,-87.6678554713726,casual,27900
AFD0F1009C540BEC,classic_bike,2021-03-07T17:14:05Z,2021-03-07T17:19:47Z,Broadway & Berwyn Ave,13109,Clark St & Winnemac Ave,TA1309000035,41.978353,-87.659753,41.97334764047304,-87.6678554713726,member,342
5FFD3164A72A72FE,classic_bike,2021-03-29T16:49:27Z,2021-03-29T17:29:21Z,Clinton St & 18th St,TA1307000044,Lincoln Ave & Diversey Pkwy,TA1307000064,41.85795,-87.640826,41.932225,-87.658617,member,2394
CE5BECAAF3602806,classic_bike,2021-03-21T14:01:29Z,
@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 / QuoraAnswers.csv
Last active January 22, 2024 17:58
The gist will be the source for multiple data sets
We can't make this file beautiful and searchable because it's too large.
slNo,Questions,Answers,Questions_formed,Answers_formed
0,Im-a-high-school-student-and-Im-interested-in-AI-Where-do-I-start-looking-into-it,"Start by learning to program and problem solving using computer languages.
AI is, what you call a self programming program. You give the AI program the data, it will comes out with its own model program to solve the problem.
If that is correct then, you as a human first need to know how to program, and check whether AI has programmed itself correctly. If you find an error in AI behaviour, then you jump in and correct the relevant code.
Learn problem solving by posting your code to online judges. I have written about it in another question. Search for it, you will get some good idea.
Language easiest to pickup currently are, Python, R and recently Julia is becoming popular. Once you master one language then think about C++
have good time learnin.",Im a high school student and Im interested in AI Where do I start looking into it?,Start by learning to program and problem sol
@Kamalabot
Kamalabot / codeswing.json
Last active June 23, 2022 11:50
FCC: D3 Scatter Plot
{
"scripts": [],
"styles": [],
"layout": "splitBottom"
}
@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 / codeswing.json
Last active June 23, 2022 09:02
FCC: D3 Bar Chart
{
"scripts": [
"react",
"react-dom"
],
"styles": [],
"layout": "splitBottom"
}
@Kamalabot
Kamalabot / fcc-d3-choropleth-map.markdown
Created June 20, 2022 15:45
FCC: D3 Choropleth Map
@Kamalabot
Kamalabot / codeswing.json
Last active June 23, 2022 16:53
FCC: D3 Tree Map
{
"scripts": [],
"styles": [],
"layout": "splitBottom"
}