This file contains hidden or 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
/*! | |
* jQuery ClassyLoader | |
* www.class.pm | |
* | |
* Written by Marius Stanciu - Sergiu <[email protected]> | |
* Licensed under the MIT license www.class.pm/LICENSE-MIT | |
* Version 1.1.0 | |
* | |
*/(function(d){d.fn.ClassyLoader=function(a){a=d.extend({},{ | |
width:200, |
This file contains hidden or 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": "load-google-maps", | |
"version": "1.0.0", | |
"authors": ["Glenn Baker", "Gavin Foley", "Matteo Gaggiano"], | |
"description": "Load Google Maps API using jQuery Deferred.", | |
"main": "load-google-maps.js", | |
"keywords": ["Google Maps", "Async"], | |
"license": ["MIT", "GPL"], | |
"dependencies": { | |
"jquery": ">=1.5" |
This file contains hidden or 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
angular.module('myApp', ['ngPluralizeHtml']) | |
function AppController() { | |
var vm = this; | |
vm.count = 10; | |
} | |
.controller('AppController', AppController); |
This file contains hidden or 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 | |
# execution permissions: chmod +x broadcom_bcm4325.sh | |
# execute with: ./broadcom_bcm4325.sh | |
# need root access to work properly | |
cd /tmp | |
wget http://marchrius.altervista.org/blog/download/broadcom_3.19.tar.gz | |
mkdir broadcom_3.19 |
This file contains hidden or 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
#include <math.h> | |
#include <string.h> | |
int hex2int(const char * s) | |
{ | |
char charset[] = "0123456789abcdef"; | |
int i = (int)strlen(s), len = i, num = 0, j = 0; | |
while (i >= 0) { | |
for (j = 0; j < 16; j++) { | |
if (charset[j] == s[i]) { |
This file contains hidden or 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
#define _XOPEN_SOURCE 500 /* Enable certain library functions (strdup) on linux. See feature_test_macros(7) */ | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <limits.h> | |
#include <string.h> | |
struct entry_s { | |
char *key; | |
char *value; |
This file contains hidden or 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
// | |
// reverse.c | |
// | |
// | |
// Created by Matteo Gaggiano on 23/06/12. | |
// Copyright (c) 2012 Marchrius. All rights reserved. | |
// | |
#include <stdio.h> | |
#include <string.h> |
NewerOlder