| Criteria | Suggestic White-Label | Tailored Solution |
|---|---|---|
| Time to Launch | 6+ months* – Requires full development cycle | |
| Initial Investment | ✅ Low – Subscription-based, no dev team needed | designers, devs, infrastructure |
| Operational Fit | ❌ Lacks kitchen, inventory, delivery & CRM modules | ✅ Fully cust |
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
| import android.app.Notification; | |
| import android.app.NotificationChannel; | |
| import android.app.NotificationManager; | |
| import android.app.Service; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.hardware.Sensor; | |
| import android.hardware.SensorEvent; |
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
| from flask import Flask,request | |
| import requests | |
| import json | |
| app = Flask(__name__) | |
| @app.route("/codetostate") | |
| def getstate(): | |
| code = request.args.get('code') | |
| url="http://dataservice.default.svc.cluster.local/codes" | |
| response = requests.get(url) |
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
| FROM tiangolo/uwsgi-nginx-flask:python3.6 | |
| # copy over our requirements.txt file | |
| COPY requirements.txt /tmp/ | |
| # upgrade pip and install required python packages | |
| RUN pip install -U pip | |
| RUN pip install -r /tmp/requirements.txt | |
| # copy over our app code |
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
| from flask import Flask,json,jsonify | |
| import requests | |
| app = Flask(__name__) | |
| @app.route("/<options>") | |
| def getdata(options): | |
| url="https://gist.githubusercontent.com/mshafrir/2646763/raw/8b0dbb93521f5d6889502305335104218454c2bf/states_titlecase.json" | |
| if options=="codes": | |
| url="https://gist.githubusercontent.com/mshafrir/2646763/raw/8b0dbb93521f5d6889502305335104218454c2bf/states_hash.json" |
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
| sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
| sudo apt-get update | |
| sudo apt-get install gcc-5 g++-5 | |
| sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5 |
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
| sudo apt-get install -y make gcc build-essential | |
| sudo apt-get update | |
| sudo apt-get install make | |
| sudo apt-get install gcc | |
| cd deps | |
| make hiredis jemalloc linenoise lua | |
| cd .. |
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
| mkdir build && cd build | |
| wget http://download.redis.io/releases/redis-5.0.4.tar.gz | |
| tar -xvzf redis-5.0.4.tar.gz | |
| cd redis-5.0.4/ |
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
| apiVersion: operator.m3db.io/v1alpha1 | |
| kind: M3DBCluster | |
| metadata: | |
| name: m3db-cluster | |
| spec: | |
| image: quay.io/m3db/m3dbnode:latest | |
| replicationFactor: 3 | |
| numberOfShards: 256 | |
| isolationGroups: | |
| - name: us-east1-b |
NewerOlder