Skip to content

Instantly share code, notes, and snippets.

View shunjid's full-sized avatar
:dependabot:

Shunjid Rahman Showrov shunjid

:dependabot:
View GitHub Profile
@shunjid
shunjid / ML_Dotnet_in_Google_Colab.ipynb
Last active June 3, 2024 13:46
In this gist, you'll be able to learn building a classification model in Google Colab. If you are having trouble viewing this notebook, you can open the notebook from https://colab.research.google.com/drive/1MQF2B_chRddk7WFKS6H5wLs_vdI7Xfg8?usp=sharing . If you found this helpful, don't forget to press the ⭐star⭐.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@shunjid
shunjid / index.html
Created November 13, 2020 18:08
vue-mini-blog
<div id="app">
<div id="app">
<nav>
<div class="nav-wrapper center-align blue darken-2">
<a href="#" class="brand-logo">My Blogs</a>
</div>
</nav>
<!-- Form -->
<div class="row">
@shunjid
shunjid / index.js
Last active July 29, 2022 20:59
Polymorphism Example in JavaScript
class Shape {
area() {
return 0;
}
toString() {
return Object.getPrototypeOf(this).constructor.name;
}
}
class Circle extends Shape {
#include<stdio.h>
#include <windows.h>
#include <stdlib.h>
int main()
{
char a;
int i=200,j=50,k=500,l=150;
int b,f,p,s,bill=0,total_bill=0;
int n,N;
int r,w;