Skip to content

Instantly share code, notes, and snippets.

View akrisiun's full-sized avatar

Andrius K akrisiun

View GitHub Profile
<div id="app">
<div id="table-wrapper"
class="ui container">
<h2><strong>&lt;Vuetable-2&gt;</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");
@akrisiun
akrisiun / nodeapp.sh
Created May 25, 2020 11:24 — forked from lowol/nodeapp.sh
init.d script for node.js
#!/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"
@akrisiun
akrisiun / Install_gitflow_on_Windows.md
Created February 17, 2020 12:56 — forked from ilyar/Install_gitflow_on_Windows.md
Install gitflow on Windows

Install gitflow on Windows

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 folder c:\bin\GnuWin32.

Clone the git-flow sources from GitHub:

$ git clone --recursive https://github.com/nvie/gitflow.git

IpcChannel Class

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

Usage WPF

for IIS

 <system.webServer>
 <rewrite>
 <rules>
 <rule name="React Routes" stopProcessing="true">
 <match url=".*" />
 <conditions logicalGrouping="MatchAll">
 <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
 
// 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 _;
@akrisiun
akrisiun / tips_lsof.sh
Last active March 10, 2025 19:09 — forked from tianchaijz/tips_lsof.sh
Shell command lsof : see open files and ports; Selection is OR by default, use -a for AND; Tested on OSX
# 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