Skip to content

Instantly share code, notes, and snippets.

View JacobCZ's full-sized avatar

Jakub Sycha JacobCZ

View GitHub Profile
0 info it worked if it ends with ok
1 verbose cli [ '/usr/bin/node',
1 verbose cli '/usr/bin/npm',
1 verbose cli 'run',
1 verbose cli 'generate',
1 verbose cli '--dest',
1 verbose cli './out' ]
2 info using npm@6.4.1
3 info using node@v10.10.0
4 verbose run-script [ 'pregenerate', 'generate', 'postgenerate' ]
0x20b013D355E13ad069670a4c83A654AeBf0260D3
@JacobCZ
JacobCZ / agreement.md
Last active April 16, 2016 15:30
jDynaEcon Contributor License Agreement

The jDynaEcon CLA

We are using the CLA Assistant service for signing our CLAs, which means we need to have a gist containing the CLA linked with the repo, but for legal reasons, we have to have the CLA in a PDF. You can find the PDFs down below and you can read more about the CLA here.

The individual entity CLA: Download as PDF
The legal entity CLA: Dowload as PDF

urlpatterns = [
url(r'^post/', views.post, name="post"),
url(r'^$', views.index, name="index")
]
@JacobCZ
JacobCZ / css_resources.md
Last active August 29, 2015 14:27 — forked from jookyboi/css_resources.md
CSS libraries and guides to bring some order to the chaos.

Libraries

  • 960 Grid System - An effort to streamline web development workflow by providing commonly used dimensions, based on a width of 960 pixels. There are two variants: 12 and 16 columns, which can be used separately or in tandem.
  • Compass - Open source CSS Authoring Framework.
  • Bootstrap - Sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.
  • Font Awesome - The iconic font designed for Bootstrap.
  • Zurb Foundation - Framework for writing responsive web sites.
  • SASS - CSS extension language which allows variables, mixins and rules nesting.
  • Skeleton - Boilerplate for responsive, mobile-friendly development.

Guides

@JacobCZ
JacobCZ / javascript_resources.md
Last active August 29, 2015 14:27 — forked from jookyboi/javascript_resources.md
Here are a set of libraries, plugins and guides which may be useful to your Javascript coding.

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
@JacobCZ
JacobCZ / 0_reuse_code.js
Last active August 29, 2015 14:27
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@JacobCZ
JacobCZ / Tutorial.php
Last active August 29, 2015 14:05
Laravel routing/view/model/controller/whatever problem...
<?php
// tutorial model
class Tutorial {
public static function getCategories($cat) {
$categories = DB::select("SELECT * FROM `categories` WHERE `category_category` = '$cat';");
return $categories;
}
Using inf name: AVerMedia_A827_USB_Hybrid_DVB-T.inf
Succesfully extracted driver files.
Installing driver. Please wait...
libwdi:info [extract_binaries] successfully extracted driver files to C:\usb_driver
libwdi:info [wdi_prepare_driver] succesfully created 'C:\usb_driver\AVerMedia_A827_USB_Hybrid_DVB-T.inf'
libwdi:info [wdi_prepare_driver] Vista or later detected - creating and self-signing a .cat file...
libwdi:info [ScanDirAndHash] added hash for 'C:\usb_driver\amd64\wdfcoinstaller01009.dll'
libwdi:info [ScanDirAndHash] added hash for 'C:\usb_driver\amd64\winusbcoinstaller2.dll'
libwdi:info [ScanDirAndHash] added hash for 'C:\usb_driver\avermedia_a827_usb_hybrid_dvb-t.inf'
libwdi:info [ScanDirAndHash] added hash for 'C:\usb_driver\x86\wdfcoinstaller01009.dll'
# _*_ coding:utf8 _*_
from random import randint
class bcolors:
# Tady mam ty promenne
C1 = '\033[95m'
C2 = '\033[94m'
C3 = '\033[92m'
C4 = '\033[93m'
C5 = '\033[91m'