This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var math = require('mathjs'); | |
/* | |
You One 1s and Four 7s, how do you make these numbers equal 100 with any operation. | |
*/ | |
// dictionary to create combinations from | |
var dictionary = ['+', '-', '/', '*']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class FloatCheck { | |
float one, two; | |
public FloatCheck(float one, float two) { | |
this.one = one; | |
this.two = two; | |
} | |
public boolean roundToTwoDec() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.HashMap; | |
public class Card { | |
private String input; | |
private HashMap<Integer, String> numberDictionary = new HashMap<Integer, String>(); | |
private HashMap<String, String> cardDictionary = new HashMap<String, String>(); | |
public Card(String input) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Month { | |
private final String months = "January February March April May June July August September October November December"; | |
int monthNo; | |
public Month(int monthNo) { | |
this.monthNo = monthNo; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Allows you to manage your BankAccount information and modify it by adding and withdrawing from the account. | |
* @author Peter Soboyejo | |
* @version 1.0 | |
* @since September 27, 2017 | |
*/ | |
public class BankAccount | |
{ | |
private double balance; | |
private double fee = 0.00; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Dog { | |
String name, breed; | |
double weight; | |
// constructor | |
public Dog(String name, String breed, double weight) { | |
this.name = name; | |
this.breed = breed; | |
this.weight = weight; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SwiftyJSON | |
------------------ | |
The MIT License (MIT) | |
Copyright (c) 2017 Ruoyu Fu | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
We can make this file beautiful and searchable if this error is corrected: It looks like row 5 should actually have 4 columns, instead of 3 in line 4.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Name,Description,Link,Image | |
Supreme®/Schott® Faux Fur Peacoat,Custom fit Schott® faux fur peacoat with satin lining. Double breasted 8-button closure with hand pockets at lower front and 2 interior chest pockets.,http://www.supremenewyork.com/previews/fallwinter2017/jackets/supreme-schott-faux-fur-peacoat,http://d17ol771963kd3.cloudfront.net/136533/zo/-dGaNM8icEY.jpg | |
Reversed Shearling Hooded Jacket,Sheepskin with reverse shearling body. Full zip closure with leather logo appliqué on lower back.,http://www.supremenewyork.com/previews/fallwinter2017/jackets/reversed-shearling-hooded-jacket,http://d17ol771963kd3.cloudfront.net/133679/zo/PMVtDFB0Zag.jpg | |
100 Dollar Bill Trucker Jacket,"All cotton denim jacquard trucker with button front closure, hand pockets at lower front and chest pockets with button closures.",http://www.supremenewyork.com/previews/fallwinter2017/jackets/100-dollar-bill-trucker-jacket,http://d17ol771963kd3.cloudfront.net/134739/zo/ywBE767ervE.jpg | |
100 Dollar Bill Overalls,All cotton twill,h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var config = { | |
mode: "pac_script", | |
pacScript: { | |
data: "function FindProxyForURL(url, host) {\n" + | |
" if (shExpMatch(url, \'*helper*\'))\n" + | |
" return 'PROXY 127.0.0.1:3000';\n" + | |
" return 'DIRECT';\n" + | |
"}" | |
} | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
var code=prompt("Enter the injection Code","Code"); | |
eval(code); | |
})(); |