Skip to content

Instantly share code, notes, and snippets.

View matiit's full-sized avatar
:octocat:

Mateusz Tracz matiit

:octocat:
View GitHub Profile
eventsActions.before('removeOne', function(nextCallback, actionBody) {
console.log("Removing event");
var jsonEvent = JSON.stringify(actionBody);
jQ.ajax({
type: 'POST',
dataType: 'json',
contentType: 'application/json',
authentify: (user) ->
deferred = $.Deferred()
$.ajax(
type: 'POST'
url: '/auth/register'
data: view.model.toJSON()
success: (data) =>
console.log "I am in succes??"
deferred.resolve()
5th Novembver 2014 in Thunock (name of the City, I might mispelled the word),
near the London, during changing the drive lane I hit another car.
BMW brand, registration number ND10PFX.
This accident took place on M24 road.
I drove in Renault Premium, registration number P0704vj.
Accident was my fault because I did not see the BMW vehicle in my mirrors.
<?php namespace App\Http\Middleware;
use App;
use Closure;
use Illuminate\Contracts\Routing\Middleware;
class MyMiddleware implements Middleware {
/**
* Handle an incoming request.
public function index()
{
$query = Input::get('q');
if(!$query) {
return View::make('search.index');
}
list($listings, $searchedCoords) = $this->searchRepository->findByQuery($query, true);
@matiit
matiit / simple_vbulletin_crawler.py
Last active December 16, 2015 12:29
Nice using of exceptions to "break loop more than one level up"
#-*- coding: utf-8 -*-
from pyquery import PyQuery as pq
import MySQLdb
db = MySQLdb.connect(host="localhost", user="someuser",
passwd="somepassword", db="somedatabase", charset='utf8')
c = db.cursor()
# It explains itself
# Of course we can dig it from forum "programmaticaly",
@matiit
matiit / stageDeleted.sh
Created December 20, 2012 13:49
stage deleted files in git repo
for x in `git status | grep deleted | awk '{print $3}'`; do git rm $x; done
@matiit
matiit / loadSimple.php
Last active October 13, 2015 17:38
Checking for file existance, now code is running on older PHP versions too
/*
* loadSimpleFileToArray
*
* what the function does
*
* @param (String) path to the source file
* @return (Array)
*/
function loadSimpleFileToArray($fileName)
{
@matiit
matiit / update_from_different_database.sql
Created December 7, 2012 10:02
Updating table in different database
UPDATE
database1.table D1,
database2.table D2
SET D1.email=D2.email
WHERE D1.domain=D2.domain AND D1.email IS NULL AND D2.email <>'';
@matiit
matiit / laravelTemplateForelse.blade.php
Created October 7, 2012 19:58
forelse in laravel template
<?php
/*
* Very nice and usefull!
*/
@forelse ($users as $user)
{{ $user->name }}
@empty
<p>There are no users.</p>
@endforelse