A day starts at 00:00:00 A day ends at 23:59:59.99
- "YYYY-MM-DDTHH:mm:sss.sssZ"
- Z means the date is in UTC
new Date('2019-06-11')
=> Creates date in UTC
### Keybase proof | |
I hereby claim: | |
* I am rosanarufer on github. | |
* I am rosanarufer (https://keybase.io/rosanarufer) on keybase. | |
* I have a public key ASDdgB3vfyECu2cHaWjzD-yIaomh9RycGQMO4OwnsXQSQQo | |
To claim this, I am signing this object: |
In your command-line run the following commands:
brew doctor
brew update
class Email: | |
@classmethod | |
def from_text(cls, address): | |
if '@' not in address: | |
raise ValueError("Eamil address must contain '@'") | |
local_part, _, domain_part = address.partition('@') | |
return cls(local_part, domain_part) | |
def __init__(self, local_part, domain_part): |
function *dameNumeroFibonacci() { | |
let a = 0 | |
let b = 1 | |
while(true) { | |
let c = a + b | |
a = b | |
b = c | |
yield b | |
} |
Asistimos Alicia, Alexandra, Marta y Rosana. Por su simplicidad, decidimos comenzar a implementar este diseño que tenemos empezado en nuestro github del grupo: https://github.com/AdaLoveDev/emojisite.
Nos surgieron dos preguntas
<?php | |
namespace Craft; | |
class BusinessLogicVariable | |
{ | |
public function getRequestedLocaleId() | |
{ | |
// Return the current locale ID if any path is requested | |
if (craft()->request->getUrl() !== '/') { | |
return craft()->locale->id; |
namespace settlementDrafts { | |
export class DOMQueryingService { | |
public findFirstEnabledElement(form: any): any { | |
return _.find(form, (element: any) => { | |
return this.isFocusableElement(element) && this.isEditableElement(element); | |
}); | |
} | |
private isFocusableElement(element: any): boolean { |
var tooltipFactory = $uibTooltipProvider.$get[$uibTooltipProvider.$get.length - 1]; | |
// decorate the tooltip getter | |
$uibTooltipProvider.$get[$uibTooltipProvider.$get.length - 1] = | |
function ( $window, $compile, $timeout, $document, $uibPosition, $interpolate, $rootScope, $parse, $$stackedMap ) { | |
// for touch devices, don"t return tooltips | |
if ("ontouchstart" in $window) { | |
return function () { | |
return { | |
compile: function () { } |