1. Install nginx
2. Install minio
3. Install mc client
$ mc mb myminio/static
Bucket created successfully ‘myminio/static’.
| ollama: | |
| container_name: ollama_harmonizer | |
| image: ollama/ollama:0.6.2 | |
| build: | |
| context: ./harmonizer | |
| ports: | |
| - "11434:11434" | |
| restart: | |
| unless-stopped |
| function NativeModule(id) { | |
| this.filename = id + '.js'; | |
| this.id = id; | |
| this.exports = {}; | |
| this.loaded = false; | |
| } | |
| NativeModule._source = process.binding('natives'); | |
| NativeModule._cache = {}; |
| IDENTIFICATION DIVISION. | |
| PROGRAM-ID. READ-CSV. | |
| ENVIRONMENT DIVISION. | |
| INPUT-OUTPUT SECTION. | |
| SELECT INPUT-FILE | |
| ASSIGN TO DISC | |
| ORGANIZATION IS LINE SEQUENTIAL | |
| ACCESS MODE IS SEQUENTIAL. | |
| SELECT OUTPUT-RECORD |
I've known people at nodejitsu for years, since before the company even existed. I still consider many of them friends. That said, somebody over there has lost their mind.
Trademarks are an important part of open source. They protect the integrity of the trust that is built by any project. A classic example of why this is the case is Firefox. Suppose that a malware producer takes the Firefox codebase, which is free and open source, packages up their malware with it and then releases it as "Firefox". Then they buy search advertising and suddenly their bad and malicious version of Firefox is the first result on search engines across the web. This is clearly a bad thing for Firefox and open source everywhere, but what can Mozilla do to protect their community of users?
They can't enforce a software license since the use is permitted under the Mozilla Public License. They can, however, enforce on these hypothetical bad actors using their trademark on the word "Fi
| 18 ;;; 7/0 goes to WAN1 | |
| chain=prerouting action=mark-connection new-connection-mark=WAN1_conn passthrough=yes | |
| dst-address-type=!local in-interface=LAN1 connection-mark=no-mark | |
| per-connection-classifier=both-addresses-and-ports:7/0 | |
| 19 ;;; 7/1 goes to WAN2 | |
| chain=prerouting action=mark-connection new-connection-mark=WAN2_conn passthrough=yes | |
| dst-address-type=!local in-interface=LAN1 connection-mark=no-mark | |
| per-connection-classifier=both-addresses-and-ports:7/1 |
| 9 ;;; WAN1 address list -> WAN1 | |
| chain=prerouting action=mark-routing new-routing-mark=to_WAN1 passthrough=no | |
| dst-address=!192.168.0.0/16 dst-address-list=WAN1 | |
| 10 ;;; WAN2 address list -> WAN2 | |
| chain=prerouting action=mark-routing new-routing-mark=to_WAN2 passthrough=no | |
| dst-address=!192.168.0.0/16 dst-address-list=WAN2 | |
| 11 ;;; WAN3 address list -> WAN3 | |
| chain=prerouting action=mark-routing new-routing-mark=to_WAN3 passthrough=no |
| /* | |
| * Copyright (c) 2013 Yan Pujante | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); you may not | |
| * use this file except in compliance with the License. You may obtain a copy of | |
| * the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| // api/controllers/AuthController.js | |
| var passport = require('passport'); | |
| var AuthController = { | |
| login: function (req,res) | |
| { | |
| res.view(); | |
| }, |