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
https://dtrinf.wordpress.com/2012/02/29/como-escribir-enes-n-y-acentos-en-java/ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Recent Changes (React JS Project)</title> | |
<script src="https://fb.me/react-15.1.0.min.js"></script> | |
<script src="https://fb.me/react-dom-15.1.0.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.34/browser.min.js"></script> | |
</head> | |
<body> |
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
git config --global alias.go checkout | |
git config --global alias.br branch | |
git config --global alias.st status | |
git config --global alias.ci commit | |
git config --global alias.a "add ." | |
git config --global alias.u "add -u" | |
git config --global alias.pullmaster 'pull origin master' | |
git config --global alias.pushmaster 'push origin master' |
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
http://fredsarmento.me/frontend-tools/ | |
https://github.com/marti1125/Symbols/blob/master/stylesheets/symbols.css (proyecto antiguo) | |
http://weloveiconfonts.com/ | |
http://stackicons.com/ | |
http://fontello.com/ |
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
<workflow xmlns="http://taverna.sf.net/2008/xml/t2flow" version="1" producedBy="taverna-core-2.5.0"><dataflow id="752f564d-f407-4495-a48e-f6e866787edc" role="top"><name>Workflow1</name><inputPorts><port><name>ID</name><depth>0</depth><granularDepth>0</granularDepth><annotations /></port></inputPorts><outputPorts><port><name>pscanOut</name><annotations /></port></outputPorts><processors><processor><name>Get_Protein_FASTA</name><inputPorts><port><name>id</name><depth>0</depth></port></inputPorts><outputPorts /><annotations /><activities><activity><raven><group>net.sf.taverna.t2.activities</group><artifact>localworker-activity</artifact><version>1.5</version></raven><class>net.sf.taverna.t2.activities.localworker.LocalworkerActivity</class><inputMap><map from="id" to="id" /></inputMap><outputMap /><configBean encoding="xstream"><net.sf.taverna.t2.activities.localworker.LocalworkerActivityConfigurationBean xmlns=""> | |
<inputs> | |
<net.sf.taverna.t2.workflowmodel.processor.activity.config.ActivityInputPortDefinit |
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
// complete the function | |
function vowelsAndConsonants(s) { | |
for(var i = 0; i < s.length; i++){ | |
if( vowelTest(s[i]) ){ | |
console.log(s[i]) | |
} | |
} | |
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
//Write your code below this line. | |
function reverse(s) { | |
return s.split('').reverse().join(''); | |
} | |
for(var i = 0; i < my_array.length; i++ ){ | |
if(my_array[i] === reverse(my_array[i])){ | |
console.log(my_array[i]) | |
} | |
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
{ | |
"categorias": [ | |
{ | |
"categoria": "banco", | |
"cantidad": 10, | |
"activo": false | |
}, | |
{ | |
"categoria": "analisis", | |
"cantidad": 33, |
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 a = [ | |
"Hydrogen", | |
"Helium", | |
"Lithium", | |
"Beryllium" | |
]; | |
var test = a.map( s => { | |
if (s.length > 6) | |
return s.length; |
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
Available tasks | |
ci Alias for "ci:undefined" task. | |
ci:demos Alias for "test:demos" task. | |
ci:test Alias for "test", "coveralls" tasks. | |
release:init Custom task. |