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 static long factorial(int a){ //non-recursive factorial, returns long | |
int answer=1; | |
for(int i=1;i<=a;i++){ //starts from 1, multiplies up, such as 1*2*3... | |
answer*=i; | |
} | |
return(answer); | |
} | |
public static long recFactorial(int a){ //recurive factorial, returns long | |
if(a==1){ //stopping case for recursion: if a=1; 1!=1. | |
return(1); |
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
CREATE SEQUENCE "TYPES_typeid_seq" | |
START WITH 1 | |
INCREMENT BY 1 | |
NO MINVALUE | |
NO MAXVALUE | |
CACHE 1; | |
ALTER TABLE public."TYPES_typeid_seq" OWNER TO postgres; | |
ALTER SEQUENCE "TYPES_typeid_seq" OWNED BY "TYPES".typeid; | |
ALTER TABLE ONLY "TYPES" ALTER COLUMN typeid SET DEFAULT nextval('"TYPES_typeid_seq"'::regclass); |
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.Scanner; | |
import java.util.Map; | |
import java.util.TreeMap; | |
import java.io.File; | |
import java.io.FileNotFoundException; | |
import java.util.HashMap; | |
import java.util.Comparator; | |
import java.util.Iterator; | |
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
/* | |
a program that prints out a list of 5 digit prime-numbers that can be found in a given table. Let's called this program FindPrime. | |
It takes in string of numbers as the table. For simplicity, let's assume that the table size is always 5x5. This is an example of how you run FindPrime: | |
FindPrime 5203830594313459791285023 | |
In this case, the table is: | |
5 2 0 3 8 |
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
#!/bin/bash | |
a=1 | |
for i in *.png; do | |
new=$(printf "%04d.png" "$a") #04 pad to length of 4 | |
mv -- "$i" "$new" | |
let a=a+1 | |
done |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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
#!/bin/bash | |
# Purpose: Block all traffic from AFGHANISTAN (af) and CHINA (CN) etc. Use ISO code. # | |
# ------------------------------------------------------------------------------- | |
ISO="ad ae af ag ai al am ao ap ar as at au aw az ba bb bd be bf bg bh bi bj bl bm bn bo bq br bs bt bw by bz ca cd cf cg ch ci ck cl cm cn co cr cu cv cw cy cz de dj dk dm do dz ec ee eg er es et eu fi fj fm fo fr ga gb gd ge gf gg gh gi gl gm gn gp gq gr gt gu gw gy hk hn hr ht hu id ie il im in io iq ir is it je jm jo jp ke kg kh ki km kn kp kr kw ky kz la lb lc li lk lr ls lt lu lv ly ma mc md me mf mg mh mk ml mm mn mo mp mq mr ms mt mu mv mw mx my mz na nc ne nf ng ni nl no np nr nu nz om pa pe pf pg ph pk pl pm pr ps pt pw py qa re ro rs ru rw sa sb sc sd se sg si sk sl sm sn so sr ss st sv sx sy sz tc td tg th tj tk tl tm tn to tr tt tv tw tz ua ug uy uz va vc ve vg vi vn vu wf ws ye yt za zm zw" | |
### Set PATH ### | |
IPT=/sbin/iptables | |
WGET=/usr/bin/wget |
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
dispatch_queue_t myQueue = dispatch_queue_create("My Queue",NULL); | |
dispatch_async(myQueue, ^{ | |
// Perform long running process | |
NSArray *new = [self parseJsonResponse:@"https://pixabay.com/api/?username=soltrinox0&key=e4a2af6f6d7e4869afa1&q=fashion+woman&image_type=photo&orientation=vertical&min_width=350&per_page=50"]; | |
NSLog(@"%@", new ); | |
NSMutableArray* offers = [NSMutableArray array]; | |
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
'use strict'; | |
var app = require('../../server/server'); | |
module.exports = function(Restaurant, app) { | |
// Restaurant.validatesUniquenessOf('UUID', {message: 'UUID EXISTS'}); | |
Restaurant.observe('before save', function setDefaultUsername(ctx, next) { | |
if (ctx.instance) { | |
if(!ctx.instance.created){ | |
ctx.instance.created = Date.now(); |
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
- (UIImage *) padImage:(UIImage *)image withPaddingDictionary:(NSDictionary *)padding { | |
CGFloat width = image.size.height; | |
CGFloat height = image.size.height; | |
NSLog(@"ORIG IMAGE SIZE = %f : %f", width, height); | |
NSNumber *imageTopPadding = [padding valueForKeyPath:@"top"]; | |
NSNumber *imageRightPadding = [padding valueForKeyPath:@"right"]; | |
NSNumber *imageBottomPadding = [padding valueForKeyPath:@"bottom"]; | |
NSNumber *imageLeftPadding = [padding valueForKeyPath:@"left"]; |