nope.php:
<?php
echo "some undefined variable" + $undefined_shit;
echo "please don't print";php nope.phpnope.php:
<?php
echo "some undefined variable" + $undefined_shit;
echo "please don't print";php nope.php| import android.content.Context; | |
| import android.content.Intent; | |
| import android.support.v4.content.WakefulBroadcastReceiver; | |
| import android.util.Log; | |
| /** | |
| * This is called whenever app receives notification | |
| * in background/foreground state so you can | |
| * apply logic for background task, but still Firebase notification | |
| * will be shown in notification tray |
| APP_ENV=testing | |
| APP_KEY=SomeRandomString | |
| DB_CONNECTION=testing | |
| DB_TEST_USERNAME=root | |
| DB_TEST_PASSWORD= | |
| CACHE_DRIVER=array | |
| SESSION_DRIVER=array | |
| QUEUE_DRIVER=sync |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
| //HELLOW JOB | |
| //* The IEBGENER program copies data | |
| //S1 EXEC PGM=IEBGENER | |
| //* Data to be copied | |
| //SYSUT1 DD * | |
| Hello, world! | |
| //* Tells IEBGENER to copy data to the system output | |
| //SYSUT2 DD SYSOUT=A | |
| //SYSPRINT DD SYSOUT=A | |
| //SYSIN DD DUMMY |
| # Set download URLs | |
| $git_download_url = "http://msysgit.googlecode.com/files/PortableGit-1.7.3.1-preview20101002.7z" | |
| $7zip_download_url = "http://downloads.sourceforge.net/sevenzip/7za465.zip" | |
| # Create Software folder | |
| $software_folder = "$env:SystemDrive\software" | |
| mkdir -force $software_folder | |
| # Create temp folder | |
| $temp_folder = "$env:userprofile\temp\install_git" |
| //+ Jonas Raoni Soares Silva | |
| //@ http://jsfromhell.com/geral/utf-8 [v1.0] | |
| UTF8 = { | |
| encode: function(s){ | |
| for(var c, i = -1, l = (s = s.split("")).length, o = String.fromCharCode; ++i < l; | |
| s[i] = (c = s[i].charCodeAt(0)) >= 127 ? o(0xc0 | (c >>> 6)) + o(0x80 | (c & 0x3f)) : s[i] | |
| ); | |
| return s.join(""); | |
| }, |