Skip to content

Instantly share code, notes, and snippets.

View soltrinox's full-sized avatar
🤖
Building Cybernetic Systems

Mr. Rosario soltrinox

🤖
Building Cybernetic Systems
View GitHub Profile
@soltrinox
soltrinox / gist:e51ea35c2a3d64d20cc6
Created December 18, 2014 16:06
Factorial/Binomial Coefficent (N Choose K) nCk=n!/(k!*(n-k)!)
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);
@soltrinox
soltrinox / gist:f38146c20c5523533bb6
Created February 16, 2015 20:35
CREATE SEQUENCE POSTGRES FOR EXISTING TABLE
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);
@soltrinox
soltrinox / gist:0db92cab0bef23cff890
Created March 4, 2015 01:52
Find the three most common words in a file. WordCounts.java
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;
@soltrinox
soltrinox / gist:619b745480f40ea1fc38
Last active August 29, 2015 14:16
Prime number discovery from sequence transposed to a grid.
/*
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
@soltrinox
soltrinox / gist:70f36acdb59bdd3864c6
Created April 2, 2015 19:57
rename files in BASH shell to sequence
#!/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
@soltrinox
soltrinox / 0_reuse_code.js
Last active August 29, 2015 14:20
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
#!/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
@soltrinox
soltrinox / gist:095d42f5f08205a2404c
Last active August 29, 2015 14:27
BLOCK obj-c async call to JSON REST API GCD BLOCK
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];
@soltrinox
soltrinox / restaurants.js
Last active February 21, 2024 11:37
Loopback : Model access non-related model via App object
'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();
@soltrinox
soltrinox / gist:08e9e46ace816315531b
Last active October 24, 2015 02:13
UIImage add Padding with Dictionary of Floats
- (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"];