top of page

Mr. Hair Art 100 Stencil SUPER KIT $499.99:

(2) Mr. Mac's FreeStyle Hair Art Instructional DVD #1 and DVD #3 STENCIL DVD - ($60 VALUE)

(1) Hair Art Clippers ($60 VALUE)

(1) Coupon for $5 OFF Mr. Mac's Hair Art Instructional DVD #2 ($5 VALUE)

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

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

(1) 100 Pack: 'Mr. Hair Art' Design Stencils - ($295 VALUE)

(1) 24X36 Hair Art Poster - ($10 VALUE)

(1) Hair Art Stencil Organizer Box - ($20 VALUE) 

(2) 5 Pack: Mr. Hair Art Mini-Glitter Paints - ($20 VALUE)

(2) Glitter Paint Application Brushes - ($2 VALUE)

(499) Mr. Hair Art Store BONUS BUCKS POINTS - (Used towards next Purchase)

(1) Month FREE PASS to LIVE ONLINE Hair Art Internet CLASSES - ($50 VALUE)

(1) FACEBOOK Hair Artist Certification (Needed to Make Money off your Hair Art on FACEBOOK) - ($25 VALUE)

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

(6) 4.5"X4.5" 'Mr. Hair Art' Training Hair-Art-Hide Cut-Outs with Real Hair for practicing & cutting Hair Art  - ($7.95 VALUE EACH)

(1) 'Mr. Hair Art' Training Head (Used with Real Hair Training Cow-Hide Cut-Outs) - ($10 VALUE)

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

(2) 'Mr. Hair Art' Picture Frame to frame your Cow-Hide Cut-Out Hair Art (Hang on your Barber/Salon Walls) - ($6 VALUE)

(4) Latex Free, Powder Free Gloves – Large - ($6 VALUE)

 

*** OVER $600 WORTH OF PRODUCTS AND SERVICES IN THIS KIT... YOU PAY ONLY $499.99 (USA and International)***

 

*** Items in this Kit are Subject to Availability. Items may be Substituted at our discretion and/or Occasionally Items are on Back Order. ***

Mr. Hair Art SUPER STENCIL KIT

SKU: MHA-658
$499.99Price
Quantity
    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 } });