Skip to content

Instantly share code, notes, and snippets.

View andrei-tofan's full-sized avatar

Andrei Tofan andrei-tofan

View GitHub Profile
@andrei-tofan
andrei-tofan / example.js
Last active February 29, 2024 23:59
node.js writable buffer stream (pdfkit example)
/**
* Convert PDFDocument to Base64
*/
const PDFDocument = require('pdfkit');
const stream = require('./stream');
// crate document and write stream
let doc = new PDFDocument();
let writeStream = new stream.WritableBufferStream();
@andrei-tofan
andrei-tofan / beefree.js
Created March 1, 2017 20:58
Fetch access token from beefree api
/**
* NodeJS beefree.io integration
*/
const https = require('https');
const querystring = require('querystring');
/**
* Fetch access token from beefree api
*/
@andrei-tofan
andrei-tofan / ninja-forms.js
Last active June 25, 2020 09:06
Ninja Forms JavaScript Hook
var form_id = 3;
// listen to all ajax completed events
jQuery(document).ajaxComplete(function (event, jqXHR, ajaxOptions) {
// try to parse response
var data = JSON.parse(jqXHR.responseText || '{}');
// check if the ajax request is for our form
if (data.data.form_id == form_id) {
@andrei-tofan
andrei-tofan / test_imap.php
Created July 17, 2017 08:40
Test local IMAP server
<?php
// To connect to an IMAP server running on port 993 on the local machine,
// do the following:
$mbox = imap_open("{mailmoka.com:993/imap/ssl/novalidate-cert}INBOX", "delivery", "Ahgn8WKqyQGqgpeXiInh");
echo "<h1>Mailboxes</h1>\n";
$folders = imap_listmailbox($mbox, "{mailmoka.com:993}", "*");
if ($folders == false) {
echo "Call failed<br />\n";
@andrei-tofan
andrei-tofan / leadbi_signup.md
Last active May 23, 2017 12:55
LeadBI SignUp Free Trial API
@andrei-tofan
andrei-tofan / express_app.js
Created May 13, 2017 09:58
Run node.js express app under a low privilege user
var express = require('express')
var app = express()
/**
* After app starts, demote the app to a low privilege user
*/
function demote() {
if(process.platform != 'linux') {
return false;
@andrei-tofan
andrei-tofan / py3whois.py
Created December 9, 2016 21:20 — forked from carmaa/py3whois.py
Python 3 whois client
"""
Whois client for python
transliteration of:
http://www.opensource.apple.com/source/adv_cmds/adv_cmds-138.1/whois/whois.c
Copyright (c) 2010 Chris Wolf
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@andrei-tofan
andrei-tofan / leadbi_native_form.js
Last active May 5, 2017 11:48
LeadBI Native Form Integration
// leadbi.com
var native_formid = '3638a022-2823-4541-b31c-1856f6a72933';
// get form instance
window.$leadbi_forms.getForm(native_formid, function (err, form) {
// form data
var data = {
first_name: 'test', // optional
last_name: 'test', // optional
@andrei-tofan
andrei-tofan / leadbi_api.md
Last active May 5, 2017 11:47
LeadBI API access documentation

LeadBI API Access

In order to access the leadbi api you need to create a api key in the account section. After the api key is created you can make api calls using the following headers:

  • X-Access-Id - api key id
  • X-Access-Secret - api key secret

Request Example

GET /api/v1/websites
Host: app.leadbi.com
@andrei-tofan
andrei-tofan / private_area.js
Last active May 5, 2017 11:47
LeadBI user identification api
// check if $leadbi_website api is available
if(window.$leadbi_website){
// fetch user object of the current visitor
window.$leadbi_website.getCurrentUser(function (err, user) {
// call the identify api
// calling this method multiple times for the same email address will not create duplicate contacts
return user.identify({