Skip to content

Instantly share code, notes, and snippets.

@sergeevyi
sergeevyi / gist:6038472
Last active December 19, 2015 23:59
post data through httpWebRequest
CookieContainer cookieJar = new CookieContainer();
var request = (HttpWebRequest)HttpWebRequest.Create("http://www.google.com");
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.CookieContainer = cookieJar;
var response = request.GetResponse();
foreach (Cookie c in cookieJar.GetCookies(request.RequestUri))
# Get the number of days between a start date and end date
public string DateDifference(DateTime StartDate, DateTime EndDate)
{
TimeSpan t = EndDate.Subtract(StartDate);
string[] list = t.Days.ToString().Split('.');
return list[0];
}
@sergeevyi
sergeevyi / gist:267ce18d9ca2faefd1264e90b25f7529
Created October 20, 2016 07:22 — forked from tonymtz/gist:d75101d9bdf764c890ef
Uninstall nodejs from OSX Yosemite
# first:
lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done
sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.*
# To recap, the best way (I've found) to completely uninstall node + npm is to do the following:
# go to /usr/local/lib and delete any node and node_modules
cd /usr/local/lib
sudo rm -rf node*
@sergeevyi
sergeevyi / LibreOfficeOnline.md
Last active September 18, 2018 14:15 — forked from m-jowett/log.md
Setup LibreOffice Online (Log/Guide) [WIP]

Setup LibreOffice Online (Log/Guide) [WIP]

About

This guide/log is based off my experience attempting to build and install LibreOffice Online and it's dependencies on my system.

The end goal is to get LibreOffice Online integrated with Karoshi Server.

LibreOffice Online is still in development (17/06/16).

@sergeevyi
sergeevyi / gist:c0298a7ca0c4598a45db36592c04b25f
Created October 21, 2016 07:47
Auto-logout if any unauthorised web api request is made
app.config(['$provide', '$httpProvider', function ($provide, $httpProvider) {
$provide.factory('unauthorisedInterceptor', ['$q', function ($q) {
return {
'responseError': function (rejection) {
if (rejection.status === 401) {
window.location.href = '/#/login';
}
return $q.reject(rejection);
@sergeevyi
sergeevyi / UTC_to_localtime.js
Created October 21, 2016 07:50
UTC to Local Date Time Filter
(function () {
'use strict';
angular
.module('app')
.filter('utcToLocal', Filter);
function Filter($filter) {
return function (utcDateString, format) {
// return if input date is null or undefined
@sergeevyi
sergeevyi / isblank.js
Created October 21, 2016 07:55
isBlank()
function isBlank(value) {
return _.isEmpty(value) && !_.isNumber(value) || Number.isNaN(value);
}
function test() {
console.log( "null: "+isBlank(null) ); // => true
console.log( "undefined: "+isBlank(undefined) ); // => true
console.log( "1: "+isBlank(1) ); // => true
console.log( "0: "+isBlank(0) );
console.log( "blank string: "+isBlank("") );
@sergeevyi
sergeevyi / ionic.md
Created November 1, 2016 07:49
Ionic commands

ionic platform rm android ionic platform add android ionic platform list

{"data": {
"id": 8835,
"introduction": "BLOG",
"title": "Home",
"permalink": "",
"pageLayoutType": "BLOG_POST",
"blogPosts":[
{
"previewImageUrl":"",
"layout":[
@sergeevyi
sergeevyi / nginx.conf
Created July 20, 2018 05:30 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048