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
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
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
<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
class User | |
def full_name | |
"BLA" | |
end | |
alias :full_name, :real_full_name | |
def full_name | |
@cache ||= real_full_name | |
end | |
end |
NewerOlder