View one.py
This file contains 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 nessitas_one(iterable): #fixed | |
"""Return the object in the given iterable that evaluates to True. | |
If the given iterable has more than one object that evaluates to True, | |
or if there is no object that fulfills such condition, return None. | |
>>> nessitas_one((True, False, False)) | |
True | |
>>> nessitas_one((True, False, True)) | |
False |
View plotlyCollatzDropingTimes.py
This file contains 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
#plot.ly Example | |
# | |
#This example plot | |
#https://plot.ly/~GermanJimenez/0/ | |
import plotly | |
import os | |
def collatzDropTime(n): | |
c = 0 |
View a_testpy_simulswitchcase_vs_ifelif.py
This file contains 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
#-*- coding: utf-8 -*- | |
import timeit | |
class Datatests(): | |
def __init__(self): | |
self.fns = {'ifelif': {'maximos': [],'minimos': [], 'media': []}, | |
'ifelifcalling': {'maximos': [],'minimos': [], 'media': []}, | |
'simulswitch': {'maximos': [],'minimos': [], 'media': []}} | |
def test(self,function_name,module_name,parameter,test_repetitions,function_calls): |
View wp_link_pages_titled.php
This file contains 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
// Add this to your theme's functions.php file, and replace wp_link_pages in the whole theme by it. | |
//Use | |
//post intro | |
//<!--nextpage--><!--pagetitle: Title one --> | |
//more post | |
//<!--nextpage--><!--pagetitle: Title two --> | |
//..... | |
//That way we get pagination links ... First Title one Title two | |
//http://wordpress.stackexchange.com/questions/11578/custom-page-links-for-paginated-posts-wp-link-pages-nextpage-quicktag |
View simpleslideshow.html
This file contains 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"> | |
<style type="text/css"> | |
div#slide { | |
width: 960px; | |
height: 400px; | |
animation: slide 30s; |
View imagespreload.js
This file contains 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 preLoad(){ | |
nameimages = new Array('nimage0','nimage1','nimage2','nimage3','nimagen'); | |
images = {}; | |
loadAllImages(); | |
function loadAllImages(){ | |
for (name in nameimages){ | |
images[nameimages[name]] = new Image(); | |
images[nameimages[name]].onload = function() { | |
resourceLoaded(); | |
} |
View WxpythonStyle.py
This file contains 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
#Source http://hasenj.wordpress.com/2009/04/14/making-a-fancy-window-in-wxpython/ | |
import wx | |
def GetRoundBitmap( w, h, r ): | |
maskColor = wx.Color(0,0,0) | |
shownColor = wx.Color(5,5,5) | |
b = wx.EmptyBitmap(w,h) | |
dc = wx.MemoryDC(b) |
View clasePermutador.py
This file contains 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
import codecs | |
class Permutador: | |
def __init__(self): | |
self.lista = [] | |
self.index = 0 | |
self.anagramas = [] | |
def permutar(self,lista_an,longitud=None,anag_an=[]): #same itertools.permutation, but it's recursive | |
if longitud == None: |