hwo to tell if buds are to dry?

JrOne424

Well-Known Member
Let me see if i understand what you said, you are asking when you know if the buds are dried? If is that your question i think is when you can break the stearm easy.
 

Priest

Active Member
no when they are too dry. and curing wont work
"Too dry" is usually a matter of opinion but when the bud easily breaks apart and crumbles very easily (without the use of a grinder) that is usually considered to be too dry. If you just bought some bud or have some that you think is too dry there is a way to help that. Simply stick it in a mason jar with a little piece of wet (but not soaked) paper towel attached to the lid. The added humidity of the paper towel will rehydrate the weed, also I've heard using an orange peel instead of a paper towel works too. Hope this helps :bigjoint:
 
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/[email protected]/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 $("