- ESC Stops ongoing operation
- TAB Toggles Edit/Object mode
- ZKEY Toggles Solid/Wireframe display
- CTRL-Z Undo
- SHIFT-CTRL-Z Redo
- CTRL-N Open New Default File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - install pythonz | |
| - sudo pythonz install 3.4.1 | |
| - pythonz locate 3.4.1 | |
| - cd /Applications/Blender.app/Contents/Resources/2.75/ | |
| - virtualenv -p PATH_TO_PYTHON3 python | |
| - bin/pip install python-osc | |
| - then, the copy folder to blender python |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "development": { | |
| "hosts": [ | |
| "127.0.0.1:9160" | |
| ], | |
| "keyspace":"dev_events" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if Rails.env.test? | |
| class MailCatcher | |
| def self.create(opts) | |
| File.open("#{Rails.root}/tmp/mailcatcher/mail-#{Time.now.to_i}.html", 'w') do |f| | |
| f.write(opts[:body].raw_source) | |
| end | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "flag" | |
| "fmt" | |
| //"log" | |
| "os" | |
| "os/exec" | |
| "strings" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import( | |
| "time" | |
| "strings" | |
| "strconv" | |
| "fmt" | |
| "errors" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| default: build | |
| build: | |
| ./make.sh build | |
| run: | |
| ./make.sh run | |
| deps: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module Formotion | |
| module RowType | |
| class PickerWithSearchRow < PickerRow | |
| include RowType::ItemsMapper | |
| def after_build(cell) | |
| super | |
| @items_for_search = items | |
| keyboardDoneButtonView = UIToolbar.new | |
| keyboardDoneButtonView.barStyle = UIBarStyleBlack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # app/cells/museo_table_view_cell.rb | |
| class StyledCell < UITableViewCell | |
| attr_accessor :image_cell, :title_cell, :subtitle_cell | |
| #stylesheet :main_screen | |
| def layoutSubviews | |
| p title_cell | |
| p subtitle_cell |