Help with SQL commands to interact with a MySQL database
- Mac /usr/local/mysql/bin
- Windows /Program Files/MySQL/MySQL version/bin
- Xampp /xampp/mysql/bin
| :invalid { | |
| box-shadow: none; | |
| } | |
| :-moz-submit-invalid { | |
| box-shadow: none; | |
| } | |
| :-moz-ui-invalid { | |
| box-shadow:none; |
| //== Media queries breakpoints | |
| // | |
| //## Define the breakpoints at which your layout will change, adapting to different screen sizes. | |
| // Extra small screen / phone | |
| //** Deprecated `$screen-xs` as of v3.0.1 | |
| $screen-xs: 480px !default | |
| //** Deprecated `$screen-xs-min` as of v3.2.0 | |
| $screen-xs-min: $screen-xs !default | |
| //** Deprecated `$screen-phone` as of v3.0.1 |
| import 'dart:convert'; | |
| import 'dart:html'; | |
| void main() { | |
| _getUsersList(); | |
| } | |
| _getUsersList() { | |
| final url = 'https://jsonplaceholder.typicode.com/users'; | |
| Future<HttpRequest> request = HttpRequest.request(url); |
| platform :ios, '9.1' | |
| abstract_target 'Foo' do | |
| # RN related | |
| pod 'React', :path => '../node_modules/react-native', :subspecs => [ | |
| 'Core', | |
| 'CxxBridge', | |
| 'RCTAnimation', | |
| 'RCTBlob', | |
| 'RCTText', |
| /** | |
| * Filters an array of objects with multiple criteria. | |
| * | |
| * @param {Array} array: the array to filter | |
| * @param {Object} filters: an object with the filter criteria as the property names | |
| * @return {Array} | |
| */ | |
| function multiFilter(array, filters) { | |
| const filterKeys = Object.keys(filters); | |
| // filters all elements passing the criteria |
| import React, { PureComponent } from 'react' | |
| import { Text, View, StyleSheet } from 'react-native' | |
| import moment from 'moment' | |
| import { LIGHT_GRAY, WHITE, BLACK } from '../../styles/colors' | |
| class Timer extends PureComponent { | |
| state = { | |
| remainingTime: 0, | |
| isTimerVisible: true | |
| } |