- Go to: 'System Preferences' >> 'MySQL' and stop MySQL
OR,
- sudo /usr/local/mysql/support-files/mysql.server start
- sudo /usr/local/mysql/support-files/mysql.server stop
<script>console.log({{ product | json }});</script> |
// this code assumes a credit card is valid in the current month | |
var validateDate = function () { | |
var creditCardDate = moment($scope.data.expirationYear+$scope.data.expirationMonth, "YYMM"); | |
var today = moment(); | |
return creditCardDate.isValid() && (today < creditCardDate.add(1, 'months')); | |
} |
// | |
// UITextViewPlaceholder.swift | |
// TextViewPlaceholder | |
// | |
// Copyright (c) 2017 Tijme Gommers <[email protected]> | |
// | |
// Permission is hereby granted, free of charge, to any person obtaining a copy | |
// of this software and associated documentation files (the "Software"), to deal | |
// in the Software without restriction, including without limitation the rights | |
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
handleDrop = files => { | |
// Push all the axios request promise into a single array | |
const uploaders = files.map(file => { | |
// Initial FormData | |
const formData = new FormData(); | |
formData.append("file", file); | |
formData.append("tags", `codeinfuse, medium, gist`); | |
formData.append("upload_preset", "pvhilzh7"); // Replace the preset name with your own | |
formData.append("api_key", "1234567"); // Replace API key with your own Cloudinary key | |
formData.append("timestamp", (Date.now() / 1000) | 0); |
################################################################### | |
## Compile and install TensorFlow 1.4 (CPU only) on Ubuntu 16.04 ## | |
################################################################### | |
# Install Bazel | |
sudo apt-get install openjdk-8-jdk -y | |
echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list | |
curl https://bazel.build/bazel-release.pub.gpg | sudo apt-key add - | |
sudo apt-get update -y && sudo apt-get install bazel -y | |
sudo apt-get upgrade bazel -y |
const axios = require('axios') | |
/* ... */ | |
const params = new URLSearchParams() | |
params.append('name', 'Akexorcist') | |
params.append('age', '28') | |
params.append('position', 'Android Developer') | |
params.append('description', 'birthdate=25-12-1989&favourite=coding%20coding%20and%20coding&company=Nextzy%20Technologies&website=http://www.akexorcist.com/') | |
params.append('awesome', true) |
import Foundation | |
import SwiftyJSON | |
import Alamofire | |
enum NetworkError: Error { | |
case failure | |
case success | |
} | |
class APIRequestFetcher { |
import UIKit | |
import SwiftyJSON | |
import Alamofire | |
import SafariServices | |
final class SearchResultsTableViewController: UITableViewController { | |
private var searchResults = [JSON]() { | |
didSet { | |
tableView.reloadData() |
Charts are from different sources and thus colors are inconsistent, please carefully read the chart's legends.
Like this? Check React Native vs Flutter: https://gist.github.com/tkrotoff/93f5278a4e8df7e5f6928eff98684979