| bio | website | lmazy.verrech.net |
|---|---|---|
| location | Kaiserslautern, Germany | |
| age | 25 | |
| visits | member for | 2 years, 7 months |
| seen | Feb 13 at 14:01 | |
| stats | profile views | 55 |
I am a (fresh) PhD student at the Algorithms & Complexity group at University of Kaiserslautern, Germany. I research design and analysis of parallel algorithms and data structures.
In my free time I read books, enjoy (and sometimes make) music, code, work out and roam the webs.
You can find sources for all self-created images I post on Stack Exchange here.
|
Jan 17 |
comment |
How to Compress PHP output in my plugin? @Jared separation of concerns. You provide the functionality without being stupid, let others handle how to deliver it efficiently. Also, always remember that gezipping takes time, as does connection initialisation (independent of how many you transfer). Compression only pays off for sufficiently large and compressible data. For me, the best speed improvement was achieved (besides caching) by enabling pipelining (both on server and client) and to configure the browser to start rendering while it still receives data. |
|
Jan 17 |
answered | How to Compress PHP output in my plugin? |
|
Jan 17 |
comment |
Get all image from single page using this query Apparently the use of query_posts is not without drawbacks. Have you tried using get_posts instead? But then, I think using The Loop at all in this case is overkill. Just hardcode the page ID into your call to get_posts (which is currently inside The Loop). |
|
Jan 17 |
comment |
HTML tags in Wordpress image caption As you are new here, mnorrish, be advised that you should upvote answers you like and accept the most useful one (by clicking the grey tick next to it). |
|
Jan 17 |
answered | HTML tags in Wordpress image caption |
|
Jan 17 |
answered | Subversion, github, etc.. version control systems/repositories |
|
Jan 15 |
accepted | Unified Approach for Placing Option Pages |
|
Jan 15 |
accepted | How to store a medium amount of options? |
|
Jan 14 |
awarded | Scholar |
|
Jan 14 |
accepted | Options don't save, validation callback not executed |
|
Jan 14 |
answered | Options don't save, validation callback not executed |
|
Jan 13 |
revised |
Options don't save, validation callback not executed adds note |
|
Jan 12 |
revised |
Options don't save, validation callback not executed added note regarding debug messages |
|
Jan 12 |
asked | Options don't save, validation callback not executed |
|
Nov 9 |
awarded | Yearling |
|
Mar 11 |
comment |
Objective Best Practices for Plugin Development? Instead of using a constant, use plugin_basename(__FILE__) to figure the plugin's local name out. That is useful for having copies of the same plugin (testing, multiple accounts elsewhere but only one per plugin, ...), too. |
|
Feb 7 |
comment |
How to store a medium amount of options? How does this scale when a user wants to have a dozen different background classes, each to use from a different shortcode? |
|
Feb 6 |
comment |
How to store a medium amount of options? I understand what you are getting at, thanks. |
|
Feb 6 |
comment |
How to store a medium amount of options? I would consider this good general advice, but it does not answer my question. In your terms, I am looking for a decent implementation now. (Although I do not encapsulate that properly atm, bad me ;)) Also, does not WP itself provide exactly that level of abstraction? |
|
Feb 6 |
comment |
How to store a medium amount of options? That is essentially my answer, correct? |