Skip to content

Instantly share code, notes, and snippets.

View malkitsingh's full-sized avatar
🎯
Focusing

Malkit Singh malkitsingh

🎯
Focusing
View GitHub Profile
@malkitsingh
malkitsingh / instructions.txt
Created February 2, 2017 17:37
Step by step guide to install nominatim server
I followed these two blogs to install server
1. http://koo.fi/blog/2015/03/19/openstreetmap-nominatim-server-for-geocoding/#Compile_Nominatim
This explains ( and is the main blog which I followed) various steps
2. https://www.linuxbabe.com/linux-server/openstreetmap-tile-server-ubuntu-16-04
This explains how to setup swap files and install tiles if needed.
I will use Ubuntu 14.04 LTS as the platform. Just a basic install with ssh server. We will install Apache to serve http requests. Make sure you have enough disk space and RAM to hold the data and serve it efficiently. I used the Finland extract, which was about a 200 MB download. The resulting database was 26 GB after importing, indexing and adding Wikipedia data. The Wikipedia data probably actually took more disk space than the OSM data. My server has 4 GB RAM, which seems to be enough for this small data set.
1. Sofware requirements
public String ConvertImageURLToBase64(String url)
{
StringBuilder _sb = new StringBuilder();
Byte[] _byte = this.GetImage(url);
_sb.Append(Convert.ToBase64String(_byte, 0, _byte.Length));
return _sb.ToString();
}
@malkitsingh
malkitsingh / backup.bat
Created December 7, 2016 18:06
batch file to run mongodb daily tasks
@echo off
REM move into the backups directory
CD C:\backup
REM Create a file name for the database output which contains the date and time. Replace any characters which might cause an issue.
set filename=database %date% %time%
set filename=%filename:/=-%
set filename=%filename: =__%
set filename=%filename:.=_%
@malkitsingh
malkitsingh / info.txt
Last active November 20, 2020 05:51
How to set up GitLab Runner on DigitalOcean
## Create a droplet ##
Fortunately, DigitalOcean has a one-click image with Docker pre-installed on Ubuntu 14.04 use this link to create new droplet.
https://www.digitalocean.com/features/one-click-apps/docker/
# Install the GitLab Runner #
First, login to the new droplet via SSH and verify that Docker is installed with:
`docker info`
@malkitsingh
malkitsingh / info.txt
Created September 4, 2019 09:21
Managing multiple sites from single server using Nginx
Short note on how to manage multiple sites with SSL from Nginx
make domainOne.com domainTwo.com file in
/etc/nginx/sites-available
Contents of domainOne.com will look like this once done
server {
server_name domainOne.com www.domainOne.com;
@malkitsingh
malkitsingh / info.txt
Last active April 14, 2019 11:20
Setting Node.JS on Ubuntu
**Install Node.js**
cd ~
curl -sL https://deb.nodesource.com/setup_8.x -o nodesource_setup.sh
sudo bash nodesource_setup.sh
sudo apt-get install nodejs
sudo apt-get install build-essential
**Install Nginx**
sudo apt-get update
@malkitsingh
malkitsingh / notes.js
Created January 19, 2018 06:19
some of node code snippets
// to upload file to s3 bucket.
var AWS = require('aws-sdk');
AWS.config = new AWS.Config();
AWS.config.accessKeyId = "XXX";
AWS.config.secretAccessKey = "XXXXX";
AWS.config.region = "ap-south-1";
var s3 = new AWS.S3();
@malkitsingh
malkitsingh / ajenti installation on ubuntu
Created June 29, 2017 06:39
Installation guide to install ajenti on ubuntu
1. wget http://repo.ajenti.org/debian/key -O- | sudo apt-key add -
2. echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" | sudo tee -a /etc/apt/sources.list
3. sudo apt-get update && sudo apt-get install ajenti
4. sudo service ajenti restart
5. access using https://your-ip:8000
@malkitsingh
malkitsingh / info.txt
Created April 15, 2017 10:29
creating pem file from p12
openssl pkcs12 -in Certificates2.p12 -out pushcert.pem -nodes -clcerts
@malkitsingh
malkitsingh / info.txt
Created April 15, 2017 07:42
checking port in use and killing active process
For windows
first, find process id using his port
netstat -a -n -o | find "123456"
then, kill the process by id
taskkill /F /PID 3312