I hereby claim:
- I am mllanes on github.
- I have a public key ASCnb503vnkB9mSlJXnGYFs4IZ5HsT6qj1kfuWe8yf8haQo
To claim this, I am signing this object:
<?php # -*- coding: utf-8 -*- | |
// function remove_accents() | |
/** | |
* Unaccent the input string string. An example string like `ÀØėÿᾜὨζὅБю` | |
* will be translated to `AOeyIOzoBY`. More complete than : | |
* strtr( (string)$str, | |
* "ÀÁÂÃÄÅàáâãäåÒÓÔÕÖØòóôõöøÈÉÊËèéêëÇçÌÍÎÏìíîïÙÚÛÜùúûüÿÑñ", | |
* "aaaaaaaaaaaaooooooooooooeeeeeeeecciiiiiiiiuuuuuuuuynn" ); | |
* |
<?php | |
/** | |
* An helper file for Laravel 4, to provide autocomplete information to your IDE | |
* Generated with https://github.com/barryvdh/laravel-ide-helper | |
* Updated for Laravel 4.2.1 (2014-06-01) | |
* | |
* @author Barry vd. Heuvel <barryvdh@gmail.com> | |
*/ | |
namespace { |
<?php | |
/** | |
* An helper file for Laravel 4, to provide autocomplete information to your IDE | |
* Generated for Laravel 4.2.16 on 2014-12-24. | |
* | |
* @author Barry vd. Heuvel <barryvdh@gmail.com> | |
* @see https://github.com/barryvdh/laravel-ide-helper | |
*/ | |
namespace { |
// Subject to SQL injection | |
Student.query( | |
"SELECT * FROM student INNER JOIN course ON course.studentId=student.id WHERE student.id=" + req.param('student_id'), | |
function(err, students) { | |
} | |
) | |
// uses prepared statements to protect against sql injection | |
// https://github.com/brianc/node-postgres/wiki/Prepared-Statements#parameterized-queries |
import UIKit | |
extension UIColor { | |
convenience init(hex: Int) { | |
self.init(hex: hex, alpha: 1.0) | |
} | |
convenience init(hex: Int, alpha: CGFloat) { | |
self.init( | |
red: CGFloat((hex & 0xFF0000) >> 16 / 255.0), |
import UIKit | |
import AVFoundation | |
class ViewController: UIViewController, AVCaptureMetadataOutputObjectsDelegate { | |
let session : AVCaptureSession = AVCaptureSession() | |
var previewLayer : AVCaptureVideoPreviewLayer! | |
var highlightView : UIView = UIView() | |
import SystemConfiguration.CaptiveNetwork | |
func getSSID() -> String{ | |
var currentSSID = "" | |
let interfaces = CNCopySupportedInterfaces() | |
if interfaces != nil { | |
public class MainActivity extends | |
private PopupWindow popWindow; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
} |
var Promise = require('bluebird'); | |
var promiseWhile = function(condition, action) { | |
var resolver = Promise.defer(); | |
var loop = function() { | |
if (!condition()) return resolver.resolve(); | |
return Promise.cast(action()) | |
.then(loop) | |
.catch(resolver.reject); |