Jeśli chcesz razem ze mną wykonywać poszczególne kroki podczas prezentacji będziesz potrzebował(a) poniższych kont oraz narzędzi.
Załóż konta na poniższych portalach jeśli jeszcze ich nie posiadasz.
# make peach the president | |
# | |
# drumloop based on | |
# http://www.ethanhein.com/wp/2013/my-collection-of-transcribed-rhythm-patterns/ | |
use_bpm 95 | |
drumloop = { | |
:drum_bass_hard => [0,7,8,14], | |
:drum_snare_hard => [4,12], |
Jeśli chcesz razem ze mną wykonywać poszczególne kroki podczas prezentacji będziesz potrzebował(a) poniższych kont oraz narzędzi.
Załóż konta na poniższych portalach jeśli jeszcze ich nie posiadasz.
# Use Sonic Pi v2.x to run below snippet. | |
# If You use v3.x + then it'll sound other than intended. | |
# More info: https://github.com/samaaron/sonic-pi/issues/1979 | |
set_volume! 1 | |
use_bpm 125 | |
live_loop :beats do | |
8.times do | |
sample :bd_haus, amp: 0.5 | |
sleep 1 |
test = lambda { |ctx| | |
puts "#{ctx.class}" | |
ctx.notes.each do |note| | |
play note, amp: 0.5 | |
sleep 0.25 | |
end | |
} | |
class TestMelody | |
attr_reader :notes |
EN description: Text below is the solution to this problem written in Polish language.
Od jakiegoś czasu na moim komputerze tuż po uruchomieniu się systemu (Windows 10) pojawiał się popup z komunikatem o treści Wystąpił problem podczas uruchamiania pliku SBAVMonL.dll Nie można odnaleźć określonego modułu.. Było to dość irytujące, zwłaszcza, że dosyć ciężko było znaleźć rozwiązanie tego problemu :/
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# See: https://stefanwrobel.com/how-to-make-vagrant-performance-not-suck | |
Vagrant.configure(2) do |config| | |
config.vm.box = 'ubuntu/trusty64' | |
config.vm.provider :virtualbox do |vb| | |
host = RbConfig::CONFIG['host_os'] |
Output on 14.03.2017
$ python pywaw.py
Collecting beautifulsoup4
Using cached beautifulsoup4-4.5.3-py3-none-any.whl
Collecting requests
Using cached requests-2.13.0-py2.py3-none-any.whl
Installing collected packages: beautifulsoup4, requests
Successfully installed beautifulsoup4-4.5.3 requests-2.13.0
I was curious about making retro gaming sounds using Sonic Pi. A couple of months and a lot of Googling later, here's the original Mario Bros theme as it was heard on the NES console.
I'm (just about) old enough to remember rushing home from school to play this game at Philip Boucher's house, sitting cross-legged in front of the TV till my feet got pins and needles. Working out how to recreate it for Sonic Pi was a lot of fun!
live_loop :left_right do | |
curr_pan = tick % 2 == 1 ? 1 : -1 | |
sample :loop_amen, pan: curr_pan | |
sleep sample_duration(:loop_amen) | |
end |
This tutorial guides you through creating your first Vagrant project.
We start with a generic Ubuntu VM, and use the Chef provisioning tool to:
Afterwards, we'll see how easy it is to package our newly provisioned VM