- Install MySQL Server 8.0.16
- Install Complete MySQL Connector.Net x86 8.0.16
- Install this custom repacked VSIX MySQL Visual Studio
- If after installing MySQL Visual Studio Plugin it shows warning that failed to execute comamnd
devenv /updateconfiguration, then manually execute that command in Developer Command Prompt for Visual Studio 20xx with run as administrator. - Run this command
Install-Package EntityFrameworkin Visual Studio Nuget package manager console - Manage Nuget Packages > Search Mysql > install Mysql.Data v8.0.16
- Manage Nuget Packages > Search Mysql > install Mysql.Data.Entity v6.10.8
- Manage Nuget Packages > Search Mysql.Data.EntityFramework > install Mysql.Data.EntityFramework v8.0.16
This file contains hidden or 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
| public string GetVirtualPath(VirtualPathContext context) | |
| { | |
| foreach (var matcherParameter in _matcher.Template.Parameters) | |
| { | |
| context.Values.Remove(matcherParameter.Name); // make sure none of the domain-placeholders are appended as query string parameters | |
| } | |
| return _innerRoute.GetVirtualPath(context); | |
| } |
This file contains hidden or 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
| <?php $favicon_path = "/docroot/img/ico/"; ?> | |
| <!-- Default --> | |
| <link rel="shortcut icon" href="<?php echo $favicon_path; ?>favicon.ico"/> | |
| <!-- For IE6+ --> | |
| <link rel="shortcut icon" href="<?php echo $favicon_path; ?><?php echo $favicon_path; ?>favicon.ico" type="image/x-icon"> | |
| <!-- For IE6+ --> | |
| <link rel="shortcut icon" href="<?php echo $favicon_path; ?>favicon.ico"> |
- Install MySQL Server 8.0.16
- Install Complete MySQL Connector.Net x86 8.0.16
- Install this custom repacked VSIX MySQL Visual Studio
- If after installing MySQL Visual Studio Plugin it shows warning that failed to execute comamnd
devenv /updateconfiguration, then manually execute that command in Developer Command Prompt for Visual Studio 20xx with run as administrator. - Run this command
Install-Package EntityFrameworkin Visual Studio Nuget package manager console - Manage Nuget Packages > Search Mysql > install Mysql.Data v8.0.16
- Manage Nuget Packages > Search Mysql > install Mysql.Data.Entity v6.10.8
- Manage Nuget Packages > Search Mysql.Data.EntityFramework > install Mysql.Data.EntityFramework v8.0.16
This file contains hidden or 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, { Component } from 'react'; | |
| import { WebView, BackHandler } from 'react-native'; | |
| export default class WebViewMoviezSpace extends Component { | |
| constructor(props) { | |
| super(props); | |
| this.WEBVIEW_REF = React.createRef(); | |
| } | |
| componentDidMount() { |
This file contains hidden or 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
| S3 Alternatives | |
| --------------- | |
| - https://wasabi.com | |
| - https://www.exoscale.com | |
| - https://www.vultr.com | |
| - https://www.arubacloud.com/ | |
| - https://www.digitalocean.com | |
| - https://min.io/ | |
| - http://leo-project.net/ |
This file contains hidden or 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
| # To get the `action` prop: | |
| # | |
| # 1. Go to your dashboard on mailchimp.com and navigate | |
| # to Lists > Signup Forms > Embedded Forms. | |
| # | |
| # 2. Copy the `<form>` action from the generated HTML code. | |
| # | |
| # 3. Pass that into the component via the prop, like so: | |
| # | |
| # <mailchimp-subscribe |
This file contains hidden or 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 Constants from "expo-constants"; | |
| import * as Notifications from "expo-notifications"; | |
| import * as Permissions from "expo-permissions"; | |
| import React, { useState, useEffect, useRef } from "react"; | |
| import { Text, View, Button, Platform } from "react-native"; | |
| Notifications.setNotificationHandler({ | |
| handleNotification: async () => ({ | |
| shouldShowAlert: true, | |
| shouldPlaySound: false, |
This file contains hidden or 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 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| final ScrollController _scrollController = ScrollController(); | |
| @override |