Firefox 57, also known as Quantum is a major upgrade for Firefox web browser. Here are initial screens of this new web browser compared to previous version of Firefox 56.
Tools menu
Toolbar
Preferences
Speedtest
Speedtest Ranking
Looking at alternative computer software solutions for a variety of reasons. This includes price, computer security, virus prevention and reliability. Here are my notes and great that if it helps you, otherwise please understand what you are doing and not follow blindly. All works expressed are my own and does not necessarily express the products or organisations mentioned here.
1: private void deleteConfirmation(String title){
2: AlertDialog.Builder alert = new AlertDialog.Builder(getContext());
3: alert.setTitle("Delete"); // Declare the title
4: alert.setMessage("Are you sure you want to delete \n"+title+"?"); // Set message below title
5: alert.setIcon(R.mipmap.ic_delete); // Set the icon at top left
6: alert.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() {
7: public void onClick(DialogInterface dialog, int which) {
8: // continue with delete
9: MainActivity.confirmDelete=true;
10: delete();
11: }
12: });
13: alert.setNegativeButton(android.R.string.no, new DialogInterface.OnClickListener() {
14: public void onClick(DialogInterface dialog, int which) {
15: // close dialog
16: }
17: });
18: MainActivity.confirmDelete=false;
19: alert.show();
20: }
# Initialise Git repository
$ git init
# Identify status and which files are being track or untracked.
$ git status
# Add all files to the repository
$ git add .
# Identify files are being track as staged
$ git status
# Remove a file from list of staged files
$ git rm --cached somefile.txt.
# Commit files to repository
$ git commit -m "Place comments here"
$ git status
# Checkout a file from the repository
$ git checkout programming.txt
$ git status
Compare | Dropbox | gDrive | OwnCloud |
---|---|---|---|
Storage (FREE) | 2GB. Offers available up to 16GB | 15GB. Include Google accounts like Gmail. | Unlimited, provide your own |
Availability | Integration with MS O365, OneLogin, 1Password, MS Azure, Xero. available Offline | Pretty much everything works with Google and Google Realtime API. Available offline | Unlimited. Not available offline |
Features (General) |
|
| Web based. 3rd party apps are available for wide variety of devices.
|
$ php artisan --help
$ php artisan help serve
$ php artisan help migrate
![]() |
Which components should I use? |
Smart Switch update software for Galaxy S5 |
Smart Switch CAUTION messages |
$ sudo yum install composer
$ composer -V
$ sudo yum install composer
$ composer -V
$> composer create-project --prefer-dist laravel/laravel hello
Listing in hello folder. |
$ cd hello
$ php artisan serve
$ php artisan serve --host= tboxmy.blogspot.com --port=8000
1: <!DOCTYPE html>
2: <html>
3: <head>
4: <title>Laravel</title>
5: </head>
6: <body>
7: Hello World!
8: </body>
9: </html>
1: Route::get('/hello', function () {
2: return view('helloworld');
3: });
$customers = Customer::all();
use App\Customer;
class CustomerController extends Controller
{
public function index()
{
//
$customers = Customer::all();
return View('customers.index')->with('cust', $customers);
}
public function show($id)
{
//
$customer = Customer::find($id);
return view('customers.show', array('customer' => $customer));
}
<!DOCTYPE html>
<?php
// index.blade.php
?>
<html>
<head>
<title>Customer index page</title>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
</head>
<body>
Customers
<br/>
@foreach($cust as $key => $value)
<table>
<tr>
<td>{{ $value->id }}</td>
<td>{{ $value->cname }}</td>
<td>{{ $value->phone }}</td>
</tr>
@endforeach
</table>
</body>
<!DOCTYPE html>
<?php
// show.blade.php
?>
<html>
<head>
<title>Customer</title>
</head>
<body>
<?php
if ($customer == null)
{
print "No data";
return;
}
?>
<h1>Customer {{ $customer->id }}</h1>
<ul>
<li>Name: {{ $customer->cname }}</li>
<li>Phone: {{ $customer->phone }}</li>
<li>Last update: {{ $customer->last_update }}</li>
</ul>
</body>
</html>
$> composer -V
$> php composer.phar
This should display the version number of composer. $> php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
$> php -r "if (hash_file('SHA384', 'composer-setup.php') === 'aa96f26c2b67226a324c27919f1eb05f21c248b987e6195cad9690d5c1ff713d53020a02ac8c217dbf90a7eacc9d141d') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
$> php composer-setup.php
$> php -r "unlink('composer-setup.php');"
$> composer -V
$> composer init
$> composer create-project --prefer-dist laravel/laravel hello
$> cd hello
$> php artisan serve
<!DOCTYPE html>
<html>
<head>
<title>Laravel</title>
</head>
<body>
Hello World!
</body>
</html>
Route::get('/hello', function () {
return view('helloworld');
});
Route::get('/hello2', function () {
return 'Hello World 2!';
});