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
UploadPhoto: function(photo) | |
{ | |
// No hay nada definido. | |
if ( photo == undefined ) | |
return; | |
// Leemos la foto y ponemos en la vista previa. | |
Photos.Read(photo, '#status-photo img'); | |
photo = Photos.Data(photo); |
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
/* | |
* To change this template, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package incidencias; | |
import java.util.Scanner; | |
import java.util.Arrays; | |
/** | |
* |
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
{ | |
"global": | |
{ | |
"january": "Enero", | |
"february": "Febrero", | |
"march": "Marzo", | |
"april": "Abril", | |
"may": "Mayo", | |
"june": "Junio", | |
"july": "Julio", |
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
<?php | |
# ¡BeatRock! | |
require '../Init.php'; | |
# Inicializamos la SDK. | |
$accounts = new IC(array( | |
'public' => 'qhgyupruksiul2ggiilf7h0r8ihpt', | |
'private' => 'ldqgsw7ydfoacenchpe89a8whmkl3hcat1j8mgmxonhi6qrq9dt2vu83r5i' | |
)); |
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
"Resource/HudLayout.res" | |
{ | |
HudHealth [$WIN32] | |
{ | |
"fieldName" "HudHealth" | |
"xpos" "16" | |
"ypos" "432" | |
"wide" "65" | |
"tall" "36" | |
"visible" "0" |
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
"GameInfo" | |
{ | |
game "Apocalypse" | |
gamelogo 1 | |
title "" | |
title2 "" | |
nodifficulty 1 | |
nocrosshair 1 | |
nomodels 0 |
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
<? | |
require 'Init.php'; | |
$words = __('Esta palabra tiene muchas palabras'); | |
echo $words->translate('es', 'en'); // This word has many words | |
?> |
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
<? | |
require 'Init.php'; | |
$testing = __('¿Que Carajo Estoy Haciendo?'); | |
echo $testing->replace('Haciendo', 'Poniendo'); // ¿Que Carajo Estoy Poniendo? | |
echo '<br />'; | |
echo $testing->undo(); // ¿Que Carajo Estoy Haciendo? | |
echo '<br />'; | |
echo $testing->lower(); // ¿que carajo estoy haciendo? | |
echo '<br />'; |
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
<? | |
require 'Init.php'; | |
$testing = __('¿Que Carajo Estoy Haciendo?'); | |
$testing->replace('Haciendo', 'Poniendo')->lower(); | |
echo $testing, '<br />'; // ¿que carajo estoy poniendo? | |
echo $testing->encode('base64'), '<br />'; // wr9xdWUgY2FyYWpvIGVzdG95IHBvbmllbmRvPw== | |
echo $testing->original; // ¿Que Carajo Estoy Haciendo? | |
?> |
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
<? | |
##################################################### | |
## BeatRock ## | |
##################################################### | |
## Framework avanzado de procesamiento para PHP. ## | |
##################################################### | |
## InfoSmart © 2013 Todos los derechos reservados. ## | |
## http://www.infosmart.mx/ ## | |
##################################################### | |
## http://beatrock.infosmart.mx/ ## |