Skip to content

Instantly share code, notes, and snippets.

View noisy's full-sized avatar

Krzysztof Szumny noisy

View GitHub Profile
diff --git a/README.md b/README.md
index d54a6a4..7d87b07 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,6 @@
Graphene-UI
============
-[![Slack](http://slack.bitshares.org/badge.svg)](http://slack.bitshares.org/)
-
  • - Switched to internet connection with faster upload
  • - Laptop connected to power cord
  • - Second computer turned on (for making sure that stream is ok)
  • - switched to slower internet connection
  • - loaded livecoding.tv/noisy/
  • - Notification text prepared
  • - Notification for users of wykop.pl
  • - notification on reddit
  • - Info messages displayed
  • - Coffee
class ProductView(View):
MOCKED_DATA = {
'height': 250,
'width': 150,
'img': 'http://lorempixel.com/150/250/'
}
# ...
* "get ready" wallpaper with social nicks:
https://www.livecoding.tv/video/enfrbuilding-a-social-network-with-laravel-175/
* last fallower
* stream to two locations, stream and save
  • git checkout -
  • -p
  • git add -p
  • git checkout -p
  • git stash -p
  • git new-workdir

Trochę darmowych książek z programowania i szeroko rozumianego IT:

Wszystkie znajdziesz tutaj: https://www.syncfusion.com/resources/techportal/ebooks

By ściągnąć trzeba się zalogować/założyć darmowe konto (działa rejestracja z emaila tymczasowego)

Możecie użyć do logowania danych - email: [email protected], hasło: wykop14k

A tutaj lista poszczególnych tytułów (83):

#!/bin/bash
# To make sure, that proper refs are added to .git/config
# run: git config --add remote.origin.fetch "+refs/pull/*:refs/remotes/pr/*"
git fetch origin
touch last_update
pull_requests_refs="`git show-ref | grep "refs/remotes/pr/.*/head"`"
pull_requests="`echo "$pull_requests_refs" | sed -e "s#\([0-9a-f]*\)\ refs/remotes/pr/\(.*\)/head.*#pr\2 \1#g" | sort`"
import {Component, Input, bootstrap, CORE_DIRECTIVES} from 'angular2/angular2';
import {Product, SpecialProduct} from './products.ts';
@Component({
selector: 'my-tile',
directives: [CORE_DIRECTIVES],
template: `
<div class="col col-xs-6 col-md-4 col-lg-2">
<div class="panel panel-default">
FROM python
RUN apt-get update && apt-get install -y git libffi-dev libpcap-dev
RUN git clone --depth 1 https://github.com/jsommers/switchyard.git /src/
WORKDIR /src/
RUN pip install -r requirements.txt
CMD coomand_to_run
  • - are you working on the proper version of...
    • file
    • git branch
    • database
    • server instance
  • - are you sure, that all resources are available? (server hiccup, lost internet connection, service not started, etc)
  • - did you clear the cache of the browser?
  • - did you remove old *.pyc files?
  • - did you restart proper server, reload settings?
  • - did you check your git status? (remember, that files added to .gitignore, are not shown, but they can also make a difference)