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
| Transparent | |
| <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"> | |
| Black | |
| <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAUEBAAAACwAAAAAAQABAAACAkQBADs="> |
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
| Open the find/replace dialog. | |
| At the bottom will be some Search mode options. Select "Extended (\n \r \t \0 \x...)" | |
| In either the Find what or the Replace with field entries, you can use the following escapes: | |
| \n new line (LF) | |
| \r carriage return (CR) | |
| \t tab character | |
| \0 null character | |
| \xddd special character with code ddd |
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
| max = maximum(|x|, |y|) | |
| min = minimum(|x|, |y|) | |
| r = min / max | |
| return max*sqrt(1 + r*r) |
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 getData(url) { | |
| var data; | |
| $.ajax({ | |
| async: false, //thats the trick | |
| url: url, | |
| dataType: 'json', | |
| success: function (response) { | |
| data = response; | |
| } | |
| }); |
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
| body{ | |
| font-family:Tahoma,Arial,sans-serif; | |
| font-size: 13px; | |
| color:black; | |
| background:white; | |
| margin:8px; | |
| } | |
| h1{ | |
| font-size:19px; | |
| margin-top:15px; |
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
| <!-- content to be placed inside <body>…</body> --> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Hola mundo desde el titulo</title> | |
| </head> | |
| <body> | |
| <h1>Hola Mundo</h1> | |
| <br /> | |
| <h1>HTML Hypertext Markup Language</h1> |
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> | |
| <title>Hola mundo desde el titulo</title> | |
| </head> | |
| <body> | |
| <h1>Hola Mundo</h1> | |
| <br /> | |
| <h1>HTML Hypertext Markup Language</h1> | |
| <h2>Elementos</h2> |
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
| public static int contarRepetidos(ArrayList<Objeto> a) { | |
| Map<Integer, Integer> freqMap = new HashMap<Integer, Integer>(); | |
| for (Objeto obj : a) { | |
| freqMap.put(obj.getValor(), (freqMap.get(obj.getValor()) == null ? 1 : (freqMap.get(obj.getValor()) + 1))); | |
| } | |
| return Collections.max(freqMap.values()); | |
| } |
NewerOlder