- Text Content Generator - http://www.lipsum.com
- Favicon Generator - http://tools.dynamicdrive.com/favicon
- Data Generator - https://mockaroo.com/
- Mobile Mockup Generator - https://mockuphone.com
- Logo Generator - https://www.logaster.com
- UUID Generator - https://www.uuidgenerator.net/
- Hash Generator - https://passwordsgenerator.net/sha256-hash-generator/
- Ultimate Code Generator - https://webcode.tools/
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 socket | |
| import threading | |
| import time | |
| class ThreadedServer(object): | |
| def __init__(self, host, port): | |
| self.host = host | |
| self.port = port | |
| self.sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) |
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
| #! /usr/bin/env python | |
| """ | |
| Author: Bastin Robin | |
| """ | |
| import os | |
| import logging | |
| from urllib import urlencode | |
| import datetime | |
| import pandas as pd |
Considered this submission as a PASS case.
Submitted tech challenge:
Pros:
- API endpoints naming follows problem statement.
- Clean and tidy code.
- Demonstrated well use of existing frameworks/libraries.
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
| <?php | |
| namespace App\DistanceApi\Api; | |
| /* | |
| |-------------------------------------------------------------------------- | |
| | Request Class | |
| |-------------------------------------------------------------------------- | |
| | | |
| | This class is used when querying your API. |
- Follow the steps given here to install Node.js and NPM.
- Verify whether NPM is installed by typing
npm -vin a terminal window.
npm install -g react-native-cli
- Download and install Android Studio as explained here.
- Run Android Studio and open the SDK Manager. Under the SDK Platforms tab, check Show Package Details, expand Android 6.0 (Marshmallow) and check the following:
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
| # Stream Video with OpenCV from an Android running IP Webcam (https://play.google.com/store/apps/details?id=com.pas.webcam) | |
| # Code Adopted from http://stackoverflow.com/questions/21702477/how-to-parse-mjpeg-http-stream-from-ip-camera | |
| import cv2 | |
| import urllib2 | |
| import numpy as np | |
| import sys | |
| host = "192.168.0.220:8080" | |
| if len(sys.argv)>1: |
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
| """ | |
| ledctrl.py | |
| A simple example for communicating with a Raspberry Pi from you phone's | |
| browser. Uses the Bottle Python web framework, and jQuery AJAX. | |
| Author: Mahesh Venkitachalam / electronut.in | |
| """ |
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
| #!/usr/bin/env python | |
| """ | |
| Very simple HTTP server in python. | |
| Usage:: | |
| ./dummy-web-server.py [<port>] | |
| Send a GET request:: | |
| curl http://localhost |
NewerOlder