Skip to content

Instantly share code, notes, and snippets.

View ishrikrishna's full-sized avatar

Shrikrishna Meena ishrikrishna

  • Freelancer
  • Dausa, Rajasthan, India
View GitHub Profile
# Testing simple 3 Hidden Layers Neural Network implementation in python
# Multiple examples are feed in single instance.
import numpy as np
from skimage.io import imread, imshow
def get_img(name):
im = imread(name)
im_clr = np.zeros((im.shape[0],im.shape[1]))
for i in range(im.shape[0]):
@ishrikrishna
ishrikrishna / t1.asm
Created December 12, 2019 10:44
TestOS - Simple OS/Bootloader Script demonstrating jumping to 32 Bit Protected Mode from 16 Bit Real Mode
; TestOS - Simple OS/Bootloader Script
; To demostrate jumping from 16-Bit Real Mode to 32 Bit Protected mode
; Tested in QEMU
; Simply by setting up only GDT.
; A20 Gate is not part of of this sccript.
; No keyboard inputs required. I think, That would have made this interactive and better.
;
; Single grouped Command to Test the script in Linux (Qemu is Required)
; nasm t1.asm -o t1.bin && dd conv=notrunc if=t1.bin of=t1.flp && qemu-system-i386 -fda t1.flp
; No license and Warranty - Use at your own risk after studying the code below.
@ishrikrishna
ishrikrishna / Radha
Created November 15, 2016 10:39
Little Radha : C++
#include <iostream>
using namespace std;
/**
* This clas deals with alphabets of
* english language.
*
* Please check another code I published
* on my profile for improved version.
*
@ishrikrishna
ishrikrishna / _alphabets
Created November 15, 2016 10:37
C++ class dealing with alphabets of English language.
#include <iostream>
#include <vector>
using namespace std;
/**
* This class deals with alphabets of
* english language.
*
* @author Shrikrishna Meena
* @created 15 November 2016