Skip to content

Instantly share code, notes, and snippets.

View jesusOmar's full-sized avatar

Jesus Fernandez jesusOmar

View GitHub Profile
@jesusOmar
jesusOmar / crap.js
Last active September 27, 2015 00:37
Validates a set of form fields against a range of accepted values. Uses jQuery with noConflict() and jQuery UI Dialog.
<script>
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery("#btnSave").click(function() {
// Create a list of valid ranges for the fields.
var fields = {
age: {
id: "#txtAge",
val: parseInt(jQuery("#txtAge").val()),
low: 18,
@jesusOmar
jesusOmar / php.watchr.rb
Created June 3, 2011 18:19
My watchr scripts with growl notifications and custom images for php and python.
# Prereqs:
# * Ruby
# * gem install watchr
# * growlnotify (http://growl.info/ = Extras folder from growl download.)
# Usage:
# put all your tests in a tests folder and call them anythingTest.php
# run watchr watchr.rb
watch('tests/.*Test\.php') do |md|
<?php
private function _array_search($needle, $haystack) {
if (empty($needle) || empty($haystack)) {
return false;
}
foreach ($haystack as $key => $value) {
foreach ($needle as $nkey => $nvalue) {
if (!empty($value[$nkey]) && $value[$nkey] == $nvalue) {
if($haystack[$key]['empid'] == $needle['empid'] && $haystack[$key]['bdate'] == $needle['bdate']) {
return $key;