The following code will produce code-splitting in Webpack, which means that the source code will be split into several files that will be loaded async at runtime.. More info here;
import('./some-module').then((SomeModule) => {});
namespace Promise.CommandLine | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
class Program | |
{ | |
static void Main(string[] args) |
# 1. Change owner of /var/www/html directory to apache user, here: www-data. | |
sudo chown -R www-data:www-data /var/www/html | |
# 2. Allow Group to edit. | |
sudo chmod -R 775 /var/www/html | |
# 3. Add yourself to apache group(www-data). | |
sudo usermod -a -G www-data ${USER} | |
# 4. Reboot to effect the permissions. |
The following code will produce code-splitting in Webpack, which means that the source code will be split into several files that will be loaded async at runtime.. More info here;
import('./some-module').then((SomeModule) => {});
#!/bin/bash | |
[email protected] | |
KEY=11111111111111111111111111 | |
ZONE_ID=2222222222222222222222222 | |
curl -X GET https://api.cloudflare.com/client/v4/zones/${ZONE_ID}/dns_records?per_page=500 \ | |
-H "X-Auth-Email: ${EMAIL}" \ | |
-H "X-Auth-Key: ${KEY}" \ | |
-H "Content-Type: application/json" | jq .result[].id | tr -d '"' | ( |
#!/bin/bash | |
devices=(`adb devices | grep -v devices | grep device | cut -f 1`) | |
devicesCount=${#devices[@]} | |
devicesToUse=() | |
if [ $devicesCount -eq 0 ] | |
then | |
echo "No attached devices."; | |
elif [ $devicesCount -eq 1 ] |
#!/bin/bash | |
# Script adb+ | |
# Usage | |
# You can run any command adb provides on all your currently connected devices | |
# ./adb+ <command> is the equivalent of ./adb -s <serial number> <command> | |
# | |
# Examples | |
# ./adb+ version | |
# ./adb+ install apidemo.apk | |
# ./adb+ uninstall com.example.android.apis |
#!/bin/bash | |
# NB: First install nscd with sudo apt-get install nscd | |
# run this command to flush dns cache: | |
sudo /etc/init.d/dns-clean restart | |
# or use: | |
sudo /etc/init.d/networking force-reload | |
# Flush nscd dns cache: | |
sudo /etc/init.d/nscd restart |
#!/bin/bash | |
## Bash Script to clear cached memory on (Ubuntu/Debian) Linux | |
## By Philipp Klaus | |
## see <http://blog.philippklaus.de/2011/02/clear-cached-memory-on-ubuntu/> | |
if [ "$(whoami)" != "root" ] | |
then | |
echo "You have to run this script as Superuser!" | |
exit 1 | |
fi |
using System; | |
using System.IO; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Http; | |
using Microsoft.AspNetCore.Http.Internal; | |
using Microsoft.IO; | |
// https://exceptionnotfound.net/using-middleware-to-log-requests-and-responses-in-asp-net-core/ | |
// https://gist.github.com/elanderson/c50b2107de8ee2ed856353dfed9168a2 |
/// <summary> | |
/// https://stackoverflow.com/a/1374644 | |
/// </summary> | |
/// <param name="email"></param> | |
/// <returns></returns> | |
public static bool IsValidEmail(this string email) | |
{ | |
try | |
{ | |
var addr = new System.Net.Mail.MailAddress(email); |