Skip to content

Instantly share code, notes, and snippets.

<?php
date_default_timezone_set('Europe/London'); // Set this to your local timezone - http://www.php.net/manual/en/timezones.php
/**
* The root directory where the repos live.
*
* @var string
*/
$root_dir = '/your/root/dir/';
<?php
date_default_timezone_set('Europe/London'); // Set this to your local timezone - http://www.php.net/manual/en/timezones.php
/**
* The root directory where the repos live.
*
* @var string
*/
$root_dir = '/your/root/dir/';
@arindambiswas
arindambiswas / keybase.md
Created November 25, 2016 14:18
keybase.md

Keybase proof

I hereby claim:

  • I am arindambiswas on github.
  • I am arindambiswas (https://keybase.io/arindambiswas) on keybase.
  • I have a public key whose fingerprint is 7163 5D26 A0B2 01B0 536B 2371 C505 2563 7FF4 881F

To claim this, I am signing this object:

@arindambiswas
arindambiswas / main.dart
Created August 16, 2019 11:07
Dart : Constructor shorthand
void main() {
print('START : main');
Person someone = new Person('John', 'Doe');
print('${someone.fname} ${someone.lname}');
print('END : main');
}
class Person {