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
<html> | |
<head> | |
<title>Test</title> | |
</head> | |
<body> | |
<page id="home"> | |
<header> | |
<h1>Title</h1> | |
</header> |
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
WebServiceException | |
Logger.error(e, "Ha ocurrido un problema de conexion con un WebService"); | |
GenericJDBCException | |
Logger.error(e, "Ha ocurrido un problema con un Procedimiento Almacenado"); | |
SQLGrammarException | |
Logger.error(e, "El Procedimiento Almacenado no existe"); |
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
function cambiarLetras(letra){ | |
var resultado = letra.replace("Á", "ร").replace("á", "รก") | |
.replace("É", "ร").replace("é", "รฉ") | |
.replace("Í", "ร").replace("í", "รญ") | |
.replace("Ó", "ร").replace("ó", "รณ") | |
.replace("Ú", "ร").replace("ú", "รบ") | |
.replace("ñ", "รฑ").replace("Ñ", "ร"); | |
return resultado; | |
} |
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
DateTimeZone zone = DateTimeZone.forID("America/Lima"); |
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
jvm.memory=-Xmx2G -Xms2G -XX:PermSize=256m -XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled |
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
var row = new Backgrid.Row({model: model, columns: [...]}); | |
row.render(); |
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
C:\Users\Willy\Documents\GitHub\cordova-firefoxos [new-icon]> git checkout 52a52 | |
55 bin\lib\create.js |
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
I did some investigation and I think the plan for now should be: | |
1. Create a bin/templates/project/res folder in cordova-firefox | |
2. Copy icons there. At least sizes 128x128 and 60x60. | |
3. In bin/lib/create.js, make sure you copy res folder into platforms/firefoxos/platform_www. Cordova prepare will copy files in there over to www. | |
4. update bin/templates/project/cordova/defaults.xml with new default icons | |
5. Make sure icon implementation in cordova-lib/src/cordova/metadata/firefoxos_parser.js at repo cordova-lib can find the icons. |
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
RESTORE DATABASE AdventureWorks | |
FROM DISK = 'C:\BackupAdventureworks.bak' | |
WITH REPLACE |
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
<div id="visLines" class="channel-visualisation subscription-channels"> | |
<div class="channel" color="blue" for="sendMessage" data-val="4"> | |
4 | |
<div class="dot color"></div> | |
</div> | |
<div class="channel" color="pink" for="clear" data-val="3"> | |
3 | |
<div class="dot color"></div> | |
</div> |