#proplist
Explore tagged Tumblr posts
Video
instagram
Bubble bubble boil & bubble, come in here & your in.................? #witchy #costumesyeppoon #props #proplist #costumesyeppoon #halloweenprops #halloween #halloweencostume #stylish #party #blingblingcostumes #witch #fun #witchcraft #magic #unique #different #quality (at Bling Bling Costumes) https://www.instagram.com/p/B23QbEvltue/?igshid=2dr5yeeopv9e
#witchy#costumesyeppoon#props#proplist#halloweenprops#halloween#halloweencostume#stylish#party#blingblingcostumes#witch#fun#witchcraft#magic#unique#different#quality
1 note
·
View note
Video
#Repost @verybluepetershow (@get_repost) ・・・ How's your prop list shaping up??? Here's a teaser of what we have and need..... #act #actor #acting #props #proplist #theatre #london #fringe #Edfringe #edinburgh #comedy #VBP #bluepeter #bluepeterbadge #VeryBluePeterShow #gildedballoon @gildedballoon @eastlakeproductions (at STYX)
#theatre#actor#repost#edinburgh#london#edfringe#acting#bluepeter#comedy#verybluepetershow#gildedballoon#vbp#act#bluepeterbadge#fringe#proplist#props
0 notes
Text
PROPS LIST
So here are the props we need to make/get:
· A fishing rod
· A bug net
· A bag of Bells
· Furniture leaf
· Animal masks (3 – Cat, Hippo and Tom Nook)
· Package/Present
· Multiple fish
0 notes
Link
Proplist must be made to maintain a flow during shoot and to save time, so that all the actors are ready with their props prior to the scene
0 notes
Text
Idek what part this is anymore, but it’s that theater person again
So because the other prop head ditched the day when I quit being a prop head, she didn’t know that I quit props so the next week she just started talking to me about prop stuff (and I’m pretty sure that’s literally the first time she’s actually talked to me), and because I am bad with confrontation I just went along with it and now I’m a co-prop head and and maybe unofficially co-costume head. What is life.
So yeah now I feel like I’m basically doing all the work, because I have no idea what she’s done. I went through the script and highlighted all the prop things mentioned and took notes on what was implied, and then read them to her while she typed everything (badly, I might add).
I asked her to email it to me so I wouldn’t have to go through my script over and over again whenever I wanted to see what we needed. I texted her 5 days ago and she said she would send it and she literally just did it today, at 1 a.m. In the time it took her to email it to me, I made a new, 8 page proplist, that included the names of the items, the scene that it’s in, how many we need, a description of the prop, what characters use it, and researched how much it would cost to purchase and/or make every single prop on the list that I could. I was also sick during like half of that time.
Honestly at this point the only thing I dislike about this job is her.
71 notes
·
View notes
Text
So I'm making the proplist for the show and for some reason one of the characters enters a scene in a laundry cart for literally no reason. Like, the cart is legit pushed on to the set by two other characters and when they open the lid she just "emerges" from it.
1 note
·
View note
Link
本記事では、Erlang, Cowboy, Rebar3によるHello worldを出力するHTTPサーバーの実装方法を解説する。 目的は、このプログラムを実行中に、以下のような挙動になることだ。 $ curl "htttp://localhost:8080/" hello,world ErlangもCowboyもRebar3も、情報が極めて少ない。しかも公式ドキュメントすら間違っている。公式ドキュメントすら間違っているのには理由があり、実際の実装とドキュメントに差がでているのだ。Erlangは変化の少ない言語ではあるが、それでもOTP17からmapが追加されたりと言語的に少し変わっているし、mapの追加により、cowboyも以前ならproplistsを使っていた部分でmapを使うようになり、しかも2.0でAPIかなり破壊的な変更が入り、2.5からはモジュールの構成も少し変わってしまった。Rebar3は本当にひどい。名前が示すように、すでに破壊的な変更を2回経ている。そして技術的負債の塊だ。 この記事で解説する程度の知識を得るのに私は公式ドキュメントと何ヶ月も格闘するはめになった。公式ドキュメントですらこうなのだから、非公式なドキュメントは本当に参考にならない。ここに書いてあることは2020年の時点では正しいが、来年はわからない。 準備 Erlang実装とRebar3が必要だ。CowboyについてはRebar3がダウンロードしてくれるので考えなくてよい。 Debian系のディストロでErlangをインストー���する。 $ apt install erlang GNU/Linuxでrebar3をインストールする最も信頼できる方法は、自前でビルドすることだろう。 $ git clone https://github.com/erlang/rebar3.git $ cd rebar3 $ ./bootstrap これで"rebar3"というファイルができるので、このファイルをPATHの通ったディレクトリにコピーするかシンボリックリンクをはればよい。 ln -s rebar3 /usr/local/bin これで準備が完了した。 プロジェクト作成 まずrebar3を使ってプロジェクトを作成する。名前を"hello_server"としよう。 $ rebar3 new release hello_server $ cd hello_server このコマンドで"hello_server"というディレクトリが作成される。その中にはテンプレート生成されたファイルがいくつかある。重要なものだけ説明する。 "hello_server/rebar.config"は設定ファイルで、cowboyの依存を追加するために編集する。 "hello_server/apps"ディレクトリにはアプリケーションが配置される。rebar3のreleaseプロジェクトはumbrella projectと呼ばれていて、複数のアプリケーションを持つことができる。 "hello_server/apps/hello_server"はrebar3がテンプレートから生成したアプリケーションだ。このディレクトリ内には"src"ディレクトリがあり、3つのファイルが作成されている。"hello_server_app.erl", "hello_server_sup.erl", "hello_server.app.src"だ。 "hello_server_app.erl"はapplication behaviourを実装するソースファイルだ。 "hello_server_sup.erl"はsupervisor behaviourを実装する。今回は編集しない。 "hello_server.app.src"はapplication resource fileを生成するためのソースファイルだ。Erlang VMをどのように実行するかということを設定するためのファイルだ。rebar3はこのファイルから実際のapplication resource fileを生成する。このファイルも編集する。 Cowboyを依存に追加 Cowboyを依存に追加してrebar3にダウンロードしてもらう。そのために"hello_server/rebar.config"を編集する。 $ vim rebar.config 最初の数行は以下のようになっている。 [erl_opts, [debug_info]}. {deps, []}. [relx, [{release, {hello_server, "0.1.0"}, ... 今回編集するのは2行目、つまり"{deps,[]}."という部分だ。このlistのなかに依存を記述していく。記述のフォーマットは様々だが、すべて"{ package_name, ...}"という形のtupleになっている。このチュートリアルではパッケージをhex.pmからダウンロードしてくるので、フォーマットは"{ package_name, "version number"}"になる。本チュートリアルを執筆時点で、最新の安定版のcowboyのバージョンは2.7.0だ。 {deps, [ {cowboy, "2.7.0"} ]}. rebar3は依存ライブラリが必要になった時に自動的にダウンロードするが、今回は正しく記述できていることを確認するために明示的にダウンロードしてみよう。 $ rebar3 upgrade 次に、アプリケーションリソースファイルを編集して、cowboyを先にスタートさせるようにする。今実装しているアプリケーションはcowboyを使っているので、cowboyを先にスタートさせておかなければならない。その設定方法として、"hello_server.app.src"を編集する。 $ vim apps/hello_server/src/hello_server.app.src このファイルの中身を抜粋すると以下のようになっている。 {application, hello_server, [... {applications [kernel, stdlib ]}, ... ]}. applicationsのtagged tupleの中のlistに"cowboy"を追加する。 {application, hello_server, [... {applications [kernel, stdlib, % カンマを忘れないこと cowboy % この行を追加 ]}, ... ]}. これはErlangのlistなのでカンマを忘れないようにすること。 HTTPサーバーの始動 容易が全て整ったので、HTTPサーバーを開始する。まず"apps/hello_server/src/hello_server_app.erl"を編集する。 vim apps/hello_server/src/hello_server_app.erl このソースコードはrebar3によって生成されたapplication behaviourを実装するためのモジュールだ。start/2を変更して、HTTPサーバーを開始する。 hello_server_sup:start_link(). HTTPサーバーを開始してコネクションをlistenするには、まずcowboy用語でルートと呼ばれているものを設定する。これは特定のリモートホストやパスをcowboy_handlerに関連付けるための設定だ。ルートを設定するにはcowboy_router:compile/1を使う。この関数は引数としてcowoy_router:routes()型を取る。型は"[{Host, Pathlist}]"となっている。PathList型を展開すると、"[{Host, [{Path, Handler, InitialState}]}"となる。 Dispatch = cowboy_router:compile([ { Host, [{Path, Handler, InitialState}]} ]), hello_server_sup:start_link(). を指定する。 だ。今回は"http://localhost/aa/bb/cc"のようなPathは受け付けないのでこれでいい。 Handlerにはhello_handlerというatomを指定する。これは後でcowboy_handler behaviourを実装するモジュールとして実装する。 特に状態は持たないので、InitialStateは空のlistを使う。 すべてまとめると、以下のようなコードになる。 , hello_handler, [] }] ]), hello_server_sup:start_link(). ルートが準備できたので、HTTPリスナーを開始する。ここでは素のHTTPを使うので、cowboy:start_cear/3を使う。引数はstart_claer( Name, TransportOpts, ProtocolOpts )だ。 NameはこのHTTPリスナーを識別するための名前で、ErlangのTermであればなんでもよい。通常はatomが使われる。ここでは"hello_listener"を使う。 TransportOptsには様々なオプションがあるが、このチュートリアルではlistenするポートを指定するだけだ。今回はHTTPサーバーのポートはは通常80だが、今回は8080を使うので、""となる。 ProtocolOptsでは先程設定したrouteを指定する。ProtocolOptsの型はmapで、envというキーがあり、値はdispatch型だ。ここに先程束縛したDispatch変数を指定する。 成功した場合、start_clear/2は{ok, pid}を返す。okのtagged tupleに束縛することで失敗時のことはapplication behaviourにまかせよう。 Dispatch}} ), hello_server_sup:start_link(). 接続の処理 HTTP listenerの用意が出来たので、やってきた接続要求を処理していく。そのためにはさきほどのhello_handlerを実装しなければならない。これはcowboy_handler behaviourとして実装する。まず新しいソースファイルを作成する。 $ vim apps/hello_server/src/hello_handler.erl まず基本的なところを埋めていこう。 {ok, Req, State}. Reqはリクエストとレスポンスを保持している。Stateは好きに使える状態だが今回は使わないので空のlistとする。 やるべきことは、HTTPステータスコードとして200を返し、ヘッダーのcontent-typeとしてはtext/plainを指定し、コンテンツは"hello,world"とするだけだ。これにはcowboy_req:reply/4を使う。引数の型は"reply(Status, Headers, Body, Req)"だ。 StatusはHTTPステータスコードで型はnon_reg_integer()もしくはbinary()だ。今回は200を指定する。 HeaderはHTTP headerをmap()で指定する。今回は"content-type"を"text/plain"にする。 を指定する。 Reqは現在のReqオブジェクトだ。 replyは新しいReqオブジェクトを返す。これ以降Reqオブジェクトを使う際には、この新しいReqオブジェクトを使わなければならない。 init/2のコードは以下のようになる。 , Req ), {ok, Req, State}. プログラムの実行 $ rebar shell 確認しよう。 $ curl "http://localhost:8080/" hello,world 次はErlangのエラー処理について書こうと思う。Erlangのエラー処理はその場で処理を中断して無視していい場合は簡単だが、エラーに明示的な対処が必要だととたんに面倒になる。
0 notes
Text
Planning Of Pre Production Documents
Castlist: Saad Fareed
Proplist: Saad Fareed
Storyboard: Ghaus
Tramlining: Ghaus
Shot list: Ghaus
Sketches: Yusra
Mood board: Yusra
Floorplan: Me
Location List: Yusra
Wardrobe List: Me
We took auditions randomly
0 notes
Quote
Commercial property portal PropList is to launch a free, cycling-themed networking event later this year. from Property Week - All the latest news https://ift.tt/2FpN8Os
http://realestateiksa.blogspot.com/2019/03/propbike-2019.html
0 notes
Text
Prop List
The use of props will be very minimalistic in my opening sequence, as I will be filming in a forest and a graveyard so the narrative does not require materialistic items. However, I will need some props such as the empty pill bottles and so I created a list of the props alongside which shot they will be featured in to enable me to be organised and to make filming as effective as possible.
0 notes
Photo
#my2015photo #productionmeeting #ohdragontheatre #completeworks #proplist
0 notes
Text
you know you are a stage manager when:
the most annoying thing about compiling the prop list to send to the set designer/prop master, is choosing which method of list making to use, to best include the list you compiled plus the list of personal props that the directer wants you to include from the actors. which you think is some what redundant...
i'm thinking of melding the lists into one and stating in parenthesis if it is something an actor added.
the only issue at the moment is a lot of the actors are bringing in props, and then getting confused when i tell them that it is just for rehearsal and that the prop master will be getting other props for them to use. unless they want to donate the prop to the play, but they should only do that if they are okay with possibly not seeing the prop again.
^that is what is bothering me. /sigh
333 notes
·
View notes
Text
Planning Of Pre Production Documents
Castlist: Saad Fareed
Proplist: Saad Fareed
Storyboard: Ghaus
Tramlining: Ghaus
Shot list: Ghaus
Sketches: Yusra
Mood board: Yusra
Floorplan: Me
Location List: Yusra
Wardrobe List: Me
We took auditions randomly in a panal
0 notes