- http://www.boe.es/buscar/doc.php?coleccion=anboe&id=2013/033156
- http://www.boe.es/buscar/doc.php?coleccion=anboe&id=2013/33156
- http://www.boe.es/buscar/doc.php?id=BOE-B-2013-33156
- http://www.boe.es/buscar/act.php?id=BOE-B-2013-33156
- http://www.boe.es/diario_boe/txt.php?id=BOE-B-2013-33156
- http://www.boe.es/diario_boe/xml.php?id=BOE-B-2013-33156
- http://www.boe.es/diario_borme/xml.php?id=BOE-B-2013-33156 !
- http://www.boe.es/boe/dias/2013/09/07/
- http://www.boe.es/boe/dias/2013/09/07/index.php
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| android:layout_width="fill_parent" | |
| android:layout_height="60dp" | |
| android:orientation="horizontal" > | |
| <ImageView | |
| android:id="@+id/imageView1" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" |
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
| dutch,article,spanish,english | |
| auto,de,coche,car | |
| bank,de,sofa,sofa | |
| broodrooster,het,tostadora,toaster | |
| camera,de,cámara,camera | |
| computer,de,ordenador,computer | |
| deur,de,puerta,door | |
| fiets,de,bicicleta,bicycle | |
| giraf,de,jirafa,giraffe | |
| handdoek,de,toalla,towel |
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
| Verifying that +juanma is my openname (Bitcoin username). https://onename.io/juanma |
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
| def daysInMonth(year,month): | |
| days = 31 | |
| if month%7%2 > 0: | |
| days = 30 | |
| if month == 1: | |
| days = days - 2 + (year %4 == 0) | |
| return days |
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
| def f1(i): | |
| v = i%3 | |
| if v == 0: | |
| v=5 | |
| return v * 10**((i-1)/3) | |
| for i in range(1,100): | |
| print i, f1(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
| POBLACION PROVINCIA NOMBRE | |
| 3 Toledo Illán de Vacas | |
| 4 Burgos Jaramillo Quemado | |
| 7 Soria Estepa de San Juan | |
| 8 Guadalajara Castilnuevo | |
| 8 Rioja, La Valdemadera | |
| 8 Rioja, La Villarroya | |
| 8 Soria Quiñonería | |
| 9 Soria Villanueva de Gormaz | |
| 10 Teruel Salcedillo |
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
| #!/usr/bin/python | |
| def factors(n): | |
| return set(reduce(list.__add__,([i, n//i] for i in range(1, int(n**0.5) + 1) if n % i == 0))) | |
| def print_factors(f): | |
| for i in f: | |
| print "%2s" % (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
| def conway(s): | |
| res = [] | |
| i=0 | |
| while i<len(s): | |
| symbol = s[i] | |
| count = i | |
| while i<len(s) and s[i]==symbol: | |
| i= i+1 | |
| count = i - count | |
| res.append([count,symbol]) |
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
| aa | |
| aah | |
| ab | |
| aba | |
| abaka | |
| abamp | |
| abate | |
| abba | |
| abbe | |
| abbey |
OlderNewer