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
///https://docs.flutter.dev/cookbook/effects/drag-a-widget | |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp( | |
const MaterialApp( | |
home: ExampleDragAndDrop(), | |
debugShowCheckedModeBanner: false, | |
), |
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
///https://dartpad.dev/?id=c5cd30bc8f043796078ce0da5d0263f9 | |
///https://github.com/vicradon/shopping-cart-app | |
import 'package:flutter/material.dart'; | |
import 'dart:async'; | |
class CartItemsBloc { | |
/// The [cartStreamController] is an object of the StreamController class | |
/// .broadcast enables the stream to be read in multiple screens of our app | |
final cartStreamController = StreamController.broadcast(); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="content-language" content="en" /> | |
<meta http-equiv="content-script-type" content="text/javascript" /> | |
<meta http-equiv="imagetoolbar" content="no"/> | |
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
# Execute this from your Symfony2 path | |
php bin/console cache:clear --env=prod --no-debug |
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
/* | |
Reads a CSV file in chunks of 10 lines at a time | |
and returns them in an array of objects for processing. | |
Assumes the first line of the CSV file has headings | |
that will be used as the object name for the item you are | |
processing. i.e. the heading is CurrentURL then refer to | |
$item->CurrentURL |
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
<?php | |
$servername = "localhost"; | |
$username = "site_wp_bk_1812"; | |
$password = ""; | |
$dbname = "site_wp_bk_1812"; | |
// Create connection | |
$conn = new mysqli($servername, $username, $password, $dbname); | |
// Check connection | |
if ($conn->connect_error) { | |
die("Connection failed: " . $conn->connect_error); |
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
# Starter pipeline | |
# Start with a minimal pipeline that you can customize to build and deploy your code. | |
# Add steps that build, run tests, deploy, and more: | |
# https://aka.ms/yaml | |
#1 day Friday, December 20, 2019 12:00 PM | |
#trigger: | |
#- master | |
name: "Name run run 24h at 00AM" |
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
<?php | |
session_start(); | |
$errorMsg = ""; | |
$validUser = false; | |
if(isset($_SESSION['firstlogin'])) { | |
$validUser = $_SESSION["firstlogin"] === true; | |
} | |
//$pass_has = password_hash("123456", PASSWORD_DEFAULT); | |
//echo $pass_has; //get password first |
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
<?php | |
if(isset($_POST["sub"])) { | |
$pass_has = password_hash($_POST['firstpassword'], PASSWORD_DEFAULT); | |
echo $pass_has; //get password first | |
// die; | |
} | |
?> |
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
<?php | |
session_start(); | |
$errorMsg = ""; | |
$validUser = false; | |
if(isset($_SESSION['firstlogin'])) { | |
$validUser = $_SESSION["firstlogin"] === true; | |
} | |
//$pass_has = password_hash("123456", PASSWORD_DEFAULT); | |
//echo $pass_has; //get password first |
NewerOlder