One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
#!/bin/bash | |
# File to save the list of applications | |
app_list="./installed_apps.txt" | |
# Create file to save the list of applications | |
touch $app_list | |
# Extract the list of applications | |
ls /Applications > $app_list |
Ip_address/32 means 1 ip address You should use it for your refering you own ip or single ip eg 103.211.13.37/32
Range of ip can be calculated as
- ip_address/range_number (x) = 32- range_number Total number of ip address = 2^x
APP_NAME=Laravel | |
APP_ENV=local | |
APP_KEY= | |
APP_DEBUG=true | |
APP_URL=http://localhost | |
LOG_CHANNEL=stack | |
DB_CONNECTION=mysql | |
DB_HOST=127.0.0.1 |
import 'package:flutter/material.dart'; | |
import './product_manager.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
@override |
package com.javamultiplex.datetime; | |
import java.text.DateFormat; | |
import java.text.ParseException; | |
import java.text.SimpleDateFormat; | |
import java.util.Calendar; | |
import java.util.Date; | |
import java.util.Scanner; | |
/** |
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<color name="md_red50">#ffffebee</color> | |
<color name="md_red100">#ffffcdd2</color> | |
<color name="md_red200">#ffef9a9a</color> | |
<color name="md_red300">#ffe57373</color> | |
<color name="md_red400">#ffef5350</color> | |
<color name="md_red500">#fff44336</color> | |
<color name="md_red600">#ffe53935</color> |
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- google's material design colours from | |
http://www.google.com/design/spec/style/color.html#color-ui-color-palette --> | |
<!--reds--> | |
<color name="md_red_50">#FFEBEE</color> | |
<color name="md_red_100">#FFCDD2</color> | |
<color name="md_red_200">#EF9A9A</color> |
This Gist give some tips in order to remove AWS Glacier Vault
with AWS CLI (ie. https://aws.amazon.com/en/cli/).
$ aws glacier initiate-job --job-parameters '{"Type": "inventory-retrieval"}' --vault-name YOUR_VAULT_NAME --account-id YOUR_ACCOUNT_ID --region YOUR_REGION