The following fonts fully support UniBal script.
Preview
| $("#tags").autocomplete({ | |
| source : availableTags, | |
| select : function(event, ui) { | |
| itemTitleDesc = split(ui.item.value); | |
| if (is_array(itemTitleDesc)) { | |
| itemTitle = itemTitleDesc[0]; | |
| if (itemTitleDesc.length > 1) { | |
| itemDesc = itemTitleDesc[1]; | |
| itemDesc = itemDesc.replace(")", ""); | |
| } |
| #!/bin/bash | |
| # This detects the connected display | |
| # xrandr | grep "\sconnected" | |
| DISPLAY_ID="eDP-1" | |
| xrandr --newmode "1280x720_60.00" 74.48 1280 1336 1472 1664 720 721 724 746 | |
| xrandr --addmode $DISPLAY_ID 1280x720_60.00 | |
| xrandr --output $DISPLAY_ID --mode 1280x720_60.00 |
The following fonts fully support UniBal script.
Preview
| <% | |
| SUB reacExcelFile(fileName) | |
| 'initialize variables | |
| Dim objConn, strSQL | |
| Dim x | |
| Set objConn = Server.CreateObject("ADODB.Connection") | |
| objConn.Open "DRIVER={Microsoft Excel Driver (*.xls)}; IMEX=1; HDR=NO; "&_ | |
| "Excel 8.0; DBQ=" & Server.MapPath(fileName) & "; " | |
| strSQL = "SELECT * FROM A1:G1000" |
| 0x2717 | |
| 0x0bb4 |
| /*global module:false*/ | |
| module.exports = function (grunt) { | |
| require('jit-grunt')(grunt); | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' | |
| + '<%= grunt.template.today("yyyy-mm-dd") %>\n' | |
| + '<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' |
| =============== | |
| Unity generated | |
| =============== | |
| Temp/ | |
| Library/ | |
| ===================================== | |
| Visual Studio / MonoDevelop generated | |
| ===================================== | |
| ExportedObj/ |
| <?php | |
| $time_stamp=time(); | |
| /* | |
| * Set $archive and $directory path accordinging to your host | |
| */ | |
| $archive = "../tmp/backup_{$time_stamp}.tar"; | |
| $directory = "../html/"; | |
| print "starting..."; | |
| exec( "tar cf $archive $directory 2>&1 ",$retArr, $retVal); |
| /* | |
| * Append this to the end of your application/config.php | |
| * @see http://stackoverflow.com/questions/3700626/namespace-in-php-codeigniter-framework#21858556 | |
| */ | |
| spl_autoload_extensions('.php'); // Only Autoload PHP Files | |
| spl_autoload_register(function($classname) { | |
| if (strpos($classname, '\\') !== false) { |
| (.*)\{(.|\n)*?} | |
| Reference: http://stackoverflow.com/questions/159118/how-do-i-match-any-character-across-multiple-lines-in-a-regular-expression |