Skip to content

Instantly share code, notes, and snippets.

@joicemjoseph
joicemjoseph / irc.md
Created January 22, 2016 14:29 — forked from xero/irc.md
irc cheat sheet

#IRC Reference

Not intended as a guide for newbies, more like a "cheat sheet" for the somewhat experienced IRC user, especially one who wields some power over a channel.

##The Basics

  • /join #channel
    • Joins the specified channel.
  • /part #channel
    • Leaves the specified channel.
import java.util.Scanner;
class Factorial
{
int p;
public int n;
Factorial()
{
p = 1;
import java.util.Scanner;
//import java.util.Arrays;
class ArraySort
{
int n,temp,num[];
void read()
{
Scanner s = new Scanner(System.in);
@joicemjoseph
joicemjoseph / The Technical Interview Cheat Sheet.md
Last active August 29, 2015 14:28 — forked from tsiege/The Technical Interview Cheat Sheet.md
This is my technical interview cheat sheet. Feel free to fork it or do whatever you want with it. PLEASE let me know if there are any errors or if anything crucial is missing. I will add more links soon.

Studying for a Tech Interview Sucks, so Here's a Cheat Sheet to Help

This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.

Data Structure Basics

###Array ####Definition:

  • Stores data elements based on an sequential, most commonly 0 based, index.
  • Based on tuples from set theory.

Keybase proof

I hereby claim:

  • I am joicemjoseph on github.
  • I am joice (https://keybase.io/joice) on keybase.
  • I have a public key whose fingerprint is 1883 93FF 0EF3 D31F 27DC 4290 865A FD01 6B75 E473

To claim this, I am signing this object:

@joicemjoseph
joicemjoseph / js filter.js
Created February 4, 2015 19:51
Javascript filters
homes.filter(function (el) {
return el.price <= 1000 &&
el.sqft >= 500 &&
el.num_of_beds >=2 &&
el.num_of_baths >= 2.5;
});
@joicemjoseph
joicemjoseph / RandomSeed.js
Last active August 29, 2015 14:14
Random input populator
$joice = $('input:text');
$.each($joice, function(key, $value) {
randomVal = Math.floor((Math.random() * 999) + 1);
$value.value = (randomVal);
});
* Downloaded or downloading
=============================
**http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html
**http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html
**http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html
**http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html
**http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html
*http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html
*http://kickass.to/cbt-nuggets-amazon-web-services-aws-foundations-t7839734.html