Wake n Bake, Nothing Better!

RetiredToker76

Well-Known Member
That little kit was the first nectar collector I ever bought. Enjoy!

The first one I had years ago was a much higher quality. I went to the headshop to get some raw cones and saw this little piece sitting there for $25. The sales girl was cute, flirty, and knocked $5 off the price when I asked how much it was. I've had about 4g of homemade oil folded up in parchment for almost 5 moths and decided it was time to do something with it.

It was either this or make a tincture, so I decided I wanted clean dabs again. After three hits, I already know I'll be getting a higher grade one within the next week.
 

Metasynth

Well-Known Member
The first one I had years ago was a much higher quality. I went to the headshop to get some raw cones and saw this little piece sitting there for $25. The sales girl was cute, flirty, and knocked $5 off the price when I asked how much it was. I've had about 4g of homemade oil folded up in parchment for almost 5 moths and decided it was time to do something with it.

It was either this or make a tincture, so I decided I wanted clean dabs again. After three hits, I already know I'll be getting a higher grade one within the next week.
Yeah I’m a big fan of nectar collectors. I am waiting on an electric one to be delivered to try out.

Glad the girl knocked off a couple bucks for ya! $20 isn’t a bad price, I think I paid $10-$15, and I live in an area over saturated by smoke shops…and that was also maybe close to a decade ago. Fucking inflation…lol
 

curious2garden

Well-Known Mod
Staff member
The first one I had years ago was a much higher quality. I went to the headshop to get some raw cones and saw this little piece sitting there for $25. The sales girl was cute, flirty, and knocked $5 off the price when I asked how much it was. I've had about 4g of homemade oil folded up in parchment for almost 5 moths and decided it was time to do something with it.

It was either this or make a tincture, so I decided I wanted clean dabs again. After three hits, I already know I'll be getting a higher grade one within the next week.
I'm very happy with my Nectar Collector Pro Mini. Expensive but seems worth it. The stand was worth it too.
 

DarkWeb

Well-Known Member
i'd bet......hard to believe there was snow on the mountain at that temp........or at least it was melting..
It happens. We do usually have a few days like that every season. Hopefully not too many because if it starts melting that fast it can cause many problems with the snow, the rivers, roads and houses.

At the end of a season a few nice sunny days are awesome. I love spring skiing :blsmoke:
 

BudmanTX

Well-Known Member
It happens. We do usually have a few days like that every season. Hopefully not too many because if it starts melting that fast it can cause many problems with the snow, the rivers, roads and houses.

At the end of a season a few nice sunny days are awesome. I love spring skiing :blsmoke:
i really need to ck off the bucket list....sking? never been.....think we talked about that earlier this year......
 
Top
// Add this to your XenForo extra.js template or include in a separate JS file // 1. Basic Twemoji Implementation $(document).ready(function() { // Load Twemoji library $.getScript("https://unpkg.com/twemoji@14.0.2/dist/twemoji.min.js", function() { // Function to replace native emojis with Twemoji function replaceTwemoji() { // Parse the DOM to replace emojis twemoji.parse(document.body, { folder: 'svg', ext: '.svg', callback: function(icon, options) { // Exclude certain characters if needed switch (icon) { case 'a9': // © copyright case 'ae': // ® registered trademark case '2122': // ™ trademark return false; } return ''.concat(options.base, options.folder, '/', icon, options.ext); } }); } // Initial replacement replaceTwemoji(); // Watch for new content (like when loading new posts) $(document).on('xf:layout', function() { replaceTwemoji(); }); // 2. Modify the XenForo emoji picker to use Twemoji if (XF.EmojiCompleter) { // Override the default emoji completer XF.EmojiCompleter = XF.extend(XF.EmojiCompleter, { insertEmoji: function(shortname) { // Call the original method to insert the emoji this.__super(shortname); // After insertion, replace with Twemoji setTimeout(function() { replaceTwemoji(); }, 10); } }); // Replace emojis in the picker $(document).on('shown.bs.dropdown', '.js-emojiContainer', function() { setTimeout(function() { twemoji.parse(document.querySelector('.js-emojiContainer'), { folder: 'svg', ext: '.svg' }); }, 50); }); } }); }); // 3. Add CSS for proper emoji display $(document).ready(function() { // Add CSS for emoji styling $("