Tech travelers Be sure to tip Skycaps,  They work harder than tech workers and Start-up folks

Skycaps Don’t Work for the Airlines They Work for You! Many travelers and even airline employees are not aware that skycaps, the people who check in your luggage curbside and carry your bags inside the terminal, and to and from the curb, are not airline employees.  These uniformed workers don’t get any benefits such as …

Should You Use #Linux / #OpenSource or #Windows #Cloud Hosting? 

The Debate over OpenSource is back! I just read these 2 very interesting articles about whether you should use Windows as your cloud Server, even though it’s less popular? and whether cloud pricing methodologies are making Open Source cost the same as Proprietary?   We deal with this question every day. Being cheap and broke …

Vtiger not syncing with Google Contacts – 

Get Google contacts to sync with your Vtiger Install OpenSource Charming CRM. Everything will work much more smoothly than with Vtiger:   https://aws.amazon.com/marketplace/pp/B073WXGVSW Here is a bit of directions to get Google contacts to sync with your Vtiger. You need to create an API for Contacts and/or Calendar and give it your URL. After all this …

How to install and integrate SpamAssassin with Postfix on a CentOS 6 VPS – RoseHosting.com Blog

Microsoft Oulook’s spam filter is broken for a while now. I got sick of wasting time deleteing spam. So I installed SpamAssassin. the last time I used this it was OK. But needed to be taught not trash transliterated Hebrew words like “Mezuzot” since my other Business is producing such Judaica tutorial we are going …

Charming #CRM based on Vtiger 7 – With Bug fixes for WebForms, Opportunities, PDF export.

Vtiger is the most popular open source CRM. The project owners also have a for pay service, but are still very committed to the open source community edition. Here are fixes for popular issues found in the Open Source edition. WebForms dont save and then give 500 error Opportunities Mbstring error PDF exports instructions and …

hmail server – DKIM hmailserver and NameCheap Setup – Stack Overflow

  For our popular PHPlist server that uses Hmailserver on aws.amazon.com/marketplace/   sometimes you  cannot use SES, But the users still want their messages delivered. so here is some info. I hope that it is helpful. I’ve been trying to setup my hmailserver with DKIM. I was following this guide -> https://www.hmailserver.com/forum/viewtopic.php?t=29402 And I created my keys with …

docker-machine with aws driver – Amazon Web Services from Docker  Documentation

Docker-machine for AWS call the ami that you want as the base and much more   Source: Amazon Web Services | Docker Documentation docker-machine create –driver amazonec2 –amazonec2-access-key AKI******* –amazonec2-secret-key 8T93C******* aws01 Environment variables You can use environment variables: $ export AWS_ACCESS_KEY_ID=AKID1234567890 $ export AWS_SECRET_ACCESS_KEY=MY-SECRET-KEY $ docker-machine create –driver amazonec2 aws01 Options –amazonec2-access-key: Your access …

Deploy a Highly-Available MongoDB Replica Set on AWS

This article about building MongoDB replica sets buy Elad Nava is really good!   However, running a scalable, highly-available MongoDB cluster is a whole ‘nother story. You need a good understanding of how replica sets work and be familiar with the inner workings of MongoDB. And you need to set up tooling to constantly monitor …

Green Smoothies and Sweet Potato Chips from BensFarm

שבוע טוב, English Below   נא להזמין מוקדם, עד 14:00 ביום ראשון, בכדי לודא שתקבלו את המוצרים מרשימת האדמה, במיוחד הלחם. בחלק העליון של העמוד תמצאו את מה שאני מגדל; החלק התחתון הוא ממגדלים אחרים בארץ (ותפוחים) תודה ותהיו בראים בן רוזנברג bensfarm.co.il A happy customer – לקוח שמח   Shavoua Tov, Here’s a bit …

repository – How to generate a Dockerfile from an image? – Stack Overflow

To understand how a docker image was built, use the docker history command. You can build a docker file from an image, but it will not contain everything you would want to fully understand how the image was generated. Reasonably what you can extract is the MAINTAINER, ENV, EXPOSE, VOLUME, WORKDIR, ENTRYPOINT, CMD, and ONBUILD …

mongo/Dockerfile for Windows Container at master · docker-library/mongo

FROM microsoft/windowsservercore SHELL [“powershell”, “-Command”, “$ErrorActionPreference = ‘Stop’;”] ENV MONGO_VERSION 3.4.4 ENV MONGO_DOWNLOAD_URL http://downloads.mongodb.org/win32/mongodb-win32-x86_64-2008plus-ssl-${MONGO_VERSION}-signed.msi ENV MONGO_DOWNLOAD_SHA256 73d1121a1fe58fe29c4fb7b6f4b79a4d33afa666f357960419ef83635396f977 RUN Write-Host (‘Downloading {0} …’ -f $env:MONGO_DOWNLOAD_URL); \ (New-Object System.Net.WebClient).DownloadFile($env:MONGO_DOWNLOAD_URL, ‘mongo.msi’); \ \ Write-Host (‘Verifying sha256 ({0}) …’ -f $env:MONGO_DOWNLOAD_SHA256); \ if ((Get-FileHash mongo.msi -Algorithm sha256).Hash -ne $env:MONGO_DOWNLOAD_SHA256) { \ Write-Host ‘FAILED!’; \ exit 1; \ }; \ …