Skip to content

Instantly share code, notes, and snippets.

View Lh4cKg's full-sized avatar
🐍
Working

Lasha Gogua Lh4cKg

🐍
Working
View GitHub Profile
<?php
class ControllerPaymentpayge extends Controller {
protected function index() {
$this->load->model('checkout/order');
$this->language->load('payment/payge');
$this->data['button_confirm'] = $this->language->get('button_confirm');
<?//**************************************************
//**************************************************?>
<form action="<?php echo $action; ?>" method="post" id="payment">
<input type="hidden" name="merchant" value="კოდი"/>
<input type="hidden" name="ordercode" value="<?php echo $order; ?>"/>
<input type="hidden" name="amount" value="<?php echo $amount; ?>"/>
<input type="hidden" name="currency" value="GEL"/>
<input type="hidden" name="description" value="<?php echo $description; ?>"/>
<input type="hidden" name="clientname" value="<?php echo $clientname; ?>"/>
@Lh4cKg
Lh4cKg / womlg.py
Last active November 7, 2017 14:24
python3 wordlist generator, womlg.py
#!/usr/bin/python3
# -*- coding: utf-8 -*-
"""
Created on 06 Nov 2013
@author: Lasha Gogua
"""
#!/usr/bin/perl
#########################################
# Fierce v0.9.9 - Beta 03/24/2007
# By RSnake http://ha.ckers.org/fierce/
# Threading and additions by IceShaman
#########################################
use strict;
use Net::hostent;
@Lh4cKg
Lh4cKg / gettome
Created September 26, 2014 19:31
<?php
if(isset($_GET['lat'])) {
$lat = trim($_GET['lat']);
}
if(isset($_GET['lon'])) {
$lon = trim($_GET['lon']);
}
if(isset($_GET['acc'])) {
$acc = trim($_GET['acc']);
<?php
if(isset($_GET['lat'])) {
$lat = trim($_GET['lat']);
}
if(isset($_GET['lon'])) {
$lon = trim($_GET['lon']);
}
if(isset($_GET['acc'])) {
$acc = trim($_GET['acc']);
@Lh4cKg
Lh4cKg / infix.py
Created April 19, 2015 05:21
infix operator
# definition of an Infix operator class
# this recipe also works in jython
# calling sequence for the infix is either:
# x |op| y
# or:
# x <<op>> y
class Infix:
def __init__(self, function):
self.function = function

This document has now been incorporated into the uWSGI documentation:

http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html

Set up Django, nginx and uwsgi

Steps with explanations to set up a server using:

#!/bin/bash
NAME="hello_app" # Name of the application
DJANGODIR=/webapps/hello_django/hello # Django project directory
SOCKFILE=/webapps/hello_django/run/gunicorn.sock # we will communicte using this unix socket
USER=hello # the user to run as
GROUP=webapps # the group to run as
NUM_WORKERS=3 # how many worker processes should Gunicorn spawn
DJANGO_SETTINGS_MODULE=hello.settings # which settings file should Django use
DJANGO_WSGI_MODULE=hello.wsgi # WSGI module name

This document has now been incorporated into the uWSGI documentation:

http://uwsgi-docs.readthedocs.org/en/latest/tutorials/Django_and_nginx.html

Set up Django, nginx and uwsgi

Steps with explanations to set up a server using: