duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| // Galeria WordPress | |
| .gallery { margin: 0 auto 18px; } | |
| .gallery .gallery-item { | |
| float: left; | |
| margin-top: 0; | |
| text-align: center; | |
| width: 33%; | |
| margin-bottom: 25px; | |
| img { |
| <?php | |
| $taxonomy = 'rota_categoria'; //Choose the taxonomy | |
| $terms = get_terms( $taxonomy ); //Get all the terms | |
| $queried_object = get_queried_object(); | |
| $term_slug = $queried_object->slug; | |
| $term_id = $queried_object->term_id; | |
| $term_tax = $queried_object->term_taxonomy_id; |
| <?php | |
| function mv_browser_body_class($classes) { | |
| global $is_lynx, $is_gecko, $is_IE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone; | |
| if($is_lynx) $classes[] = 'lynx'; | |
| elseif($is_gecko) $classes[] = 'gecko'; | |
| elseif($is_opera) $classes[] = 'opera'; | |
| elseif($is_NS4) $classes[] = 'ns4'; | |
| elseif($is_safari) $classes[] = 'safari'; | |
| elseif($is_chrome) $classes[] = 'chrome'; |
| <?php | |
| function SearchFilter($query) { | |
| if ($query->is_search) { | |
| $query->set('post_type', 'post'); | |
| } | |
| return $query; | |
| } | |
| add_filter('pre_get_posts','SearchFilter'); |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| IE6 Only | |
| ================== | |
| _selector {...} | |
| IE6 & IE7 | |
| ================== | |
| *html or { _property: } | |
| IE7 Only | |
| ================== |
Attention: the list was moved to https://github.com/vitorbritto/dev-list
This page is not maintained anymore, please update your bookmarks.
Recently, I decided to organize my bookmarks. So, like a good fellow, I am sharing with you. I hope you enjoy!
⇐ back to the gist-blog at jrw.fi
Or, 16 cool things you may not have known your stylesheets could do. I'd rather have kept it to a nice round number like 10, but they just kept coming. Sorry.
I've been using SCSS/SASS for most of my styling work since 2009, and I'm a huge fan of Compass (by the great @chriseppstein). It really helped many of us through the darkest cross-browser crap. Even though browsers are increasingly playing nice with CSS, another problem has become very topical: managing the complexity in stylesheets as our in-browser apps get larger and larger. SCSS is an indispensable tool for dealing with this.
This isn't an introduction to the language by a long shot; many things probably won't make sense unless you have some SCSS under your belt already. That said, if you're not yet comfy with the basics, check out the aweso