Skip to content

Instantly share code, notes, and snippets.

@dev0x10
dev0x10 / angularjs-cors
Last active December 27, 2015 22:09
Enable CORS in AngularJS
var app = angular.module("appname", []);
app.config(function($httpProvider) {
//Enable cross domain calls
$httpProvider.defaults.useXDomain = true;
//Remove the header used to identify ajax call that would prevent CORS from working
delete $httpProvider.defaults.headers.common['X-Requested-With'];
});
@dev0x10
dev0x10 / test-socket-io.js
Last active January 1, 2016 15:09 — forked from jmyrland/test.js
/**
* Modify the parts you need to get it working.
*/
var should = require('should');
var request = require('../node_modules/request');
var io = require('socket.io-client');
var serverUrl = 'http://localhost';
@dev0x10
dev0x10 / jquery-get-selected-checkbox
Last active January 2, 2016 11:09
Get all checked checkbox and return it as string
function getCheckedStudents() {
var students = $("input[name=student]:checked")
.map(function () {
return this.value;
}).get().join(", ");
return students;
}
@dev0x10
dev0x10 / socket.io_broadcast
Created August 20, 2014 09:07
Socket.io broadcast with different methods
// send to current request socket client
socket.emit('message', "this is a test");
// sending to all clients, include sender
io.sockets.emit('message', "this is a test");
// sending to all clients except sender
socket.broadcast.emit('message', "this is a test");
// sending to all clients in 'game' room(channel) except sender
@dev0x10
dev0x10 / luhn.js
Last active August 29, 2015 14:07 — forked from ShirtlessKirk/luhn.js
/**
* Variant of Avraham Plotnitzky's String.prototype method mixed with the "fast" version
* see: https://sites.google.com/site/abapexamples/javascript/luhn-validation
* @author ShirtlessKirk. Copyright (c) 2012.
* Licensed under WTFPL (http://www.wtfpl.net/txt/copying)
*/
function luhnChk(luhn) {
var len = luhn.length,
mul = 0,
@dev0x10
dev0x10 / regex.txt
Last active August 29, 2015 14:07 — forked from nerdsrescueme/regex.txt
Perl and PHP Regular Expressions
PHP regexes are based on the PCRE (Perl-Compatible Regular Expressions), so any regexp that works for one should be compatible with the other or any other language that makes use of the PCRE format. Here are some commonly needed regular expressions for both PHP and Perl. Each regex will be in string format and will include delimiters.
All Major Credit Cards
This regular expression will validate all major credit cards: American Express (Amex), Discover, Mastercard, and Visa.
//All major credit cards regex
'/^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6011[0-9]{12}|622((12[6-9]|1[3-9][0-9])|([2-8][0-9][0-9])|(9(([0-1][0-9])|(2[0-5]))))[0-9]{10}|64[4-9][0-9]{13}|65[0-9]{14}|3(?:0[0-5]|[68][0-9])[0-9]{11}|3[47][0-9]{13})*$/'
@dev0x10
dev0x10 / android-getDisplaySize
Last active August 29, 2015 14:08
Android get display size
DisplayMetrics metrics = getApplicationContext().getResources().getDisplayMetrics();
int height = metrics.heightPixels;
int width = metrics.widthPixels;
package com.greenchiu.nets;
import java.io.UnsupportedEncodingException;
import java.util.Map;
import org.json.JSONException;
import org.json.JSONObject;
import com.android.volley.NetworkResponse;
import com.android.volley.ParseError;
@dev0x10
dev0x10 / js-string-to-titlecase
Created January 18, 2015 14:00
Javascript string to title case
function toTitleCase(str) {
return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}