Skip to content

Instantly share code, notes, and snippets.

View Techgokul's full-sized avatar

madcodertyson Techgokul

View GitHub Profile
@Techgokul
Techgokul / Decimal To Binary
Created December 2, 2017 06:39
Convert Decimal to Binary using c
#include<stdio.h>
int main()
{
int n,c,k;
printf("Enter the integer in decimal number:\n");
scanf("%d",&n);
printf("%d is the binary number system is:\n",n);
@Techgokul
Techgokul / Find The LCM of Two Integers
Created December 2, 2017 09:23
Find The LCM of Two Integers
#include<stdio.h>
int lcm(int,int);
int main()
{
int a,b,l;
printf("Enter any two postive integers");
scanf("%d%d",&a,&b);
@Techgokul
Techgokul / LoginForm.htm
Created December 3, 2017 08:34
Login form By Techy Tech
<!DOCTYPE html>
<html>
<head>
<title>Techy tech's Sign in form</title>
</head>
<body>
<form>
<table>
<tr>
<td>
@Techgokul
Techgokul / Matrix.bat
Created December 6, 2017 15:59
Matrix File With Batch file
@echo off
color 0a
:start %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%
goto start
@Techgokul
Techgokul / Matrixrain.html
Created December 7, 2017 12:14
Make a Matrix rain using HTML5,JS,CSS
<html>
<head>
<title>Matrix Rain</title>
<style>
* {margin: 0; padding: 0;}
body {background: black;}
canvas {display: block;}
</style>
</head>
<body>
@Techgokul
Techgokul / login form.html
Created December 7, 2017 16:42
Login form
<html>
<head>
<title>Login form</title>
<link rel="stylesheet" type="text/css" href="style.css">
<body>
<div class="loginbox">
<img src="avatar.jpg">
<h1>Login Here</h1>
<form>
<p>Username</p>
@Techgokul
Techgokul / jarvis.vbs
Created December 17, 2017 06:21
Make your pc talk to you
dim fame
fname=inputbox("yourtexthere!")
fname=inputbox("yourtexthere!")
fname=inputbox("yourtexthere!")
fname=inputbox("yourtexthere!")
fname=inputbox("yourtexthere!")
@Techgokul
Techgokul / audio.vbs
Created December 17, 2017 06:25
Audio conversion
Dim msg,sapi
msg = InputBox(" Enter your text for Audio conversion ")
Set sapi=CreateObject("sapi.spvoice")
Sapi.Speak msg
@Techgokul
Techgokul / Matrix.bat
Created December 17, 2017 06:27
Make matrix using notepad
@echo off
color 0a
:loop
echo %random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%%random%
goto loop
@Techgokul
Techgokul / calculator.py
Created December 26, 2017 09:42
Calculator application using python
from tkinter import*
def iCalc(source, side):
storeObj = Frame(source, borderwidth=1, bd=4,bg="powder blue")
storeObj.pack(side=side, expand=YES, fill=BOTH)
return storeObj
def button(source, side, text, command=None):
storeObj = Button(source, text=text, command=command)
storeObj.pack(side=side, expand=YES, fill=BOTH)
return storeObj
class app(Frame):