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
| /* | |
| * 0 = winter | |
| * 1 = spring | |
| * 2 = summer | |
| * 3 = autumn | |
| */ | |
| function get_season(day, month) | |
| { | |
| return parseInt(((month - (+(day < 21))) / 3) % 4); | |
| } |
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
| <?php | |
| add_filter( 'postbox_classes_post_metaboxid', function ($classes) { | |
| // Notice the unmatched <">, this will close the class attribute | |
| // Ex: <" customattribute="Hello World> | |
| array_push($classes, '" custom_attribute="Hello World' ); | |
| return $classes; | |
| }); | |
| ?> |
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
| from gi.repository import Gtk, GObject | |
| from gi.repository.GdkPixbuf import Pixbuf | |
| icons = ["gtk-cut", "gtk-paste", "gtk-copy"] | |
| class IconViewWindow(Gtk.Window): | |
| def __init__(self): | |
| Gtk.Window.__init__(self) | |
| self.set_default_size(200, 200) |
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 | |
| from gi.repository import Gtk | |
| import random | |
| DUMMY_WORDS = '''Omnisciently sepulture innervating reducate louden fleming | |
| psoatic opinionatedly upington unmistrusted psychognosis | |
| jackfish tutankhamen piled Hyperpotassemia schopenhauerism | |
| venomness grendel bleakly unbungling dolius proempiricist | |
| ableptically siniju woolley giulietta semisentimentalized | |
| tolerably Moultrie prelawful prague mangler gainfulness |
NewerOlder