This file contains 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
class User | |
def full_name | |
"BLA" | |
end | |
alias :full_name, :real_full_name | |
def full_name | |
@cache ||= real_full_name | |
end | |
end |
This file contains 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
<VirtualHost *:80> | |
<Directory "/xxx/yyy/zzz/falta-uno/current/public"> | |
Options FollowSymLinks | |
AllowOverride None | |
Order allow,deny | |
Allow from all | |
</Directory> | |
ServerAdmin [email protected] | |
DocumentRoot /xxx/yyy/zzz/falta-uno/current/public |
This file contains 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
void | |
setup_language_manager_path(GtkSourceLanguageManager *lm) | |
{ | |
gchar **lang_files; | |
int i, lang_files_count; | |
char **new_langs; | |
lang_files = g_strdupv (gtk_source_language_manager_get_search_path (lm)); | |
lang_files_count = g_strv_length (lang_files); |
This file contains 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
class MyModel | |
attr_accessor :item_url | |
def as_json(options={}) | |
{ | |
:url => item_url | |
}.merge(self.attributes) | |
end | |
end |
This file contains 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
<?php | |
$api = new CSApi($public_key, $private_key); | |
$res = $api->check_authentication('[email protected]', 'clave'); | |
if ($api->has_errors) { | |
echo "$api->last_error.\n"; | |
} else { | |
if ($res == 0) { |
This file contains 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
<?php | |
get('/', function () { | |
$contacts = ORM::for_table('contact')->find_many(); | |
render('home.php', array('contacts' => $contacts)); | |
}); | |
get('/contacts/new', function () { | |
render('contacts/form.php', array( |
This file contains 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
server { | |
listen 80; | |
server_name localhost; | |
location @until { | |
# Static "comming soon" directory with index.html and assets | |
root /var/www/; | |
index index.html; | |
} |
This file contains 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 <NewPing.h> | |
#define trigPin 2 | |
#define echoPin 4 | |
NewPing sonar(trigPin, echoPin, 800); | |
void setup() { | |
Serial.begin(9600); | |
} |
This file contains 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/sh | |
# Tested with : | |
# * avconv version 9.13-6:9.13-0ubuntu0.14.04.1, | |
# * SoX v14.4.1 | |
# | |
# Just run clean.sh input_file.mp4 output_file.mp4 | |
INPUT=$1 | |
OUTPUT=$2 |
This file contains 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
@CompileStatic | |
public class MainActivity extends ActionBarActivity { | |
TextView textView; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
textView = findViewById(R.id.text) as TextView; |
OlderNewer