Responsive. Used as a helper tool for this post:
-> Just click the dots to choose a new angle. Do you find it useful?
| // (c) 2014 Nate Cook, licensed under the MIT license | |
| // | |
| // Fisher-Yates shuffle as top-level functions and array extension methods | |
| /// Shuffle the elements of `list`. | |
| func shuffle<C: MutableCollectionType where C.Index == Int>(inout list: C) { | |
| let count = countElements(list) | |
| for i in 0..<(count - 1) { | |
| let j = Int(arc4random_uniform(UInt32(count - i))) + i | |
| swap(&list[i], &list[j]) |
| abbr[title]:after | |
| { | |
| content: " (" attr(title) ")"; | |
| } | |
| @media screen and (min-width: 1025px) | |
| { | |
| abbr[title] | |
| { | |
| border-bottom: 1px dashed #ADADAD; |
| <script> | |
| $(document).bind("mobileinit", function() { | |
| $.mobile.defaultPageTransition = 'none'; | |
| $.mobile.defaultDialogTransition = "none"; | |
| }); | |
| </script> |
| <?php | |
| // Clean argument values | |
| $phpStormRunner = null; | |
| $cleanedArgv = array(); | |
| foreach ($_SERVER['argv'] as $key => $value) { | |
| if (strpos($value, 'ide-phpunit.php') === false) { | |
| $cleanedArgv[] = $value; | |
| } else { | |
| $phpStormRunner = $value; | |
| } |
Responsive. Used as a helper tool for this post:
-> Just click the dots to choose a new angle. Do you find it useful?
| *&---------------------------------------------------------------------* | |
| *& Report Z_TRQ_GET_PARTY | |
| *& | |
| *&---------------------------------------------------------------------* | |
| *& | |
| *& | |
| *&---------------------------------------------------------------------* | |
| REPORT Z_TRQ_GET_PARTY. |
| *&---------------------------------------------------------------------* | |
| *& Report Z_TIMSTAMP_DEMO | |
| *& | |
| *&---------------------------------------------------------------------* | |
| *& Demostrate how to get timestamp in ABAP and setup timezone | |
| *& | |
| *&---------------------------------------------------------------------* | |
| REPORT Z_TIMSTAMP_DEMO. |
| zend_extension="/usr/lib/php5/20090626/xdebug.so" | |
| xdebug.remote_enable=1 | |
| xdebug.remote_handler=dbgp | |
| xdebug.remote_mode=req | |
| xdebug.remote_host=localhost | |
| xdebug.remote_port=9000 |
| <VirtualHost *:80> | |
| ServerAdmin email@gmail.com | |
| ServerName project.local | |
| DocumentRoot /home/uname/Documents/GitProj | |
| <Directory /home/uname/Documents/GitProj/> | |
| Options Indexes FollowSymLinks MultiViews | |
| AllowOverride all | |
| Order allow,deny | |
| allow from all |
| *&---------------------------------------------------------------------* | |
| *& Report Z_DEMO_STRING | |
| *&---------------------------------------------------------------------* | |
| REPORT Z_DEMO_STRING. | |
| data: | |
| lv_length type i, | |
| lv_string type char20. |