I hereby claim:
- I am fabiobruna on github.
- I am fabiobruna (https://keybase.io/fabiobruna) on keybase.
- I have a public key whose fingerprint is 90A0 0CC0 4C5C D56C A81D 3A97 693E ACE5 C27E D900
To claim this, I am signing this object:
| var HEADER = Ext.ComponentQuery.query('#ELEMENT')[0]; | |
| Ext.Ajax.request({ | |
| url: 'BESTAND.BESTAND', | |
| success: function(response, opts) { | |
| var obj = Ext.decode(response.responseText); | |
| if (obj.success == true) { | |
| HEADER.setTitle('BLABLA' + obj.periode); | |
| } | |
| }, |
| [global_config] | |
| enabled_plugins = CustomCommandsMenu, InactivityWatch, TestPlugin, ActivityWatch, TerminalShot, LaunchpadCodeURLHandler, APTURLHandler, MavenPluginURLHandler, LaunchpadBugURLHandler, LayoutManager | |
| title_transmit_bg_color = "#832527" | |
| [keybindings] | |
| [profiles] | |
| [[default]] | |
| scrollback_lines = 4000 | |
| [layouts] | |
| [[default]] | |
| [[[child1]]] |
| #301 Redirects for .htaccess | |
| #Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| #Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| #Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |
| { | |
| "cmd": ["php", "-l", "$file"], | |
| "selector": "source.php" | |
| } |
I hereby claim:
To claim this, I am signing this object:
| <?php function base64_encode_image ($filename=string,$filetype=string) { if ($filename) { $imgbinary = fread(fopen($filename, "r"), filesize($filename)); return 'data:image/' . $filetype . ';base64,' . base64_encode($imgbinary); } } ?> used as so <style type="text/css"> .logo { background: url("<?php echo base64_encode_image ('img/logo.png','png'); ?>") no-repeat right 5px; } </style> or <img src="<?php echo base64_encode_image ('img/logo.png','png'); ?>"/> |
| <!-- Add the following lines to theme's html code right before </head> --> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script> | |
| <script src="http://static.tumblr.com/fpifyru/VCxlv9xwi/writecapture.js"></script> | |
| <script src="http://static.tumblr.com/fpifyru/AKFlv9zdu/embedgist.js"></script> | |
| <!-- | |
| Usage: just add <div class="gist">[gist URL]</div> | |
| Example: <div class="gist">https://gist.github.com/1395926</div> | |
| --> |
| Ext.Ajax.request({ | |
| url: 'bestandje.ofzo', | |
| // method: 'POST', | |
| params: { | |
| a: a, | |
| b: b | |
| }, | |
| success: function(xhr){ | |
| var jResponse = Ext.decode(xhr.responseText); | |
| if (jResponse.success === true) { |
| store.load({ | |
| params: { | |
| 'param1':waardel, | |
| 'param2': waarde2 | |
| }, | |
| callback:function(records, operation, success){ | |
| msg.hide(); | |
| if(success === true){ | |
| if(records.length === 0){ | |
| Ext.Msg.alert('Resultaat', 'Nix'); |