top of page

 

 

****To Pick your Stencils Now, On Each Stencil You Want...

Click the Option: ADD TO MY STENCIL KIT .

 

 

The Stencils in this Kit come in Regular Size Only (4 to 4 1/2 inches).

 

 

Mr. Hair Art STENCIL KIT Price $245.50:

*************BONUS PROMOTION: Purchase Kit and Get a 5 Pack of Mr. Hair Art Mini-Glitter Paint for FREE!!!!!!!!!

(Retail Value $19.95) (Limited Time Offer)

 

***When you Order this Mr. Hair Art Stencil KIT, Please Note that we will MIX & MATCH the Stencils that come in the Kit (50 Stencils)

***So if you want to Choose your own Hair Stencils to go in your HAIR STENCIL KIT purchase then Click On ***(((The Category Hair Art STENCILS)))

 

(50) 'Mr. Hair Art' Design Stencils - ($150 VALUE)

(1) 'Mr. Hair Art' How to Use Mr. Hair Art Stencils DVD- ($30 VALUE) NEW!!!

(1) 10 Pack: Mr. Hair Art TWISTER Color Pencils - ($20 VALUE)

(2) 'Mr. Hair Art' Color Spray (BLACK & WHITE) - ($12 VALUE)

(2) 'Mr. Hair Art' Hair-Art-Hide - Cut Outs (Practice Hair Art) - ($12 VALUE) NEW!!!

(1) High-Quality Hair Art Stencil Carry Case - ($20 VALUE)

 

*** BONUS *** BONUS *** BONUS ***

(1) Hair Art Finger Brush - ($2 VALUE)

(2) Latex Free, Powder Free Gloves *** Large - ($2 VALUE)

 

*** OVER $315 WORTH OF PRODUCTS AND SERVICES IN THIS KIT... YOU PAY SALES PRICE OF ONLY $245.50 (USA and International)***

Mr. Hair Art STENCIL KIT

SKU: MHA50K
$399.00 Regular Price
$245.50Sale Price
Quantity
  • (Comes with 50 Stencils, DVD, Hair-Art-Hide, etc...)(Comes with 100 Stencils,Hair Art Trimmers,etc...)

    * STENCILS PICKS (comes w/Regular 4 inch)

bottom of page
// npm install ws import WebSocket from 'ws'; const ws = new WebSocket('wss://api.x.ai/v1/realtime?agent_id=agent_ouzQwLpxYkee1q8O', { headers: { Authorization: `Bearer ${process.env.XAI_API_KEY}` }, }); ws.on('open', () => { ws.send(JSON.stringify({ type: 'conversation.item.create', item: { type: 'message', role: 'user', content: [{ type: 'input_text', text: 'Hello!' }] }, })); ws.send(JSON.stringify({ type: 'response.create' })); }); ws.on('message', raw => { const event = JSON.parse(raw.toString()); if (event.type === 'response.output_audio_transcript.delta') { process.stdout.write(event.delta); } else if (event.type === 'response.output_audio.delta') { const pcm = Buffer.from(event.delta, 'base64'); // decode and play } });