Skip to content

Instantly share code, notes, and snippets.

View Meharab's full-sized avatar
🔥
💥 Cold ❄ Blooded 🩸 Coder 💻

Meharab G Meharab

🔥
💥 Cold ❄ Blooded 🩸 Coder 💻
View GitHub Profile
@Meharab
Meharab / rnn-using-lstm-to-predicting-stock-price.ipynb
Created April 11, 2020 17:25
RNN using LSTM to Predicting stock price.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Meharab
Meharab / cnn-for-computer-vision-to-predict-between-cats-and-dogs.ipynb
Created April 12, 2020 03:00
CNN for Computer Vision to Predict between cats and dogs.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Meharab
Meharab / ann-to-predict-bank-s-customer.ipynb
Created April 12, 2020 09:36
ANN to Predict bank's customer.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Meharab
Meharab / classification-template.ipynb
Created April 19, 2020 15:40
Classification Template.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Meharab
Meharab / data-preprocessing-template.ipynb
Created April 19, 2020 16:49
Data Preprocessing Template.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Meharab
Meharab / Auction.sol
Created May 7, 2020 19:06
smart contract for auction
pragma solidity ^0.4.17;
contract Auction {
// Data
//Structure to hold details of the item
struct Item {
uint itemId; // id of the item
uint[] itemTokens; //tokens bid in favor of the item
}
pub struct Rectangle {
pub let width: Int
pub let height: Int
init(width: Int, height: Int) {
self.width = width
self.height = height
}
}
{
"emulators": {
"default": {
"port": 3569,
"serviceAccount": "emulator-account"
}
},
"contracts": {
"Hello": "./smart-contract/d3hello.cdc"
},
pub contract Hello {
pub event IssuedGreeting(greeting: String)
pub fun sayHi(to name: String): String {
let greeting = "Hi, ".concat(name)
//emit IssuedGreeting(greeting: greeting)
return greeting
}
import Hello from "./d3hello.cdc"
pub fun main(name: String): String {
return Hello.sayHi(to: name)
}