https://codepen.io/akrisiun/pen/gOPQmae
<div id="app"> | |
<div id="table-wrapper" | |
class="ui container"> | |
<h2><strong><Vuetable-2></strong> with Bootstrap 3</h2> | |
<vuetable ref="vuetable" | |
api-url="https://vuetable.ratiw.net/api/users" | |
:fields="fields" | |
:sort-order="sortOrder" | |
:css="css.table" | |
pagination-path="" |
promise1 = function() {
return new Promise(function(resolve, reject) {
setTimeout(resolve, 400, "Done");
});
}
(async() => {
try {
let res = await promise1("some file");
#!/bin/bash | |
# | |
# nodejs - Startup script for node.js server | |
# /etc/init.d/app1 | |
# | |
# chkconfig: 35 99 99 | |
# description: Node.js node /apps/app1/server.js | |
rootdir="/var/www/apps/app1" | |
server="$rootdir/server.js" |
Download and install Git from MSysGit or Git SCM.
Download and install getopt.exe
from the util-linux package into C:\Program Files\Git\bin
. (Only getopt.exe
, the others util-linux files are not used). Also install libintl3.dll
and libiconv2.dll
from the Dependencies packages (libintl and libiconv), into the same directory.
Suppose that Git is installed in the folder
c:\bin\git
and GnuWin32 in the folderc:\bin\GnuWin32
.
Clone the git-flow sources from GitHub:
$ git clone --recursive https://github.com/nvie/gitflow.git
System.Runtime.Remoting.Channels.Ipc Assembly: System.Runtime.Remoting.dll
Provides a channel implementation that uses the IPC protocol to transmit messages.
public class IpcChannel : System.Runtime.Remoting.Channels.IChannelReceiver, System.Runtime.Remoting.Channels.IChannelSender, System.Runtime.Remoting.Channels.ISecurableChannel
// Modal.vue
<template>
<div class="modal">
<slot name="header"> </slot>
<slot> </slot>
<slot name="footer"> </slot>
</div>
</template>
site.conf
listen 2376;
access_log /dev/stdout;
error_log /dev/stdout info;
ssl on;
server_name _;
# filter LISTEN - faster variant | |
lsof -anP -i4 -sTCP:LISTEN | |
# exclude UDP | |
lsof -anP -i4 -sTCP:LISTEN | grep TCP | |
# lsof with ports sort: | |
lsof -anP -i4 -sTCP:LISTEN | grep -v UDP | awk {'printf("%18s %-12s %8s %s %s %s\n", $9,$1,$2,$4,$3,$10)'} | sort -u | |
# docker-ps |