This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Fragment, useRef } from 'react' | |
import DatePicker from 'react-native-datepicker'; | |
import { TextField, FilledTextField, OutlinedTextField, } from 'react-native-material-textfield'; | |
export default function DatePickerField({ label, onBlur, error, onChange, value, style, textFieldProps, datePickerProps, ...props }) { | |
let dateTextFieldRef = useRef(null); | |
let datePickerRef = useRef(null); | |
const triggerDatePickerClick = () => { | |
datePickerRef.onPressDate(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var userAccount = '<userNameOrCompanyAccountName>'; | |
var repoName = '<repoName>'; | |
var branches = ['<list of branches to delete>']; | |
for (var i = 0; i < branches.length; i++) { | |
$.ajax({ | |
method: 'DELETE', | |
url: 'https://bitbucket.org/!api/1.0/repositories/' + userAccount + '/' + repoName + '/_branch/' + branches[i] | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;SQL Server 2014 Configuration File | |
[OPTIONS] | |
; Specifies a Setup work flow, like INSTALL, UNINSTALL, or UPGRADE. This is a required parameter. | |
ACTION="Install" | |
; Use the /ENU parameter to install the English version of SQL Server on your localized Windows operating system. | |
ENU="True" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install BoxStarter first from it's website http://boxstarter.org/ | |
# then execute this batch script or paste commands in a power shell window with elevated permissions(run as administrator) | |
set-executionpolicy remotesigned | |
Import-Module Boxstarter.WinConfig | |
# Explorer options | |
Set-ExplorerOptions -showHidenFilesFoldersDrives -showFileExtensions | |
#Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@* Generator: Template TypeVisibility: Internal *@ | |
@using System.Globalization | |
@using System.IO | |
@using System.Web | |
@using Elmah | |
@inherits WebTemplateBase | |
@{ | |
var basePageName = Request.ServerVariables["URL"]; | |
// |