Skip to content

Instantly share code, notes, and snippets.

View janoulle's full-sized avatar

Jane Ullah janoulle

View GitHub Profile
@janoulle
janoulle / jane-typeahead.js
Created November 24, 2012 16:07 — forked from geuis/remote-typeahead.js
Remote data querying for Twitter Bootstrap 2.0 Typeahead without modifications
<script>
// Charles Lawrence - Feb 16, 2012. Free to use and modify. Please attribute back to @geuis if you find this useful
// Twitter Bootstrap Typeahead doesn't support remote data querying. This is an expected feature in the future. In the meantime, others have submitted patches to the core bootstrap component that allow it.
// The following will allow remote autocompletes *without* modifying any officially released core code.
// If others find ways to improve this, please share.
<!-- Typeahead by Charles Lawrence https://gist.github.com/1848558-->
<script type="text/javascript">
var autocomplete = $('#stops').typeahead()
.on('keyup', function(ev){
@janoulle
janoulle / drawlines.java
Created November 23, 2012 03:45
Java code to draw lines on a Graphics object.
public void paintComponent(Graphics page){
//Drawing vertical lines
super.paintComponent(page);
for (int i = 1; i <= WIDTH/JUMP; i++){
//X is reduced by 1 to accommodate snake body size of 11x11. Recall outer shell of snake body is 12x12
page.drawLine(JUMP*i-1, JUMP*3, JUMP*i-1, WIDTH);
//Drawing horizontal lines
//Y is reduced by 1 to accommodate snake body size of 11x11.
if (i >= 3){
page.drawLine(0,JUMP*i-1,WIDTH,JUMP*i-1);
@janoulle
janoulle / Problem9.java
Created December 30, 2011 04:22
Problem 9 - Project Euler in Java by Jane Ullah
/**
* @author Jane Ullah
* @purpose Problem 9 - Project Euler
* @date 12/29/2011
* @site http://janetalkscode.com
*/
public class Problem9 {
public static void main(String[] args) {
boolean matchFound = false;
@janoulle
janoulle / parseString.java
Created December 29, 2011 01:37
Multiplying Digits in a String
public static int parseString(String digits) {
int product = 1;
//Strips out non-word characters
digits = digits.replaceAll("\\W","");
for (int i = 0; i < digits.length(); i++){
product *= Integer.parseInt(digits.substring(i,(i+1)));
}
return (digits.length() > 0) ? product:0;
/*
@janoulle
janoulle / Problem8.java
Created December 28, 2011 05:13
Problem 8 - Project Euler in Java by Jane Ullah
/**
* @author Jane Ullah
* @purpose Problem 8 - Project Euler
* @date 12/28/2011
* @site http://janetalkscode.com
*/
public class Problem8 {
public static void main(String[] args) {
String digits = "73167176531330624919225119674426574742355349194934"
@janoulle
janoulle / Problem7.java
Created December 27, 2011 07:27
Problem 7 - Project Euler in Java by Jane Ullah
/**
* @author Jane Ullah
* @purpose Problem 7 - Project Euler
* @date 12/27/2011
* @site http://janetalkscode.com
*/
public class Problem7 {
public static void main(String[] args) {
int primeNum = 0, index = 0;
@janoulle
janoulle / Problem6.java
Created December 27, 2011 05:19
Problem 6 - Project Euler in Java by Jane Ullah
/**
* @author Jane Ullah
* @purpose Problem 6 - Project Euler
* @date 12/26/2011
* @site http://janetalkscode.com
*/
public class Problem6 {
public static void main(String[] args) {
@janoulle
janoulle / Problem5.java
Created December 27, 2011 04:00
Problem 5 - Project Euler in Java by Jane Ullah
/**
* @author Jane Ullah
* @purpose Problem 5 - Project Euler
* @date 12/26/2011
* @site http://janetalkscode.com
*/
public class Problem5 {
public static void main(String[] args) {
int sum = 1, primeNum = 0;
@janoulle
janoulle / Problem4.java
Created December 20, 2011 02:06
Problem 4 - Project Euler in Java by Jane Ullah
/**
*
* @author Jane Ullah
* @date 12/19/2011
* @purpose Solving Problem 4 from ProjectEuler.net
*
*/
public static void main(String[] args) {
/*if (isPalindrome(1222321)) {
System.out.println("Yes.");
@janoulle
janoulle / Problem3.java
Created December 20, 2011 00:31
Problem 3 - Project Euler in Java by Jane Ullah
/**
*
* @author Jane Ullah
* @purpose Problem 3 - Project Euler
* @date 12/19/2011
*
*/
public static void main(String[] args) {