This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get update | |
sudo apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg-agent \ | |
software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.amazon.com/Evolution-Battling-Valkyrie-EGIS-%CE%A9-Qs-Achilles-00-Dm/dp/B07QMFGNBW/ref=pd_rhf_dp_s_all_spx_wp_1_9?_encoding=UTF8&pd_rd_i=B07QMFGNBW&pd_rd_r=63bb8169-36d0-467b-bba6-b10b841dc502&pd_rd_w=Qs0zp&pd_rd_wg=5VY2p&pf_rd_p=ffd394b3-6bb0-43ec-8bd8-b3dd44ab44d6&pf_rd_r=BDEM879X21R65G6D70WM&psc=1&refRID=BDEM879X21R65G6D70WM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think we should have a class called posInterface | |
cloverInterface will inherit and implement its own stuff |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
onboardingStep: { | |
type: Number, | |
default: 0 | |
}, | |
whatAreYou: { | |
type: String, | |
default: 'Freelancer' | |
}, | |
whatYouDo: String, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$conf[‘redis_client_interface’] = ‘Predis’; | |
$conf[‘redis_client_host’] = ‘<redisCacheName.redis.cache.windows.net>’; | |
$conf[‘redis_client_port’] = 6379; | |
$conf[‘redis_client_password’] = ‘<Primary Access Key>’; | |
$conf[‘lock_inc’] = ‘sites/all/modules/contrib/redis/redis.lock.inc’; | |
$conf[‘cache_backends’][] = ‘sites/all/modules/contrib/redis/redis.autoload.inc’; | |
$conf[‘cache_default_class’] = ‘Redis_Cache’; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var redis = require('redis'); | |
var app = require('http').createServer(); | |
io = require('socket.io').listen(app); | |
app.listen(8080); | |
io.sockets.on('connection', function (socket) { | |
const subscribe = redis.createClient(undefined, "redis.demos.cloud.linnovate.net") | |
const pub = redis.createClient(undefined, "redis.demos.cloud.linnovate.net") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
angular.module('mean.sport1').factory('Sport1', ['$resource', '$http', '$rootScope', '$q', '$location', | |
function($resource, $http, $rootScope, $q, $location) { | |
var dataConfig; | |
return { | |
getData: function(url) { | |
var deferred = $q.defer(); | |
$http({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== Server Environment == | |
Operating System: Linux | |
Software: Apache/2.4.18 (Ubuntu) | |
MySQL version: 5.7.19 | |
PHP Version: 7.0.22-0ubuntu0.16.04.1 | |
PHP Max Input Vars: 1000 | |
PHP Max Post Size: 8M | |
GD Installed: Yes | |
Elementor Library: Connected |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ref":"Shabbat.4b.1", | |
"index":"3", | |
"range":[5,9], | |
"marking":"nimuk" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
# The ServerName directive sets the request scheme, hostname and port that | |
# the server uses to identify itself. This is used when creating | |
# redirection URLs. In the context of virtual hosts, the ServerName | |
# specifies what hostname must appear in the request's Host: header to | |
# match this virtual host. For the default virtual host (this file) this | |
# value is not decisive as it is used as a last resort host regardless. | |
# However, you must set it for any further virtual host explicitly. | |
ServerName stage.danhotels.com |