Tips Table Viewer

id stat title cat subCat descr comments links tags moreInfo attachments tipCreate tipMod Actions
405 I Stimpmeter - Golf Putting Green Speed golf How to build a stimpmeter: Drop the ball from 30 inches up the stimp meter The angle of the Stimpmeter needs to be at 20 degrees Held at 20 degrees, the 30 inch mark is approximately 10 1/4 inches off the ground Math: 30 inches x sine (20 degrees) = 10.2606043 inches – 10 1/4 should be close enough. https://marylandgolfcamps.com/how-is-a-golf-stimpmeter-made.html o to your home center and get a 4 foot section of moulding called "cove moulding" ( $4.00). This moulding is flat on the back with a perfect golfball size groove in the center. Cut a length to 36". The groove for the ball should be 6" from the top. With a coping saw, carefully notch a 1/8" wide groove into the wood at 6". Place a ball in this groove and test to see if it releases when you raise the top side. The correct release point is 20 https://oldduffergolf.com/putting-stimpmeter-diy/ golf, https://marylandgolfcamps.com/how-is-a-golf-stimpmeter-made.html 2026-04-14 08:09:00 2026-04-14 08:16:00
404 I Ultrabase, Xgrass golf putting Monterey, Kiawah Putting Greens Installation Guide PDF Putting Cup Install: https://www.youtube.com/watch?v=MGyEKQxYCyw https://www.youtube.com/watch?v=MGyEKQxYCyw putting green 2026-04-11 21:25:00 2026-04-11 21:25:00
403 I Putting green install Golf Backyard Kiawah Monterey xgrass Ultrabase http://tomtuckergolf.com/images/DIYinstall.pdf Putting green 2026-04-10 06:43:00 2026-04-10 06:45:00
402 I Bottomless table saw sled Woodworking Jig No bottom board Two miter gauges or two supports https://m.youtube.com/watch?v=l6jmm4dp5ng Jig, 2026-04-09 08:17:00 2026-04-09 08:17:00
401 I Cut straight edge with Japanese saw woodworking jig jig to make sure you cut straight https://youtube.com/shorts/r14FeUNPQI4?si=PIKEdn2s0cqV6DlR woodworking, jig 2026-04-01 08:32:00 2026-04-01 08:32:00
400 I Stock info - with api stocks api financial models api - stock info https://fid.intellihometech.com/analystRating.php target consensus: $ stock grades summary$ quote: price, change, low/high, year high/low, Price Avg 50/200, open, prev close$ https://site.financialmodelingprep.com/playground/stable?url=price-target-summary https://site.financialmodelingprep.com/playground/stable?url=price-target-summary api,financial 2026-03-30 13:09:00 2026-03-30 13:09:00
399 I Spinner https://codepen.io/corbpie/pen/WNZYqbb Spinner css js Add to template Try, code 2026-03-30 08:11:00 2026-03-30 08:11:00
398 T Code basics for ai query Code Ai Min requirements Php bs5 html MySQL error handling datatable responsive modular reusable components app to lookup multiple stock symbols return current price high low analyst rating target price etc https://write.corbpie.com/using-the-yahoo-finance-stock-api-with-php/?utm_source=perplexity Code 2026-03-30 08:04:00 2026-03-30 08:04:00
397 I Gmail - Turn off conversation mode gmail tips To Turn off Conversations Gear->General->Conversation Off https://support.cloudhq.net/how-to-turn-off-threaded-conversations-in-gmail/ gmail 2026-03-25 08:45:00 2026-03-25 08:45:00
396 I Clipboard Manager - Paste app clipboard New Clipboard app - Paste to replace mace SHFT->CMD->V - Show History Shift-Command-V - Show History https://pasteapp.io/ clipboard, apps 2026-03-24 09:24:00 2026-03-24 09:24:00
395 I Old golf drivers Golf Best old drivers https://www.golfmonthly.com/features/5-old-drivers-that-modern-technology-still-cant-beat Golf 2026-03-19 14:13:00 2026-03-19 14:13:00
394 I Table saw fence guide Wood Shop Jig over fence https://www.facebook.com/share/v/1Acs8LKyRr/?mibextid=wwXIfr Jig 2026-03-17 16:33:00 2026-03-17 16:33:00
393 I Google Sheets - Gmail Count of Senders gmail Get a count of senders to mail account and store in sheets. // Gmail search: Jan 1–31, 2026 (inclusive) const GMAIL_SEARCH = 'after:2025/12/31 before:2026/02/01'; function exportSenderCategoryCountsToSheet() { const sheet = SpreadsheetApp.getActiveSheet(); sheet.clearContents(); sheet.getRange(1, 1).setValue('Name'); sheet.getRange(1, 2).setValue('Email'); sheet.getRange(1, 3).setValue('Category'); sheet.getRange(1, 4).setValue('Count'); // Map key: email + '|' + category -> { name, email, category, count } const senderMap = new Map(); let start = 0; const pageSize = 100; while (true) { const threads = GmailApp.search(GMAIL_SEARCH, start, pageSize); if (threads.length === 0) break; threads.forEach(thread => { // Get category from the THREAD (labels live here) const threadLabels = thread.getLabels(); const categoryLabel = threadLabels .map(l => l.getName()) .find(label => label.toUpperCase().startsWith('CATEGORY_')) || ''; const category = categoryLabel ? categoryLabel.replace(/^CATEGORY_/i, '') : ''; // Now iterate messages to count per sender within this thread thread.getMessages().forEach(msg => { const rawFrom = msg.getFrom(); // "Name <email@domain>" or "email@domain" let name = ''; let email = ''; const m = rawFrom.match(/^(.*)<([^>]+)>$/); if (m) { name = m[1].trim().replace(/^"(.+)"$/, '$1'); // strip outer quotes email = m[2].trim(); } else { email = rawFrom.trim(); name = ''; } if (!email) return; const key = email + '|' + category; const existing = senderMap.get(key); if (existing) { existing.count += 1; } else { senderMap.set(key, { name, email, category, count: 1 }); } }); }); start += pageSize; if (start >= 2000) break; } const rows = Array.from(senderMap.values()) .map(({ name, email, category, count }) => [name, email, category, count]) .sort((a, b) => (a[2] || '').localeCompare(b[2] || '') || b[3] - a[3] || a[0].localeCompare(b[0]) || a[1].localeCompare(b[1]) ); if (rows.length > 0) { sheet.getRange(2, 1, rows.length, 4).setValues(rows); } } gmail 2026-03-17 11:45:00 2026-03-17 11:45:00
392 T Bunker shot tips Golf Bunker How to get out of trap 1 open face of club before grip 2 shuffle feet in pressure left 3 lower handle hands 4 create an L 5 don’t drag handle push it out 6 keep club head facing you High loft shots every time https://www.facebook.com/share/r/1ZyMti5jCR/?mibextid=wwXIfr Golf 2026-03-14 07:49:00 2026-03-14 07:49:00
391 I Stone Size stone turf Simple way to remember: #57 = bigger rocks #67 = medium rocks #89 = small gravel Layers ------- turf (infill on top of turf) silica sand infill - 1.5 – 2.5 lbs of silica sand per sq ft stone dust or #89 (leveling layer) 3–4" compacted crushed stone (#57 or #67) native soil How It Compares to Other Common Stone Sizes Stone size Approx size Typical use #57 1" – 1/2" driveways, drainage #67 3/4" – 3/8" drainage, turf base #89 3/8" – 1/8" leveling layer stone dust / screenings powder top leveling base XGrass Short Game Elite (Most “Tour-like”) 4 This is the turf most installers use for serious short-game practice. Why pros use it: Designed to accept full approach shots and pitches ~1.25? pile height Sand-filled system holds spin and backspin Mimics bentgrass gr stone 2026-03-11 01:00:00 2026-03-11 01:12:00
390 m Lower back pain exercises exercise Positions to fix back pain https://youtu.be/HkniypvkdN0 exercise 2026-03-05 11:29:00 2026-03-05 11:29:00
389 f Tips app app tips Tips apps Todo/Fix - Add ability to convert long link to bitly - ability to make text md - beautiful - make sure text field can hold all text what is max size? - idea to view tip in we page? Open in new web page - edit buttons should appear on left part of screen or use key stroke to open in correct format - move action button to first column - focus in search on open - records found at top under search - limit size of chars in display table iPhone Test - Can you do a search for not ; in status - not I Define Status field - T Todo - F - Finished - I - Info - x - need to update - d - Delete - u - unknown - define todo 2026-03-02 10:18:00 2026-03-14 07:57:00
388 I Auoshi Drone Take Pictures/videos drone Setting up the Auoshi drone app involves installing the companion app, connecting your phone to the drone’s Wi-Fi hotspot, pairing the devices, and calibrating the drone before flight. Step 1 — Download the App Go to the App Store (iOS) or Google Play Store (Android). Search for the RC GPS app or check the QR code provided in your drone’s manual 2 . Download and install the app on your phone. Ensure that your device runs Android 5.0 or higher if applicable 1 . 2 Sources Step 2 — Power On the Drone Remove the battery and insert it securely into the drone. Turn on the drone by pressing the power button until the LED indicator flashes 1 . The drone will automatically start broadcasting a Wi-Fi hotspot. 1 Source Step 3 — Connect to the Drone On your phone, go to Wi-Fi settings and find the drone’s Wi-Fi network (SSID). No password is typically required 1 . Connect your phone to this network and then exit the Wi-Fi settings menu. 1 Source Step 4 — Launch the App and Pair Devices Open the RC GPS app on your phone. The app should detect your drone automatically 2 . If it doesn’t detect, manually select the drone in the app using available on-screen instructions. Grant any permissions requested by the app, such as camera or location access. 2 Sources Step 5 — Calibrate the Drone Place the drone on a flat surface for calibration. Use the gyro and compass calibration buttons in the app or on the drone as instructed in the manual 1 . Ensure the compass is corrected by spinning the drone as directed until the controller signals success. 1 Source Step 6 — Optional Configuration Adjust drone settings in the app, such as flight mode, speed limits, altitude, and camera angle 2 . If flying with a controller in tandem, make sure it is compatible and powered off before using the phone app as the primary controller 1 . 3 Sources Step 7 — Take Off Press the unlock button in the app to start the propellers. Use either the on-screen joysticks or gesture/voice controls for flight. The drone supports headless mode, one-key takeoff/landing, and follow/orbit modes 2 . Start capturing photos or video via app controls or gestures. 2 Sources Step 8 — Troubleshooting If the drone isn’t detected, disconnect from Wi-Fi and reconnect, ensuring the drone is powered on and the controller is off 1 . For camera issues, verify the app is connected to the drone and permissions are granted. Replace or check propellers if the drone flies unstably. Always fly in safe, open areas away from people or obstacles 2 . 2 Sources By following these steps, your Auoshi drone should connect to your mobile app, allowing both control and live camera feed access for a safe and enjoyable flying experience. https://www.bing.com/ck/a?!&&p=e61cbbc9a265ade5b92c5e731360f9f53144bc0e5feae00aa9e06862517b0ae7JmltdHM9MTc3MjQwOTYwMA&ptn=3&ver=2&hsh=4&fclid=33df5e96-93d5-60f5-3b44-480b925e6153&psq=how+to+setup+the+app&u=a1aHR0cHM6Ly93d3cubWFudWFsc2xpYi5jb20vbWFudWFsLzMw drone 2026-03-02 10:14:00 2026-03-02 10:14:00
387 I User laser level Level Drop 12” over 100 The higher the number on the rod the lower point Grade 1” every 8’ https://youtu.be/WvTcApMMxX8?si=ardYLmi-_7_E5-sp Level 2026-02-27 13:50:00 2026-02-27 13:53:00
386 I Create wire insert Jig Create insert to allow screw in and out https://youtube.com/shorts/6EIycYV0Ih0?si=ukj2A4399XMHrOEg Jig 2026-02-27 13:18:00 2026-02-27 13:18:00
385 I Personna square blades Tools Blades Corey recommends for turf https://www.tools4flooring.com/personna-61-0850-017-carpet-trimmer-blades-100-pack.html Turf 2026-02-25 08:45:00 2026-02-25 08:45:00
384 I Poor golf shoulder turn Golf Poor golf shoulder turn https://www.facebook.com/share/r/1Y5dTHZqYc/?mibextid=wwXIfr Golf 2026-02-23 00:06:00 2026-02-23 00:06:00
383 I Putting green Video Installs putting green Install : https://www.youtube.com/watch?v=6vg7sHXyiZI https://www.youtube.com/watch?v=6vg7sHXyiZI putting, 2026-02-21 06:24:00 2026-02-21 06:24:00
382 I Using Green Laser tools How to use laser level https://engineerfix.com/how-to-use-a-laser-level-for-grading/ tools 2026-02-17 21:34:00 2026-02-17 21:34:00
381 I How to grip clun Golf Correct grip Club in fingers not palm Left hand do stop; put club in hand Place club in crease of hand - hot dog in bun! Right hand swing dead grap club https://www.facebook.com/share/v/1H7EK8Bngf/?mibextid=wwXIfr Golf 2026-02-16 07:03:00 2026-02-16 07:03:00
380 I Back exercise Exercise Golf Lower back exercise for golf https://www.facebook.com/share/r/1965CG4513/?mibextid=wwXIfr Exercise, golf 2026-02-16 06:50:00 2026-02-16 06:50:00
379 I Grand Canyon Trip Winter trip https://www.facebook.com/share/r/1AoZStT3bP/?mibextid=wwXIfr Trip 2026-02-16 06:31:00 2026-02-16 06:31:00
378 I Golf swing over top Golf Stop over top swinging Drop club straight down! https://www.facebook.com/share/r/18GMfj4wJv/?mibextid=wwXIfr Golf 2026-02-16 06:29:00 2026-02-16 06:29:00
377 I Golf shot weights Golf Good weight distribution https://www.facebook.com/share/r/17wHjmidNq/?mibextid=wwXIfr Golf 2026-02-16 06:26:00 2026-02-16 06:26:00
376 h New Command Line Tools macOS tools Ripgrep, or rg, is what I reach for when I need to search inside files. It is especially useful when I know a file exists but have no idea what I named it. == LOCATE FILES rg - fast recursive search fd - fast file search locate - fast search of files in an index broot/br - visual display of directories Fzf is a general-purpose command-line fuzzy finder that turns any list into an interactive search interface. It does not come installed by default on most distributions, but once you use it, it becomes hard to live without. You can pipe almost anything into it. For example, ls | fzf lets you pick a file instantly without scrolling through a long list. As you type, results are filtered in real time using fuzzy matching that tolerates typos and abbreviations fzf is an interactive filter program for any kin https://www.msn.com/en-us/news/technology/these-7-terminal-tools-help-me-find-anything-fast/ar-AA1UbeiZ?ocid=msedgntp&pc=U531&cvid=086043cb4e014216a3fda4eb1ed32613&ei=28&cvpid=0de4cc3bc8c84839ebab480dd709dd0c macOS, apps 2026-02-15 09:10:00 2026-02-15 09:10:00
375 F Web tools WebTools PDF Photoshop It-tools Etc https://www.msn.com/en-us/news/technology/5-browser-based-free-tools-that-save-me-hours-every-week/ar-AA1VV2r2?ocid=sapphireappshare Tools 2026-02-10 01:05:00 2026-02-10 01:05:00
374 B Router Flattening sled Woodworking Jig How to Make a Router Sled to Flatten Slabs https://www.instructables.com/Ho-to-Make-a-Router-Sled-to-Flatten-Slabs/?linkId=68260273 Woodworking,jig,router 2026-02-06 06:54:00 2026-02-06 06:54:00
373 B Miter Saw dust hood DIY Miter Saw Hood – Build a Miter Saw Dust Hood https://learn.kregtool.com/plans/miter-saw-dust-hood/ Woodworking, mitre saw 2026-02-06 06:42:00 2026-02-06 06:42:00
372 J Table saw sled Woodworking Jig Table saw sled plans https://solarlivingsavvy.com/diy-table-saw-sled-ideas/?utm_source=Pinterest&utm_medium=organic Jig, sled,woodworking 2026-02-06 06:37:00 2026-02-06 06:37:00
371 I Country artists Music Country Julia Cole Kaylee rose Music 2026-02-03 16:19:00 2026-02-03 16:19:00
370 T Golf club swing drill Golf Swing with one piece Towel Tee Alignment stick https://www.facebook.com/share/v/18GRrT3qPK/?mibextid=wwXIfr Golf 2026-02-03 15:35:00 2026-02-03 15:35:00
369 I Putting stroke Golf Putting Arms body drill https://www.facebook.com/share/r/1KGEjZ6U6V/?mibextid=wwXIfr Golf 2026-02-03 15:24:00 2026-02-03 15:24:00
368 E Exercise back Exercise Finish Finish https://www.facebook.com/share/r/1HAD6jfJiH/?mibextid=wwXIfr Exercise 2026-02-03 14:31:00 2026-02-03 14:31:00
367 I Golf swing drill Golf Alignment stick through front belt loops https://www.facebook.com/share/r/175P71nyzy/?mibextid=wwXIfr Golf 2026-02-03 14:25:00 2026-02-03 14:25:00
366 T 10 putting mistakes Golf Putting 10 mistakes List them Finish https://www.facebook.com/share/v/185jecJipx/?mibextid=wwXIfr Golf, putting 2026-02-03 09:08:00 2026-02-03 09:08:00
365 I What is love Love Not love video https://www.facebook.com/share/r/183xB8NabA/?mibextid=wwXIfr Love 2026-02-03 08:55:00 2026-02-03 08:55:00
364 B Chat got tips Chatgpt Tips how to use works https://offers.hubspot.com/view/using-chatgpt-at-work?hubs_signup-url=offers.hubspot.com/using-chatgpt-at-work&hubs_signup-cta=submit&hubs_offer=offers.hubspot.com/using-chatgpt-at-work ChatGPT 2026-02-03 07:36:00 2026-02-03 07:36:00
363 B Tour edge wingman 803 Golf Putter $169 at golf superstore $10 off coupon Copy of spider https://mygolfspy.com/news-opinion/i-tried-another-sub-180-putter-this-is-getting-complicated/?utm_source=convertkit&utm_medium=email&utm_campaign=%E2%9A%A0%EF%B8%8F%20Don%27t%20Be%20DUMB%20-%2020523592 Buy, putter 2026-02-03 07:25:00 2026-02-03 07:25:00
362 a Md Viewer md Program to view md files: mdless ~/lbin/mdView ~/lbin/mdHelp.md md 2026-01-31 14:02:00 2026-01-31 14:03:00
361 i md test md # Markdown Cheat Sheet A compact reference of common Markdown patterns and GitHub?flavored extensions. --- ## Headings # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 --- ## Paragraphs and line breaks This is a paragraph. This is another paragraph. Line break with two spaces at end of line?? Second line. --- ## Emphasis **Bold text** *Italic text* ***Bold and italic*** ~~Strikethrough~~ --- ## Lists ### Unordered list - Item one - Item two - Nested item - Another nested item - Item three ### Ordered list 1. First item 2. Second item 3. Third item 1. Nested first 2. Nested second --- ## Task lists (GitHub?flavored) - [ ] Incomplete task - [x] Completed task - [ ] Another task --- ## Code ### Inline code Use `npm install` to install dependencies. ### Code block (fenced) ```bash echo "Hello, world" ls -la This is a master file of md commands markdown,md 2026-01-31 08:50:00 2026-01-31 08:50:00
360 U Golf training ideas Golf Training 1 ball under back foot 2 towel behind ball Improve impact https://www.facebook.com/share/r/16qxuwYwuL/?mibextid=wwXIfr Golf 2026-01-29 06:15:00 2026-01-29 06:15:00
359 T 4 swing tips like a pro Golf Swing tips Use split view to get text https://www.facebook.com/share/r/1BHMpy2Nnw/?mibextid=wwXIfr Golf 2026-01-29 06:05:00 2026-01-29 06:05:00
358 B Putting guidr Golf Putting Whygolf.com Dial in putting guide $69 Find on marketplace https://Whygolf.com Golf 2026-01-29 05:53:00 2026-01-29 05:53:00
357 T Stat categories Tips I Information T todo U update B buy Tip Idea Remember F future X unknown Unfinished M more info needed Tips 2026-01-29 05:32:00 2026-01-29 05:52:00
356 T Grand canyon national parks Trip Week trip to national parks https://liketk.it/56koQ Trip 2026-01-29 05:31:00 2026-01-29 05:31:00
355 f Optimize AI - REFACTOR reformat/repurpose ai programming Keywords to get AI to fix code: re-factor Optimized, readablility, Security, Standards, Performance, re-use, modularize functions, use common functions 1. How to Frame Your Prompt: Don't just paste code. Surround it with instructions that force the AI to think like a specialist. - Use the "Role-Context-Task" Framework. Role: "Act as a Senior Backend Engineer and Security Researcher."Context: "This is a Node.js function for a high-traffic production API using a PostgreSQL database."Task: "Review this code for N+1 query issues and SQL injection vulnerabilities. 2. "Force Clarification First. If the code is complex, use a "Question First" strategy:"I want ai, programming 2026-01-28 11:35:00 2026-02-10 01:08:00
354 i Database Setup database File: ./php/dbConfig.php: ?php // common/php/dbConfig.php // Minimal, no echo, no ENV noise // Host: choose one and keep it simple first $DB_HOST = '127.0.0.1'; // use 127.0.0.1 on macOS to avoid socket issues // $DB_HOST = '209.182.212.74'; // uncomment to test remote $DB_USER = 'intel145_drumhill'; $DB_PASS = 'Rick-Beach-732-319-6727-1P'; $DB_NAME = 'intel145_apps'; $DB_TABLE = 'fidelity'; find file that is hidden that has the db info /opt/homebrew/var/www/rbutare/common/php/dbConfig.php mysql 2026-01-28 11:29:00 2026-01-28 11:29:00
353 I Chinese meridian stomach Medicine Chinese stomach pressure points https://www.chinmedicine.org/the-stomach-meridian-surprise-chinese-medicines-best-kept-secret/ Stomach, medicine 2026-01-28 09:40:00 2026-01-28 09:40:00
352 I Co pilot plan Putting gree Putting ai plan https://copilot.microsoft.com/conversations/join/YnfcspqwHHdhPhogbEUjf Putting 2026-01-26 16:24:00 2026-01-26 16:24:00
351 I Export notes Export Notes Apple Notes is great for quick capture, but it can feel a bit like a "walled garden" when you try to move things out. Depending on whether you want to move a single note or your entire library, here are your best moves:  1. Export as PDF (Best for Single Notes) This is the most "official" way to get a note out while keeping your images and text formatting exactly as they appear. • On Mac: Select the note -> Go to File in the top menu bar -> Export as PDF.  • On iPhone/iPad: Tap the Share icon (the square with an arrow) -> Scroll down and tap Print -> Use two fingers to "pinch open" on the preview image (this turns it into a PDF) -> Tap the Share icon again to save it to Files or send it. 2. The "Copy to Pages" Shortcut (Best for Editing) If you need to turn a note into a document you can actually edit in a word processor: • Open the note and tap/click the Share icon. • Select Copy to Pages. • Once it’s in Pages, you can export it as a .docx (Word) or .rtf file. 3. Bulk Export via iCloud (Best for Total Backups) If you have hundreds of notes and want to move them all to a different service (like Google Drive or a hard drive), you shouldn't do it one by one. Use Apple’s Data and Privacy tool: 1. Go to privacy.apple.com and sign in. 2. Select "Request a copy of your data." 3. Check the box for Notes. 4. Apple will prepare a download link with all your notes (usually in a mix of .txt and .html formats). 4. Third-Party Tools (The "Power User" Way) If you are moving to a specific competitor, many apps have "Importers" that do the heavy lifting for you: • Evernote/Notion: Both have built-in tools to import Apple Notes directly if you sync them to a Mac. • Exporter (Mac App Store): There is a highly-rated app simply called "Exporter" that converts Apple Notes into Markdown (.md) files, which is the gold standard if you're moving to apps like Obsidian or Bear. Which method should you choose? Export, notes 2026-01-26 11:12:00 2026-01-26 11:12:00
350 I 4 open source apps Apps Find artocle 4 lightweight open-source tools that replaced all of my paid apps 4 lightweight open-source tools that replaced all of my paid apps Apps 2026-01-24 13:47:00 2026-01-24 13:47:00
349 B Microjig best price Tools MicroJig Matchfit Dovetail Clamp Pro $99 10% off coupon in email https://www.oaktreesupply.com/products/microjig-matchfit-dovetail-clamp-pro?currency=USD&variant=29398087467126&stkn=edee05422201&utm_source=chatgpt.com Tools 2026-01-17 09:38:00 2026-01-17 09:38:00
348 I Putter Golf Putter Tommy armor impact no 3 cab Will wright Golf 2026-01-17 07:58:00 2026-01-17 07:58:00
347 i Gimp Key Pages gimp == Gimp Info == - https://www.gimp.org/tutorials/ - https://www.gimp.org/ - https://docs.gimp.org/ 1 2026-01-15 00:47:00 2026-01-15 00:47:00
346 I No board sled Woodworking Jig Why have a base board? Easier storage Less secure square if bumped Wilkins jigs https://www.facebook.com/share/v/17zxFFZ66r/?mibextid=wwXIfr https://www.facebook.com/share/r/17qz75pB8P/?mibextid=wwXIfr Woodworking, jig 2026-01-14 05:46:00 2026-01-14 06:04:00
345 i Zoom Control for images zoom Integrated Zoom: Clicking any thumbnail opens a high-resolution "Deep Zoom" viewer using OpenSeadragon. https://openseadragon.github.io/ zoom, images 2026-01-11 21:26:00 2026-01-11 21:26:00
344 i Septic septic How to take care of? Check for loads over weight https://content.ces.ncsu.edu/septic-system-owners-guide septic 2026-01-05 10:28:00 2026-01-05 10:28:00
343 i 17th Hole Bunkers - Pebble Beach Approximate layout in diagram form Using only what is known from aerials and descriptions, the layout of the green and sand around 17 can be represented schematically like this (not to scale): text Ocean / Carmel Bay ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ Long Rear Bunker ~ ~ (narrow, crescent) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ [Back of Green] ????????????????????? ? Narrow ? ? “waist” of ? ? hourglass ? Front-Left ????????????????????? Front-Right Greenside Bunker ? Bunker (large, wraps front-left) ? [Front of Green] Large Front Bunker Complex (main carry from tee; wraps across front) Tee box ?????????????????????????????????????????? Direction of play A large primary bunker guards the entire front of the green, essentially the main carry from the tee. ? Smaller greenside bunkers sit short?left and short?right of the green surface, tying into that main front bunker complex. ? A thinner, elongated bunker or sandy strip lies behind the back portion of the hourglass green to catch long shots. ? Why exact dimensions cannot be given Pebble Beach’s public materials, hole guides, and architecture articles describe the location, strategic role, and shapes of bunkers but do not publish trap length/width/depth in yards or feet. ? Course architecture drawings with precise bunker dimensions, if they exist, are held privately by the resort or the architects and are not available in open sources. ? If you want, an approximate scale diagram could be built by tracing from a high?resolution overhead (e.g., Google Earth), but that would still be an estimate rather than official dimensions. https://www.perplexity.ai/search/show-dimensions-of-17th-hole-p-jvKlWG0MTvWeHvSxeAQ8Ew backyard, putting green, 2026-01-04 20:06:00 2026-01-14 08:24:00
342 i Pebble Beach 17th Holehttps://www.pebblebeach.com/content/upload backyard green This is the hole I am making for the two greens 17th Hole Pebble Beach Hourglass Green 1st Green The Southhampton Back bunker ##################### ### ### ## Back lobe ## ## ## ## ## ## /\ ## ## / \ ## ## / \ ## ## / \ ## ## / waist \ ## ##\ / ## ##\ / ## ##\ /## ## https://www.pebblebeach.com/content/uploads/hole17-map-1560x600.jpg backyard, putting green, 2026-01-04 19:40:00 2026-01-04 19:52:00
341 I Chipping towel Golf Use towel to improve chipping https://www.facebook.com/share/r/1722Khonvv/?mibextid=wwXIfr Golf, chip 2026-01-02 08:46:00 2026-01-02 08:46:00
340 I Swing rotation Golf Swing with stick in belt https://www.facebook.com/share/r/1CsSa4f638/?mibextid=wwXIfr Golf 2026-01-01 22:01:00 2026-01-01 22:01:00
339 I Jig cut strips Jig Cut strips with hold down https://www.facebook.com/share/r/16dYq7t14o/?mibextid=wwXIfr Jig 2026-01-01 21:57:00 2026-01-01 21:57:00
338 T Capture Screen macos == Screen Capture options == - Cmd->Shft-3 - Full screen - Cmd->Shift->4 Partial Screen Draw - Cmd-Shift-5 - Options for full screen macos,capture 2025-12-31 10:53:00 2025-12-31 11:02:00
337 i VSC - Choosing the right AI vsc == Model type Models == == Fast coding == - GPT-4o -iClaude Sonnet 3.5 - Claude Sonnet 3.7 - Gemini 2.0 Flash == Reasoning/planning == - Claude Sonnet 3.7 Thinking - o1 - o3-mini == @workspace agent == - @workspace agent to have better focus on entire workspace - i.e. @workspace agent complete full documentation https://code.visualstudio.com/docs/copilot/copilot-tips-and-tricks#_choose-your-ai-model vsc, ai 2025-12-30 14:07:00 2025-12-30 14:18:00
336 i VSC - Git Hub Integration vsc setup walks you thru how to setup https://code.visualstudio.com/docs/copilot/getting-started vsc 2025-12-30 14:06:00 2025-12-30 14:06:00
335 i VSC - md files for doumentation | Markdown File | Purpose | Where It Appears | |------------------------------|--------------------------------------------|-----------------------------| | README.md | Overview, usage, screenshots | Extensions, VS Code repo | | CHANGELOG.md | Version history | Extensions, VS Code repo | | vsc-extension-quickstart.md | Developer instructions for new extensions | Extension templates | | docs/.md* | Official VS Code documentation | VS Code docs site | | CONTRIBUTING.md | Contribution guidelines | Extensions, VS Code repo | | LICENSE.md | Licensing information | Extensions, VS Code repo | | SECURITY.md | Security reporting | Some extensions | | Markdown tooltips / hovers | In-editor | In-editor | https://copilot.microsoft.com/chats/2HwKRvnMaDqQDnuvx2aHb vsc, docs 2025-12-30 13:57:00 2025-12-30 13:57:00
334 I MacOs Teminal - Clear Screen macos terminal == Copy Screen Contents == - Cmd + K Cmd + K Entire Screen & Scrollback to clear screen - CMD->A to select all of screen - CMD->C to copy screen None macos 2025-12-29 18:36:00 2025-12-29 18:40:00
333 i Mysql Startup - Tips mysql Show DataBases; CREATE DATABASE IF NOT EXISTS intel145_apps; - show Databases; - use intel145_apps; - show TABLES; - Describe Tables; == Commands to test Database == run dbTest.php dbQuery.php mysql 2025-12-27 22:52:00 2025-12-27 22:52:00
332 I Replit - Ai code generator code Replit - ios / macOs code generator - convert to php/html/js - Explorer - folders on right side look in: client/public/index.php ai, code 2025-12-26 23:45:00 2025-12-26 23:45:00
331 T Github files github == GitHub == - .github - folder -- contains copilot-instructions.md == Markdown files Linter == markdownlinter [fileName] == If not working == If it ignores a rule, adjust the wording in copilot-instructions.md to be more direct (e.g., “Always…” / “Never…” instead of “Prefer…”) and retest. == Organize by sections == You can organize it with sections (## Shell, ## JSON schema, etc.), but there are no required keys like title: or instructions: and no front?matter needed ## Shell ## JSON == List of files: == - /README.md - ./TEST_PLAN.md - ./common/docs/css-docs.md - ./CONTRIBUTING.md - ./.github/copilot-instructions.md - ./INSTALLATION_GUIDE.md - ./QUICK_REFERENCE.md - ./STYLEGUIDE.md - ./QUICK_START.md - ./SECURITY.md - ./DIRECTORY_STRUCTURE.md github, setup 2025-12-22 10:35:00 2025-12-22 12:03:00
330 T Backup Failed -file failed to backup Users/rbutare/Library/Group Containers/group.com.apple.moments/Library/Attachments/D94FDF7D-2624-483F-87C0-3FC2B37DF9C3/4797BCE9-C702-4EBF-864F-A2A77DC4D792” backup 2025-12-19 16:01:00 2025-12-19 16:01:00
329 T Intellihometech.com. - home websites == Information == /home/intel145/public_html - home directory - move to /home/intel145/websites/intellihometech.com - /home/intel145/public_html - wedding.php is aaron wedding thru software off cpanel - wedding.php - not working unless put back to index.html file Comment websites, inmotion 2025-12-19 03:26:00 2025-12-19 04:01:00
328 I Ideas - Creative Ideas - Jigs - Tools jigs - Creative ideas tools - What to make https://www.msn.com/en-us/channel/source/Ideas%20corner/sr-vid-4rcatrke9745ayrytanyer4cia854emajn7k26e0923cv5yk88ya?ocid=msedgntp&pc=U531&cvid=6944fa99296146f6830592f63671380e&ei=504 ideas, tips, jigs 2025-12-19 02:41:00 2025-12-19 02:41:00
327 I How to Create Icon for pages Fav Icon: https://favicon.io/ Create Text Icon: https://favicon.io/favicon-generator/ ==Code== <link rel="icon" type="image/png" sizes="32x32" href="tips.ico"> https://favicon.io/ icon 2025-12-17 22:48:00 2025-12-17 22:52:00
326 I How to say our name phonetically misc We Have a delivery appointment for Rick Bhutari Hi I'm Rick Bhutaire Hi this Rick Bhutaire; Can I speak with Sue Fenger test 2025-12-17 12:15:00 2025-12-17 12:19:00
325 T Golf Stemp Meter Golf == How to build a stemp meter == 1. Need Ramp 32" Mark at 30" for ball to start 2. Cut the bottom at 20 20-degree angle 3. Cut a support at 20 degrees - place at 10.5" away 4. Use the IPhone Level App to angle 20 degrees == Test Roll == 1. Roll 3 balls on a level spot 2. Get the average distance that is between 9-11 is average 3. Roll 3 balls in opposite direction - average two runs that is the stemp rating Category Stimpmeter Speed (feet) Notes== Slow Greens 7 – 8 ft Common at municipal courses or casual play; easier for beginners. Medium Greens 9 – 10 ft Standard for most public and private courses; balanced difficulty. Fast Greens 11 – 12 ft Often found at championship-level courses; requires precise putting. Very Fast Greens 13+ ft stemp, golf 2025-12-17 09:40:00 2025-12-17 09:57:00
324 H Putting Instructions golf putting Good tools for putting drills https://oldduffergolf.com/setting-up-drills/ golf, putting 2025-12-17 09:35:00 2025-12-17 09:35:00
323 I New google maps Maps Todo New ai features Find gf restaurant on my route https://www.cnet.com/tech/services-and-software/google-maps-is-getting-more-hands-free-for-when-youre-driving/ Maps 2025-12-15 11:37:00 2025-12-15 11:37:00
322 I Rick1 rick1 new SubCat rick1 rick1 2025-12-14 09:46:00 2025-12-14 09:46:00
320 I testRick a test 2025-12-14 09:39:00 2025-12-14 09:45:00
319 I zsh - commands history macos zsh In zsh, you can easily rerun previous commands from your command history using the following methods: 1. Using the Arrow Keys Up Arrow Key: Press the ? (up arrow) key to scroll back through your command history. Each press will take you to the previous command. Down Arrow Key: Press the ? (down arrow) key to scroll forward through the command history. 2. Using history Command You can type history to display a list of previously executed commands. Each command will have a corresponding number. To rerun a command, type ! followed by the command number. For example, if the command is listed as 42 in your history, you would type: !42 3. Using fc You can use the fc command to edit and rerun previous commands. By default, fc opens the last command in your default text editor (usually vi or nano): fc You can also specify a range, like this: fc -l -10 This would list the last 10 commands. You can then edit the desired command and save it to run it. 4. Using Search You can search through your command history interactively by pressing Ctrl + r. This will allow you to type part of a previous command, and it will show you the most recent match. Keep pressing Ctrl + r to cycle through earlier matches. When you find the command you want, press Enter to run it. 5. Repeating the Last Command To quickly repeat the last command you executed, simply type: !! This will execute the most recent command in the history. Summary These methods allow you to efficiently access and rerun previous commands in zsh, making it easier to work with your command line history. zsh,macos 2025-12-14 06:43:00 2025-12-14 06:43:00
318 I Visual Studion Code - vsc vsc todo standard Documents - list documents here # Documents - ENGINEERING_STANDARDS.md, (put system wide requirements: spinner, scrollbars etc) - PROJECT_GUIDELINES.md, or - CONTRIBUTING.md at the root. Copy/adjust that file into new repos so “no dead controls; disable/hide if not implemented” is part of your default engineering standards. vsc,code 2025-12-12 17:45:00 2025-12-14 06:37:00
317 I USB Validator usb How test old usb drive to see if worth saving crystalmark test 3d https://crystalmark.info/en/download/#CrystalDiskInfo usb 2025-12-12 16:59:00 2025-12-12 16:59:00
316 I AI - apps Setapp setapp List of AI Apps BoltAI — Beautiful & powerful AI chat for professionals. Elephas — Personal AI writing assistant for Mac. JoyCast — Improve meeting audio quality. Keep It Shot — Rename screenshots with AI. MurmurType — Transcribe your speech. PDF Pals — Chat with your PDFs. Plus — Work with text using AI. Ready to Send — Generate draft email replies. Soulver — Convert and calculate in notes. Spellar AI – Improve meeting productivity. Substage — Control Finder with natural language. TypingMind — Use a new UI to chat with AI. WhisperTranscribe — Turn voice into text content. boltai - works good setapp, macos 2025-12-11 21:48:00 2025-12-11 21:48:00
315 I Ecovacs ecovacs Model: T80 Omni 12/8/2025 Serial is there a mode to mop and not go on rugs? set to deep clean and 2x passes! will cover entire area Mop & Vac (vac and mop only living area; no bedrooms, laundry, bathrooms, office) Vac Only (vac only living area; no bedrooms, laundry, bathrooms, office) Mop all rooms and not go on rugs: Firstly, you can go into the map, then select the carpet. You can choose the carpet's shape(round or rectangular). Once you have completed all the steps, select the No Entry option. Thus, your Deebot will avoid mopping or sweeping those areas where you placed carpets. Then to just vacuum the rugs? You can go back to carpet settings, select the carpets, then select vacuum only. ecovacs 2025-12-11 15:15:00 2025-12-11 15:48:00
314 I Pro Cutta - cutting turf turf Tool to ease the cutting of seams 16 ft $599 6ft $249 Cutter https://www.jcturf.com/artificial-grass/maintenance/repairs/cut/ https://procutta.com/pages/get-out-of-the-harsh-weather-faster turf, golf 2025-12-09 22:28:00 2025-12-09 22:43:00
313 I fd Fast file Find macOS fd from brew fd -H /Library - means ignore directory $HOME/fdignore /Library macOS 2025-12-08 19:31:00 2025-12-08 19:31:00
312 I File Differ macOS vimdiff file1 file2 Good file comparison tool vim, macOS 2025-12-08 17:06:00 2025-12-08 17:06:00
311 I Eney - mac Paw macOS AI assistant https://macpaw.com/eney macaws 2025-12-08 15:12:00 2025-12-08 15:12:00
310 I Amazon Resale purchase Amazon refurbished https://www.amazon.com/resale amazon warehouse On page seach for Used to find other at lower price https://www.amazon.com/resale purchase 2025-12-08 10:06:00 2025-12-08 10:06:00
309 I Make command file part of macOS Dock macOS ?? How to make your tips.cmd (zsh script) Dock?ready Open Automator ? create a new Application. Add Run Shell Script. Paste the contents of your tips.cmd (zsh commands). Save as Tips.app. Drag Tips.app into the Dock. Now clicking the Dock icon runs your zsh script like an app. ? So yes, the file needs to be packaged as a .app (via Automator or similar). A raw .cmd or .zsh file won’t execute from the Dock by itself. For ~/lbin/tips.cmd macOS 2025-12-07 10:52:00 2025-12-07 10:52:00
308 I Bootstrap Theme Generator bootstrap colors How to generate Bootstrap themes https://www.haketi.com/bootstrap-themer/ https://bootstrap.build/app Simple https://huemint.com/bootstrap-basic/ Real Orange Add this to your custom.scss file to override the default bootstrap colors - add this before @import "bootstrap"; $white: #ffffff; $theme-colors: ( "light": #f8e7a9, "dark": #f67600, "primary": #45342f, "secondary": #5a5c66, "info": #f97360, "accent1": #47cbca, "accent2": #008876, "accent3": #00a366, "success": #59a900, "warning": #ffc165, "danger": #f40063, ); https://bootstrapcolors.com/ Color Pallettes https://colorhunt.co/palette/ https://piktochart.com/tips/orange-blue-color-paletteAdd this to your custom.scss file to override the default bootstrap colors - add this before @import "bootstrap"; $white: #ffffff; $theme-colors: ( "light": #ede8e8, "dark": #0b0400, "primary": #224d9d, "secondary": #396cb6, "info": #3d9dc7, "accent1": #603510, "accent2": #554d4b, "accent3": #aba7aa, "success": #1b9f5d, https://www.haketi.com/bootstrap-themer/ bootstrap,theme 2025-12-07 10:07:00 2025-12-07 10:30:00
307 I Lazy guy Woodworking Puzzle table https://lazyguydiy.com/how-to-make-a-puzzle-tray-with-storage/ https://lazyguydiy.com/how-to-make-a-puzzle-tray-with-storage/ Woodworking 2025-12-07 08:21:00 2025-12-07 08:21:00
306 I Golf swing Golf Alignment stick to club 1 goes down front leg 2 back point to ground 3 follow thru not hit body https://www.facebook.com/share/r/1AUYnUjk5F/?mibextid=wwXIfr Golf 2025-12-07 01:58:00 2025-12-07 01:58:00
305 I Pinehurst 360 view golf Pinehurst 360 view of site https://homeofgolf.com/360-tour/?utm_source=newsletter&utm_medium=email&utm_campaign=April2025 golf 2025-12-06 10:39:00 2025-12-06 10:39:00
304 I macos pipe settings macos set -euo pipefail is a common “strict mode” line that makes your shell script fail fast and not silently ignore errors.? What each flag does set -e Exit the script immediately if any simple command returns a non?zero status (an error), instead of continuing and possibly doing the wrong thing based on bad state.? set -u Treat use of unset variables as an error and exit, which helps catch typos and missing environment variables ($FOO when FOO was never set).? set -o pipefail Make a pipeline like cmd1 | cmd2 | cmd3 return a non?zero status if any command in the chain fails, not just the last one; this prevents errors in the earlier stages of a pipeline from being silently ignored.? Together, set -euo pipefail makes scripts much safer: they stop on the first real error, they don’t quietly substitute empty strings for missing variables, and they properly detect failures inside pipelines instead of reporting success when something actually broke earlier in the chain.? macos, tip 2025-12-05 18:43:00 2025-12-05 18:43:00
303 I Golf drill no right hand Golf Open right hand and swing thru https://www.facebook.com/share/v/17hsbxccTc/?mibextid=wwXIfr Golf 2025-12-05 04:44:00 2025-12-05 04:44:00
302 I htaccess webserver .htaccess 1 Options +Indexes$ 2 IndexOptions ScanHTMLTitles FancyIndexing IconsAreLinks$ webserver 2025-12-04 16:32:00 2025-12-04 16:32:00
301 I Setapp Apps downloaded setapp, macos, ios Macos Apps AnyTrans - transfer to from ios/macos istat - system status macCleaner - clean up mac $50 Bolt AI - AI - coding helper houdaspot - $19 ios Apps AnyTrans - transfer to from ios/macos setapp, ios, macos 2025-12-04 16:22:00 2025-12-08 11:11:00
300 I zen coder test on lbin code ~/lbin/.zencoder/rules quetions What would you like me to do? Define coding standards for your project from scratch? Review and improve existing documentation/coding standards? Create specific documentation (e.g., contribution guidelines, code style guide)? Something else? Scope - Which part(s) of your repository should this apply to? All scripts (Bash, Shell, Python, PHP, AWK, JavaScript)? Specific language or component (e.g., just the Bash scripts, or just Python)? The entire lbin project? Focus Areas - Are there specific aspects you'd like standards for? Naming conventions? Error handling and logging? Code organization and structure? Documentation/comments? Security practices? Performance considerations? All of the above? Documentation Format - What documentation would be most useful? Files Recommended for vsc CONTRIBUTING.md for contributors? CODING_STANDARDS.md or STYLE_GUIDE.md? README updates for specific components? Inline examples in existing files? code,todo 2025-12-04 16:12:00 2025-12-04 16:13:00
299 I Weather #!/usr/bin/env php <?php // weather.php - Dispatcher-style CLI for VEVOR station $options = getopt("", ["station:", "color", "debug"]); $stationId = $options['station'] ?? 'YOUR_STATION_ID'; $useColor = isset($options['color']); $debug = isset($options['debug']); // Fetch JSON from Weather Underground API $url = "https://api.weather.com/v2/pws/observations/current?stationId={$stationId}&format=json&units=m&apiKey=YOUR_API_KEY"; $json = file_get_contents($url); $data = json_decode($json, true); // Dispatcher: route events function dispatch($data, $useColor) { $temp = $data['observations'][0]['metric']['temp']; $wind = $data['observations'][0]['metric']['windspeed']; $rain = $data['observations'][0]['metric']['precipRate']; $alerts = []; if ($temp < 0) $alerts[] = "Frost Alert"; if ($rain > 10) $alerts[] = "Heavy Rain"; if ($wind > 40) $alerts[] = "Storm Warning"; foreach ($alerts as $alert) { echo $useColor ? "\033[31m$alert\033[0m\n" : "$alert\n"; } } // Run dispatcher dispatch($data, $useColor); if ($debug) { print_r($data); } How to get my zip Todo 2025-12-04 07:16:00 2025-12-04 07:16:00
298 I Plate Compactor tools compactor Vevor Model: RYPBYS35165HP8ZULV0 Plate 23.7 x 18.9" Coupon code AE82CE7CA0CB104E Lowes: https://www.lowes.com/pd/VEVOR-Plate-Compactor-23-7-in-x-18-9-in-Tampers/5015875849?irclickid=SRD0U2V0dxycRtrQtXxZYVEuUkpTErx2UzpLyw0&irgwc=1&afsrc=1&cm_mmc=aff-_-c-_-prd-_-mdv-_-gdy-_-all-_-EdgeBingFlow0-_-2003851-_-0 $399 https://www.bing.com/videos/riverview/relatedvideo?q=RYPBYS35165HP8ZULV0&ru=%2fsearch%3fq%3dRYPBYS35165HP8ZULV0%26FORM%3dSHOPZR&mmscn=vwrc&mid=DBC4DB3FACB00F14B225DBC4DB3FACB00F14B225&FORM=WRVORC&ntb=1&msockid=cf1fe8bed03311f0924e20f7910f87ae compactor, tools https://www.vevor.com/promotion/coupon-center-special-119.html?currency=USD&lang=en 2025-12-03 06:09:00 2025-12-05 04:53:00
297 I Green 2 Xgolf ultra base Monterey $6400 + shipping Nancy Plate compactor venom $409 Concrete cutter $110 2” pavers bocce walkway 3” 45/30 Putting 2025-12-02 21:49:00 2025-12-02 21:49:00
296 I API keys Api API dev keys FINNHUB_API_KEY=d198di1r01qkcat6n9mgd198di1r01qkcat6n9n0 "ALPHA_VANTAGE_API_KEY": "A40SNBVIKGJ5KCAR", "FINNHUB_API_KEY": "d198di1r01qkcat6n9mgd198di1r01qkcat6n9n0", "TWELVE_DATA_API_KEY": "1fc95863eb26405aa1c0925bb7ab7b96", Api 2025-12-02 20:47:00 2025-12-02 20:47:00
295 I Cleaning up disk space macos Commands to cleanup mac disk: ~/lbin/macCleaner ~/lbin/macCache - cache cleaner key folders to check du -sh /Users/rbutare/Library/Caches du -sh /Users/rbutare/Library/Caches/Google/Chrome du -sh /Users/rbutare/.cache du -sh /Users/rbutare/.npm sudo softwareupdate -l - shows updates ready to install sudo softwareupdate --clear-catalog - clears out files maybe left over from updates of apple installs sudo softwareupdate macos 2025-12-02 09:34:00 2025-12-02 09:34:00
294 I Alexa development alexa code alexa Development alexa ideas: Alex tell me the weather outside (from my current location) give temperature, real feel and humidity, todays high and low; https://www.youtube.com/@AlexaDevelopers alexa, code 2025-11-30 08:02:00 2025-11-30 08:02:00
293 I macOS applications Macos Mac apps https://github.com/jaywcjlove/awesome-mac https://github.com/jaywcjlove/awesome-mac macOS, software 2025-11-26 13:29:00 2025-11-26 13:29:00
292 I Brew - all installed files brew Installed files/apps from brew brew list see file in: ~/lbin/brewList.txt fd .mov -E Library -X ls -lh - exclude Library and show ls -lh fid txt lbin - search directory lbin fd "^x.*.txt" lbin -X vim - send items found to vim fd "xm" lbin -E "*.txt" - find files xm without .txt fd "^x.*.txt" lbin - need to use regular expressions to get all the files fd . lbin -e psh -X cat - find anything . in lbin with extension psh -X send to cat brew, macos, apps ~/lbin/brewList.txt 2025-11-26 07:34:00 2025-11-26 07:34:00
291 I macos tools macOs Tools to test: macCleaner - clean up files to get more space sysDashBoard - Dash board sysDashBoard.txt - Requirememnts memDashBoard - memory Dashboard memChk - memory check sysDashBoard -h System Dashboard Help --------------------- Options: --help, -h Show this help message --memory, -m Memory overview + top processes by RSS --cpu, -c Top processes by CPU usage --disk, -d Disk space usage --load, -l Load average --proc, -p Total process count --swap, -s Swap usage --all, -a Run full dashboard (all checks) macOs,lbin 2025-11-24 15:24:00 2025-11-24 15:24:00
290 I Setapp - macpaw macos apps Setapps - 260 plus apps and ios apps macCleaner, cleanMyMac, bartender, istat, cyberduck, unclutter, menubar, menubarX unite?, forklift, cleanmyIphone, touchRetouch, glyphs mini, expressions, ssh config,sql pro, swiftly Launch, typingmind, riveo, moonlock, mindNote Next, joyCast - improve audio commandOne, houdah spot, pdfSqueezer, gemini, supercharge, bartender, displaybuddy, writeCode, permute -convert files, bartender AI: boltAi, plus, Future want eney - ai assistant https://setapp.com/pricing?irgwc=1&afsrc=1&clickid=SqozojQHtxycRgRz93xED1iiUkpWOIxuUzpLyw0&iradid=368247&irpid=2003851&utm_content=TEXT_LINK&utm_campaign=Bing%20Rebates%20by%20Microsoft&sharedid=EdgeBingFlow&utm_medium=affiliate&mpaid=3&utm_source=impactra macos, apps, ios, macpaw 2025-11-24 13:09:00 2025-11-24 13:09:00
289 I ClipChamp Video Editor video Video editor to create easy to use https://app.clipchamp.com/consumer/home img, video 2025-11-22 19:38:00 2025-11-22 19:38:00
288 I Testing Commands test Confirm sql is running: nc -vz intellihometech.com 3306 # or telnet intellihometech.com 3306 add more to this test, todo 2025-11-19 23:38:00 2025-11-19 23:38:00
287 I Vsc plan agent Vsc Ai Plan agent Define requirements then see plan to execute Try out https://youtu.be/xR3fuKtWGN0 Vsc,ai 2025-11-20 05:52:00 2025-11-20 05:52:00
286 I Ai best model Ai ai Which model is best for ? Fill in https://github.blog/ai-and-ml/github-copilot/which-ai-model-should-i-use-with-github-copilot/?utm_campaign=LCM_CopilotProOnboarding_dev&utm_source=github https://github.blog/ai-and-ml/github-copilot/which-ai-model-should-i-use-with-github-copilot/?utm_campaign=LCM_CopilotProOnboarding_dev&utm_source=github Ai, todo 2025-11-18 08:18:00 2025-11-19 07:21:00
285 I Git tutorial Git These key commands are now in your toolkit: git init, git add, git commit, git status, git log, git branch, git checkout, git merge, git push, git pull, and git clone. https://deployn.de/en/blog/git-tutorial/ Git, tutorial 2025-11-17 07:36:00 2025-11-17 07:36:00
284 I Unix/Macos Commands macos curl -X GET 'http://localhost/rbutare/fid/templates/v2/common/admin/tools/permission-checker.php?action=critical' sync directories rsync -av old new unix, macos 2025-11-15 07:45:00 2025-11-15 07:45:00
283 I Best ai use cases Ai Ai for https://github.blog/ai-and-ml/github-copilot/which-ai-model-should-i-use-with-github-copilot/?utm_campaign=LCM_CopilotProOnboarding_dev&utm_source=github Ai, 2025-11-12 15:55:00 2025-11-12 15:55:00
282 I Putting Green Quotes - Excel quote golf Putting green quotes excel quote,golf,putting, ~/Golf/golfFinal/20251111QuotesAll.xlsx 2025-11-12 10:08:00 2025-11-12 10:08:00
280 I Git Hub Ticket System gitHub Ticket system for github Paid on 20251106 $100 for gitpro? https://support.github.com/tickets/personal/0 github, support 2025-11-12 09:43:00 2025-11-12 09:43:00
279 I Websites info Web Hosting website host: inmotionhosting Registration : NAMECHEAP.com https://www.namecheap.com/myaccount/signout/?loggedout=yes Web,up, hosting,website 2025-11-12 02:09:00 2025-11-12 02:09:00
278 I Wish List wish Wish List Items ============ - Weather Station - Heated Blank - - Power hedge trimmer EGO POWER+ 56-volt 26-in Battery Hedge Trimmer 2.5 Ah Battery Included , Charger Included Item #5207557 |Model #HT2601 $269 lowes with charger; Model Next door: - New Vacuum - Hazel - new slippers or Same shoes https://www.protoolreviews.com/ego-carbon-fiber-rail-hedge-trimmer-review/ wishlist 2025-11-11 11:54:00 2025-11-11 16:21:00
277 I Chip with tee Golf Chip Tee grip length in front of chip Follow thru over tee 3 tips https://www.facebook.com/share/v/167eTLBUT8/?mibextid=wwXIfr Chip with stick in belt https://www.facebook.com/share/r/1QmZ1TLuNh/?mibextid=wwXIfr https://www.facebook.com/share/r/1HTf6T79hh/?mibextid=wwXIfr Golf,chip 2025-11-10 23:12:00 2025-12-14 11:50:00
276 I Piwigo Gallery Software photoGallery Piwigo has been successfully installed at : https://intellihometech.com/piwigo Administrative URL : https://intellihometech.com/piwigo/identification.php admin page; https://intellihometech.com/admin.php?page=site_update&site=1 admin: OurLifeInPics; https://intellihometech.com/piwigo piwigo,photos 2025-11-09 07:23:00 2025-11-09 07:45:00
275 I Golf swing Golf alignments practice https://www.facebook.com/share/r/17jU7GS6rA/?mibextid=wwXIfr Golf, practice 2025-11-08 20:56:00 2025-11-08 20:56:00
274 I Vsc Requirements documents vsc todo Terms: Modular resuable components, toast, html, bs5, fontawesome, Follow DRY (Don't Repeat Yourself) principles,camelCase, card based theme, mobile responsive, professional look and feel, dashboard functions: use/chg bs themes, spinner for slow tasks, page up/down, toast messaging, admin: database checks, security. checks, duplicates, bad records, dashboard, tools to add to faq, missing days stock market open (id list of holidays/closings), adhoc queries and tools; todo list of new/bug features Settings: global settings debugFlg, theme, user level, adv debugging - additional error messaging depending on the error level use of json configuration files for customization/setup Documentation: user, programmer, function calls, flow charts, recommendations for improvement improvements; refactor, performance, id long running processes, duplicate/obsolete code, o Code breakdown/modules designed for re-use in other apps; organize that way; standard app configuration: Phase 2 (if desired): Charts & visualizations Advanced filtering sidebar - flat picker Recent reports widget Keyboard shortcuts Phase 3 (future): User preferences panel Favorites system Interactive tour Custom report builder Next up is implementing report tabs for Data/Chart/Summary views Can you build an app that Structural divs in MVC Template Now let's refactor the includes to be content-only (no major structural divs): https://code.visualstudio.com vsc, todo, requirements 2025-11-08 18:19:00 2025-11-12 22:07:00
273 I Trips nc Trips Waterfalls Top 10 https://www.facebook.com/share/r/17PbYcKLLF/?mibextid=wwXIfr Nc,trip, waterfall 2025-11-08 11:13:00 2025-11-08 11:13:00
272 I Golf swing door Golf door frame swing method https://www.facebook.com/share/v/14Vy2TgQdrK/?mibextid=wwXIfr Golf 2025-11-08 09:44:00 2025-11-08 09:44:00
271 I Southwest trip Trip National Park https://www.facebook.com/share/r/1HnKW2mULm/?mibextid=wwXIfr Trip 2025-11-08 09:36:00 2025-11-08 09:36:00
270 I Apple Genius Bar MacBook Problems: Running out of Application Memory - calendar in toolbar/menubar - remove images from messages - remove system backup /temporary files - remove language files - devtools? apple, genius 2025-11-08 08:50:00 2025-11-08 08:50:00
269 I Cleanup Directories Files cleanup todo Goto terminal /Volumes/[nameOfDrive] rm -rfv *.interupted files screenshotter - icloud get icons images colors Cleanup icloud; How to clean up messages of big images/movies https://beebom.com/how-clear-icon-cache-mac/ https://beebom.com/how-clear-icon-cache-mac/ cleanup, todo /Library/Caches/com.apple.iconservices.store - can cleanup 2025-11-08 08:36:00 2025-11-08 08:42:00
268 I Outlook - Tips outlook tips How to search: from:spectrum AND isflagged:false - no flag Use filter to get advanced search outlook 2025-11-08 07:40:00 2025-11-08 07:40:00
267 I Microsoft Copilot Features copilot Tips copilot edge msft 365 kevinstratvert.com Top 10 Copilot Features to Boost Productivity Compare Files in OneDrive Use Copilot to quickly compare two documents side-by-side and highlight differences. Summarize Emails in Outlook Copilot can extract key points from long email threads, saving time and reducing inbox fatigue. Generate PowerPoint Presentations Create branded, professional slides from a simple prompt or Word document. Analyze Excel Data Ask Copilot to find trends, generate charts, or explain for https://youtu.be/sdN7C8xRoH4?si=6PKwBW5XiIGlTOKc msg, edge, copilot, tips 2025-11-07 10:28:00 2025-11-07 10:33:00
266 I Visual Diff Tool diff vim Visual diff of two files: vimdiff file1 file2 Good tool to see diffs between two files https://lynxbee.com/compare-files-with-visual-file-diff-tool-of-vim/ vim, diff 2025-11-07 10:07:00 2025-11-07 10:07:00
265 I MacOs Tools Cleanup - Space macOs Downloaded from app store: Disk Diag: - Clean up system files shows good view of disk Memory Diag: - clean memory Homebrew: jdupes - Duplicate file (newer/faster) fdupes - Duplicate file (finds pairs) CLI/Shell ~/lbin/macCleaner - tool to cleanup system and large files ~/lbin/brewInfo - files installed by homebrew macOs, tools, disk, cleanup /Users/rbutare/lbin/macCleaner 2025-11-07 08:50:00 2025-11-07 08:52:00
264 I Golf putting Golf Putting tips https://www.facebook.com/share/v/1CWMiKXUE2/?mibextid=wwXIfr Golf, putting 2025-11-07 01:16:00 2025-11-07 01:16:00
263 I Chat questions Ai S Login paid for: C https://www.tomsguide.com/ai/i-created-one-chatgpt-prompt-that-works-in-absolutely-any-situation-heres-how-to-use-it Ai M T 2011-12-25 00:00:00 2025-12-23 11:41:00
262 I Test Script - Unit Test testing Good testing options ~/lbin/testFname.sh Getopts vs case -h vs --help macos,sh,bash ~/lbin/testFname.sh 2025-11-05 08:04:00 2025-11-05 08:04:00
261 I Bootstrap 5 Examples bootstrap todo List of all bootstrap examples ~/lbin/tipsSrc/themePlay/bootstrap-5.0.2-examples /tipsSrc/themePlay/bootstrap-5.0.2-examples todo, bootstrap, example ~/lbin/tipsSrc/themePlay/bootstrap-5.0.2-examples 2025-11-05 06:40:00 2025-11-05 06:40:00
260 I Tips Fidelity app todo Create a new set of code to work from to - cleanup ui - fix navbar menus; toolbar mouse over icons - all data search/report - master app - toggle columns, copy, print, csv, buttons Todo for fidelity app https://fid.intellihometech.com/table.php - Report on high low for year begin end year report returns for Year, ytd, all; aTot, bTot, cTot etc - Mega Menu - DataTable - Search by column - update connDb - code - refactor 5-18-2018 1,241,302.68 https://fid.intellihometech.com/table.php apps, fidelity 2025-11-05 06:29:00 2025-11-08 08:42:00
259 I AI Rules msvc todo gallery/oldCoPilot/ai.txt - music ./gallery/resize/ai.txt - resize/rules ./airplay20251023/docsO/requirements.txt ./gallery/oldCoPilot/ai.txt ./galler 2 ./airPlay/docsO/requirements.txt ai, requirements 2025-11-04 08:15:00 2025-11-04 08:36:00
258 I mySql Access mysql If mysql access gets denied from localhost; go to cpanel.intellihometech.com - mysql Remote add ip address to allow access sue ip: 136.56.107.113 mysql 2025-11-03 13:26:00 2025-11-03 13:26:32
257 I Ai Accounts ai code Accounts: zencoder - rickbeachlbi@gmail.com xx x openai, ai, code xxx xx 0000-00-00 00:00:00 0000-00-00 00:00:00
256 I List Directory Code listdir code All Directories http://localhost/rbutare/airPlay/listDirAll.html http://localhost/rbutare/airPlay/utilities/php/listDir.php http://localhost/rbutare/airPlay/airPlay/utilities/php/listDir.php http://localhost/rbutare/airPlay/airPlay/utilities/php/listDirectory.php http://localhost/rbutare/airPlay/memoriesPlayer/listDirExplorer.php http://localhost/rbutare/airPlay/memoriesPlayer/listDirGraph.php http://localhost/rbutare/airPlaymemoriesPlayer/listDir.php http://localhost/rbutare/airPlay/listDirAll.html directory, listdir explorer 2025-11-01 18:41:00 2025-11-01 18:41:00
255 I Convert Video images ffmpeg convert to smalller mp4 ffmpeg -i A211.webm -vcodec libx265 -crf 30 -c:a copy -strict experimental A211.mp4; 0 https://stackoverflow.com/questions/18123376/webm-to-mp4-conversion-using-ffmpeg ffmpeg, images, video, mp3,mp4,webm Trim/Shorten/Cut https://shotstack.io/learn/use-ffmpeg-to-trim-video/ ffmpeg -sseof -600 -i input.mp4 -c copy output5.mp4 ffmpeg -sseof -00:10:00 -i input.mp4 -c copy output6.mp4 Both of the above two commands will make a cut of the last 10 minutes of the input video. Cut Front/Beginning ffmpeg -i $fileOutput1 -ss 00:00:00 -to 00:6:08 -c:v copy -c:a copy $fileTrim use time on left to cut at the end The above command uses -to to specify an exact time to cut to from the starting position. The cu 2025-11-01 16:00:00 2025-11-01 16:00:00
254 I How to create favicon image favicon Generate favicon.ico with Text - one lettter https://favicon.io/favicon-generator/ image, favicon https://favicon.io/favicon-generator/ Text 2025-11-01 10:09:00 2025-11-01 10:09:00
253 I Ai docs requirements Vsc Coding create docs requirements.md Plan.md tasks.md https://blog.jetbrains.com/junie/2025/10/how-to-use-a-spec-driven-approach-for-coding-with-ai/ Ai, coding todo add samples 2025-10-31 08:50:00 2025-10-30 08:50:00
252 I Macos Performance macOS Optional: Using: memory_pressure Using vm_stat for detailed stats: vm_stats Checking Memory (RAM) Usage top -l 1 For overall storage management, identify large files with du commands and remove unnecessary files. To continuously monitor memory and CPU usage, you can use: top -stats pid,command,cpu,mem macOS Overview of all mounted filesystems using df: df -h du -sh ~/Documents Finding the Largest Files and Folders: du -ah ~/ | sort -rh | head -n 10 2025-10-28 22:16:00 2025-10-28 22:16:00
251 I ai copilot ai copilot ask copilot to compare info a cross tabs Smarter Edge “Copilot Mode” Multi?tab analysis – I can compare products, summarize across all your open tabs, or consolidate research into one view. Journeys – Your browsing history gets grouped by topic (say, “robot vacuums” or “travel planning”), so you can pick up research right where you left off. Copilot Actions – I can now handle tasks like unsubscribing from emails, booking reservations, or even opening pages by voice. Rick, given your love of modular, stepwise workflows, I think the multi?tab analysis + Journeys combo in Edge might be right up your alley—it’s basically a research accelerator. Want me to show you how those two features could streamline your current robot vacuum research project? Long?term Memory – I can now remember key details you share across sessions (and you can edit or delete them anytime). This makes our conversations more continuous and personalized. Mico (Clippy 2.0) – An optional visual companion that reacts, listens, and adds a more expressive layer to our chats. Totally optional, but fun if you like a more animated presence. Real Talk Mode – A new conversation style where I’m more direct and transparent, great for when you want less polish and more straight talk. tips, junk Not sure what this is for 2025-10-28 22:14:00 2025-10-28 22:14:00
250 I good tips Tips join boards at corner Bottle cap screw onto tarp Join two same size pipes heati https://youtube.com/shorts/UwtHJoB0YX4?si=whz0dfMR4cDyl2vJ Tips 2025-10-27 12:09:00 2025-10-27 12:09:00
249 I Node node todo Tools node -c assets/js/main.js - check syntax without executing todo, node Find tools to use with visual Studio Coding markdownlint README.md 2025-10-25 15:08:00 2025-11-08 08:44:00
248 I PHP php php commands php -m ; installed components php -l test for syntax errors php 2025-10-25 10:11:00 2025-10-25 10:11:00
247 I Tree Command macos todo homebrew tree command tree -dsa get tree view with size in bytes macos,todo, command 2025-10-25 10:07:00 2025-11-08 08:44:00
246 I Tips todo Todo todo == heading of Todo == [x] Checkmark? - [x] Checkmark? # Not Working - Double Click vs single click - add iPhone - add row expansion ; - add button in actions to view as html page in new tab xAdd delete - Data Reports Funcion - add navbar - Admin, help, etc, - View info iPhone xSort by newest xSet dates on add new xConfirm date mod on chg - move css and js scripts to external files of all reusable components - expansion needs to look like part of same row not different color; perhaps offset when expanded Need a better ux to show filter is enabled; after update with a filter on new record is not shown? confusing - what is best approach; always clear filter after add or keep? - [x] Do something done Add delete View info iPhone Sort by newest Set dates on add new Confirm date mod on chg Need a better ux to show filter is enabled; after update with a filter on new record is not shown? confusing - what is best approach; always clear filter after add or keep? == End of Descriptions == -Add delete to update screen - datatable to show what filtering is happening; button to clear filter == Todo == - double click should go to edit - open on single click ; edit button not working - comment and description should show in markup in datatable - search by column should be at bottom of page - LINKS IN DATATABLE SHOULD BE CLICKABLE - idea for action buttons to be in first column (single icon) click expands to as for (edit, html, print etc) == Tips == default to sort order be b https://fid.intellihometech.com/apps/tips//tipsNew.php Todo = delete or chg 2025-10-22 08:21:00 2025-12-30 14:28:00
245 I Putting Green Installation Ide golf Putting Good tips on setting up golf green Ideal Turf - Texas https://ideal-turf.com Software - Cost Calculator - Not available Tonage Calculator: https://www.hedrickind.com/tonnage-calculator/ Tons to Yds: https://cubicyardcalculator.org/tons-to-cubic-yard-calculator/ 54 tons to yds 41 Abc 60x50 3" 45 tons to yds 34 Abc 60x50 2.5" 40 tons to yds 30 Abc 60x50 2" Screenings 21 tons to yds 41 Abc 60x50 2" Do you want holes in putting green turf? Won't sand wash out and under turf? DIY Outdoor Putting Green Kits for the Backyard | Ultra Base https://www.ultrabasesystems.com/diy-designer-golf-kits.html https://www.golfwrx.com/659400/taking-the-backyard-putting-green-plunge/?edge_reader_page# putting,install 2025-10-22 07:28:00 2025-12-11 10:50:00
244 I Bocce Court Installation bocce Layers 3-4" stone ABC 2" Top Layer Screenings https://www.legreillon.com/the-ultimate-diy-guide-to-bocce-court-construction-projects/ bocce 2025-10-21 07:57:00 2025-10-21 07:57:00
243 I MacOs/Unix Command Tips todo todo ls -AGFp does not work on large directory; need to set COLUMNS=80 in ~/lbin/profileZsh master todo Tips - fix sort to be newest to oldest - mega menu reports: kids, grand, bank, all Tots, managed, non, both man/non airPlayer ======= - production run - uses config.json - should be production.json and playListProduction.json - test to make sure they both exist and are current ; create summary of config before running - find sh created for this Other things todo: - find visual diff tool for csv8 9 and 9-10 with clipboard fix - locate working ftp Visual Code ================= allow shell integration for commands to run automatically - find tutorials macos,unix,commands more info ideas from 2025-10-20 20:02:00 2025-11-08 08:43:00
242 I json validator json python3 -m json.tool faq.json > /dev/null && echo "? JSON is valid" || echo "? JSON is invalid" json, validate, python 2025-10-20 19:33:00 2025-10-20 19:33:00
241 I New Tools python code python ? Other Ways to Use json.tool: 1. Format a JSON file: 2. Save formatted output: 3. Validate JSON: 4. Sort keys: ? Alternative Tools: You could also use: 1. jq (more powerful): 2. Node.js: 3. PHP itself: php listJson.php | php -r "echo json_encode(json_decode(file_get_contents('php://stdin')), JSON_PRETTY_PRINT);" ? Why We Used It: In our case, we used it to verify the PHP output was: ? Valid JSON ? Properly formatted ? Includes playlists from subdirectory ? Easy to read and confirm ? Summary: Part What It Does Example Output php listJson.php Runs PHP, outputs JSON ["a","b","c"] | Passes output to next command (invisible) python3 -m json.tool Formats JSON nicely [\n "a",\n "b",\n "c"\n] Result: Beautiful, readable JSON! ? phython 2025-10-20 18:26:00 2025-10-20 18:26:00
240 I Add Applications for Slide Gallery apps code brew install ======= puppeteer playwright fmpeg is a universal media converter node Pandoc is a Haskell library for converting from one markup format to another htmldoc - convert html to pdf; htmldoc -f output.pdf output.html; Convert to pdf markdown WEDDING_SLIDESHOW_GUIDE.md > docs/WEDDING_SLIDESHOW_GUIDE.html cd /opt/homebrew/var/www/rbutare/airPlay for file in docs/*.html; do /Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome \ --headless --print-to-pdf-no-header \ --print-to-pdf="docs/$(basename "$file" .html).pdf" \ "file://$PWD/$file" done brew, todo update more information 2025-10-19 19:18:00 2025-10-19 19:18:00
239 I Unix Comand Tips tips count files in directory - return only number found ls -1 Docs/*.md | wc -l && ls -1 *.md 2>/dev/null #!/bin/zsh echo "=== MD files in Docs ===" count=$(ls -1 Docs/*.md 2>/dev/null | wc -l) echo "$count files" echo "" echo "=== MD files in root ===" ls -1 *.md 2>/dev/null || echo "None (good!)" unix, cmd 2025-10-18 16:52:00 2025-11-08 08:44:00
238 I Hacks - add type hacks Tool hacks - list types of hacks in video https://www.facebook.com/share/r/1BG3Sdsk4S/?mibextid=wwXIfr hacks, tools, todo 2025-10-18 08:10:00 2025-10-18 08:10:00
237 I Php php If php code in file.html - it is avoided ; if you change name to file.php ; then the code is executed. good tip to link files so you can run either (sliceImg.php - sliceImg.html); one reads directory other just reads json file ; will also check for modifications dates to see if need to update list or json file http://localhost/rbutare/airPlay/sliceImg.php php,html 2025-10-17 10:32:00 2025-10-17 10:32:00
235 I Setup Config vsc coding Visual studio setup .configs Shell shellcheck fileName Brew installs - store what is installed How to: runsh - for access to remote files create a version - and move on Todo tips, setup, vsc 2025-10-15 10:07:00 2025-11-08 08:47:00
234 I Vim Reset Width vim gg gqG g means : go to the beginning of buffer; gq means : Set textwidth to 80 (:set textwidth=80), move to the start of the file (can be done with Ctrl - Home or gg), and type gqG. gqG formats the text starting from the current position and to the end Non-Ascii characters /[^\x00-\x7F] g//[^\x00-\x7F]/s///g Set in Defaults set textwidth=80 :set wrapmargin=2 https://stackoverflow.com/questions/5136902/vim-textwidth-has-no-effect vim %s/[^[:print:]]//g 2025-10-12 19:58:00 2025-11-13 07:21:00
233 I Tips for Unix Commands unix macos find . -type f -exec chmod 664 {} \; find . -type d -exec chmod 775 {} \; macos,unix 2025-10-12 16:51:00 2025-10-12 16:51:00
232 I Tail Winds Development tutorial tailwinds Tailwinds.css - sample ideas http://localhost/rbutare/tailwind/cruip-tutorials-main/ dev 2025-10-12 14:11:00 2025-10-12 14:11:00
231 I Tips Development dev Tips Default to current time on load for add - add = mod; create always readonly Change Banner page and icon How to create page icon Make Links if has string as http: a href sort by last modDate or id? https://fid.intellihometech.com/apps/tips/gemini/tips.php http://localhost/rbutare/gemini/tips.php dev 2025-10-12 14:08:00 2025-10-12 14:08:00
230 I SlideShow Dev dev Todo - why 2 json - save config to json - auto load with config - config: run, dev, test, dir? dev 2025-10-12 14:07:00 2025-10-12 14:07:00
229 I Five Crowns Development develop game Todo === cardStyle - for deck pile offset images dev 2025-10-12 14:05:00 2025-10-12 14:05:00
228 I FTP Applications ftp apps Working: ====== filezilla - Monsta - https://intellihometech.com/monstaFtp/ ftp2024@intellihometech.com ftp.intellihometech.com https://intellihometech.com/monstaFtp/ Rick-Beach-732-319-6727-1P; FTP Username: ftp2024@intellihometech.com FTP server: ftp.intellihometech.com FTP & explicit FTPS port: 21 Not working: ======= Transmit CyberDuck Login: ftp2024@intellihometech.com p: DrumH1; ftp 2025-10-12 14:03:00 2025-11-08 12:45:00
227 I Convert HEIC to jpg images ?? Convert HEIC to JPG Using Finder Quick Actions -Open Finder and locate your .heic files. -Select one or multiple HEIC images. -Right-click (or Control-click) the selection. -Choose Quick Actions ? Convert Image. -In the pop-up: -Set Format to JPEG -Choose Image Size (Small, Medium, Large, or Actual Size) -Click Convert. heic, image, jpg 2025-10-11 16:42:00 2025-10-11 16:43:08
226 I TailWind.css Setup code css set up in TailWind.css: -create tailwind.config.js - run tailwindcss --output styleTailWind.css This will reduce the size of css to use only css needed Todo === megamenu ../tailWind/tailWindMegaMenu.html ../tailWind/navBarMega.html tailwind.config.js module.exports = { content: [ './*.php', './**/*.php', './*.html', './**/*.html', './*.js', './**/*.js' ], theme: { extend: { colors: { primary: { DEFAULT: '#2563eb', light: '#3b82f6', dark: '#1e40af' } } } }, plugins: [] }; /opt/homebrew/var/www/rbutare/tailWind/ css <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script><script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script><script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script><script src="https://cdn.jsdelid 2025-10-07 06:48:00 2025-10-07 06:48:00
225 I AI Code Tips ai code TIps on Code valid html, semantics included, responsive, error handling, debug code via variable on or off, Features ====== - bs5 - tailwind.css template: ======= divPage, divNavBar, divToolBar: divToolBarLeft, divToolBarCenter, divToolBarRight, divTabs, divContentMain divContent: divContentLeft, divContentCenter, divContentRight divFooter: divFooterLeft, divFooterCenter, divFooterRight Functions: ======== Theme Choose spinner for long processing calls i.e. Ajax scroll icon up/down on page - goto top/bottom code, template 2025-10-06 07:33:00 2025-10-06 07:46:51
222 I Visual Studio vsc tutorial Videos for Visual Studio tutorials https://code.visualstudio.com/docs/getstarted/introvideos code, vsc, 2025-10-03 21:29:00 2025-11-08 08:47:00
221 I Get my ip Address ip How to get my ip address: https://whatismyipaddress.com/ 65.191.206.37 https://whatismyipaddress.com/ ip address,ip 2025-10-05 20:46:00 2025-10-05 20:46:00
220 I Macos Tahoe New Spotlight macos tahoe When you invoke Spotlight Search with Command + Spacebar, you can switch to its dedicated modes like so: Applications (Command + 1), Files (Command + 2), Actions (Command + 3), and Clipboard (Command + 4). However, you can switch to these modes faster simply by adding the requisite number to your initial Spotlight invocation. For example, Command + Spacebar + 2 takes you straight to a Files search. markdown - notes; spotlight - apps, files search Messages - polling; Lock Screen - settings Clock Facetime - live translatio https://www.macrumors.com/2025/09/24/all-the-new-macos-tahoe-features/ macos, tahoe GenMoji - combine emojis Personal Voice ; settings Multiple - Control Centers Hold - assist phone? Journal - new app; Clipb 2025-10-03 21:55:00 2025-10-03 21:55:00
219 I ForeverGreen golf Tips Multiple pages of tips and videos https://golfgreens.com/golfgreens-tip-of-the-day/keep-stroke-short-short-distance-putts/ golf 2025-10-03 16:21:00 2025-10-10 16:21:00
218 U Flop Shot Golf Chip Flop shot - open face lower handle step back wider stance long swing - back; break wrist; need to release wrists and club go vertical - release and catch https://www.facebook.com/share/r/1C6Qa2V7fP/?mibextid=wwXIfr - Shift nose forward - weight fwd on down stroke? https://www.facebook.com/reel/700387316366642 Golf 2025-09-30 11:47:00 2026-01-29 06:13:00
217 I Cool Tools woodworking Tools Ideas on how to use other tools; like idea for chainsaw blade https://www.facebook.com/share/r/175zQufqzQ/ tools 2025-09-30 11:00:00 2025-09-30 11:00:00
216 I Golf Simulator Golf Using foam Golf balls; Using Optishot2 $300 Screen: $200 $800 projector brighter lumens; Using foam balls only 4” off the wall added new comments https://www.msn.com/en-us/health/yogapilates/how-to-build-a-realistic-home-golf-simulator-on-a-budget/vi-AA1MEVSX?ocid=msedgntp& Golf 2025-09-30 09:14:00 2025-09-30 09:14:00
215 I Grasses Outdoor plants Pink and Green Grasses Ruby Muhly Grass - $10 Plants 2025-09-30 08:20:00 2025-09-30 08:21:00
213 I // These ini_set lines should be at the very top of your script // These ini_set lines should be at the very top of your script // These ini_set lines should be at the very top of your script // These ini_set lines should be at the very top of your script ini_set('display_errors', 'Off'); // Keep this off on live sites ini_set('log_errors', 'On'); ini_set('error_log', __DIR__ . '/php_error.log'); add thes lines her // These ini_set lines should be at the very top of your script ini_set('display_errors', 'Off'); // Keep this off on live site test // These ini_set lines should be at the very top of your script ini_set('display_errors', 'Off'); // Keep this off on live site 2025-06-26 16:54:30 2025-06-26 16:55:38
212 I mysql definition for dates created and updated CREATE TABLE `tips` ( `id` int(11) NOT NULL, `title` varchar(64) NOT NULL, `cat` varchar(64) DEFAULT 'cat', `subCat` var ALTER TABLE `tips` MODIFY COLUMN `created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, MODIFY COLUMN `updated_at` TIMESTAMP link1 mysql, update work 2025-06-26 16:28:46 2025-06-26 16:33:16
207 I New Record Cat Sub Description Comment updated but updated_at not updating https://www.att.com tag, test, What is moreinfo for what are att 2025-06-26 15:39:05 2025-06-26 15:39:05
206 I free test2 images photos Images for Web - no cost, copyright, attributions Get free images for web use commercial/personal Did this change update time 17:22:37 and 17:23:46 vs n https://www.pexels.com/ Free Stock I 2025-06-25 17:22:37 2025-06-25 17:23:46
204 I SUBSUBCAT CAT SUBCAT Cleaning up Big Files Empty Trash; goto settings->storage wait then go into each section to find large files; In messages you can remove large video f Clean up big videos in Messages MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
203 I SUBSUBCAT CAT SUBCAT Clean up disk space Good tips https://tinyurl.com/2b59tjsm MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
202 I SUBSUBCAT CAT SUBCAT Finder Defaults Open Finder -> Go to As List ->Cmd+J - set defaults Show Hidden Files: Cmd + Shift + .. MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
201 I SUBSUBCAT CAT SUBCAT Usb Drive Not Mounting automatically Listing of disk Mounting Points stored in lbin/dataFiles dfOut.txt mountOut.txt; Use these if you have to force mount the drive MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
200 I SUBSUBCAT CAT SUBCAT Reminders App - To Move Item from one list to another Select Task - Hold down CMD and click item - Drag once you get new reminder icon how to move items - doesn't work consistently https://tinyurl.com/46scbx8a MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
199 I SUBSUBCAT CAT SUBCAT Remove background garbage from jpg image so you can print Go to Gimp Goto Colors Menu -> ThresholdThreshold Tool: Open your image in GIMP, go to the Colors menu, select Threshold to conv https://www.lifewire.com/how-to-remove-background-gimp-4689190 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
197 I SUBSUBCAT CAT SUBCAT Apache server setup for rickWeb to get files in $HOME/Sites - http://rickWeb/info.php Works for php and html MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
196 I SUBSUBCAT CAT SUBCAT Convert Contacts to Excel, Csv Goto app store get: Export Contacts to Excel, CSV; works great backup files are in ~/contacts MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
195 I SUBSUBCAT CAT SUBCAT Apache Setup Good Document with details https://www.git-tower.com/blog/apache-on-macos/#3-apache-configuration MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
194 I SUBSUBCAT CAT SUBCAT Copy a file from mac to iCloud cp file ~/Library/Mobile Documents/com~apple~CloudDocs/ Easy way to backup files cd /Users/rbutare/Library/Mobile Documents/com~apple~CloudDocs MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
193 I SUBSUBCAT CAT SUBCAT Can't remove a file/directory as root Must reboot in Safe mode and to to directory and try to remove sudo rm -rfv fileName try sudo and su to remove https://www.bing.com/copilot?toWww=1&redig=6B9934C6512348789DD356E6E445CC2D MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
192 I Cleanup Backup - TimeMachine timemachine TimeMachine Cleanup Go to /Volumes in Finder click on each sparsebundle to open each partition of drive Goto terminal /Volumes/[nameOfDrive] rm -rfv *.interupted files timemachine, cleanup 2025-06-25 17:22:37 2025-11-08 08:35:00
191 I SUBSUBCAT CAT SUBCAT Check Disk Not sure if this will fix drive diskutil list - list disk sizes; diskutil unmount - unmount busy drive https://www.bing.com/copilot?toWww=1&redig=6B9934C6512348789DD356E6E445CC2D MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
190 I SUBSUBCAT CAT SUBCAT Root Password drumhill1; for su for sudo DrumHill1; MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
189 I SUBSUBCAT CAT SUBCAT Vim earlier version :earlier 2h 2m 2days MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
188 I FileZilla ftp FileZillia Configuration host: ftp.wefixyourtech.com file path: /public_html/jamwed/ Make sure you create ftp login in cpanel ~ 2025-06-25 17:22:37 2025-11-07 00:15:00
187 I SUBSUBCAT CAT SUBCAT Add macbook as webserver Edit file: /etc/apache2/extra/httpd-vhosts.conf to add lines<VirtualHost *:80> DocumentRoot /path/to/your/fidelity ServerName fi Allows access to webserver files in directory listed MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
186 I SUBSUBCAT CAT SUBCAT Hot Tub Info tips 9 points to not making mistakes on hot tub spa n https://www.youtube.com/watch?v=5pJm9hY5aEc MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
185 I SUBSUBCAT CAT SUBCAT Perltidy to update html file with indents run :%!perltidy on file MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
184 I SUBSUBCAT CAT SUBCAT Food Recipes Recipes for Dairy Free, GF, Soy, Nut Recipes Site has good food ideas n https://tinyurl.com/tazz5vpb MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
183 I SUBSUBCAT CAT SUBCAT Vim to format an entire file with indents gg=G - gg - first line = indent G end of document MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
182 I SUBSUBCAT CAT SUBCAT PHP check Syntax php -l filename Check code for errors n https://phpcodechecker.com/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
180 I SUBSUBCAT CAT SUBCAT Toolbar expander Shows a large number of Icons in tool bar: ibar - menubar MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
179 I SUBSUBCAT CAT SUBCAT ClipBoard Manager Clip board that sits in toolbar - maacy https://maccy.app/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
178 I SUBSUBCAT CAT SUBCAT Image Search https://tineye.com MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
177 I SUBSUBCAT CAT SUBCAT Check Tax Return Status Check Turbo tax status https://ttlc.intuit.com/turbotax-support/en-us MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
176 I Putting tips Golf Putting Golf Putting Tips Michael Breed - Big Moss Recommended teacher https://youtu.be/IO48vnDMi9Q Golf, putting 2025-06-25 17:22:37 2025-11-08 09:53:00
175 I SUBSUBCAT CAT SUBCAT Spectrum Outage map Show if Spectrum is down https://tinyurl.com/43wpw66e MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
174 I SUBSUBCAT CAT SUBCAT Speed up backup timemachine start the process;sudo sysctl debug.lowpri_throttle_enabled=1 give it a high priority Turn Off sudo sysctl debug.lowpri_throttle_enabled=1 https://tinyurl.com/288ykdat MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
173 I SUBSUBCAT CAT SUBCAT Processes Running See what top processess are running top -stats pid,command,cpu,th,pstate,time MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
172 I SUBSUBCAT CAT SUBCAT MSQL 8.0 > Passwords SHOW VARIABLES LIKE 'validate_password%'; - show level of security for passwords https://www.bing.com/search?q=mysql+security+definer&FORM=QSRE1&showconv=1 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
171 I SUBSUBCAT CAT SUBCAT Check Square is Square Go to board factory edge - line - flip over make another one over the one you just made - should line up https://tinyurl.com/ye5k2btm MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
170 I SUBSUBCAT CAT SUBCAT Time Machine Primer How to use tmutil https://tinyurl.com/24srues8 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
169 I SUBSUBCAT CAT SUBCAT Start time Machine backup from Terminal tmutil startback -d /Volumes/Name_offYouBackDisk httpshttps://tinyurl.com/msdhwpdu MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
168 I SUBSUBCAT CAT SUBCAT Change Priority of Background low Priority jobs sudo sysctl debug.lowpri_throttle_enabled=0;Now open Time Machine and click the Backup Now button to start the process;sudo sysc Make sure you turn on low priority command after you run spotlight or timemachine https://tinyurl.com/3wf7c9j3 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
167 I SUBSUBCAT CAT SUBCAT Rebuild Spotlight sudo mdutil -E / hhttps://tinyurl.com/5n74ahdj MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
166 I SUBSUBCAT CAT SUBCAT Lawn Mower Blade Sharpener Bought from temu http://tinyurl.com/y2nv9mcv MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
165 I SUBSUBCAT CAT SUBCAT Measuring Tape Clip Clip to help measure more accurately by using end of metal clip instead of tape measure http://tinyurl.com/25n6by2h MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
164 I SUBSUBCAT CAT SUBCAT Replacement vinyl leather https://www.sofarefinish.com/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
163 I SUBSUBCAT CAT SUBCAT Celiac Disease Video Documentary on impact of celiac on body https://vimeo.com/377383298 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
162 I SUBSUBCAT CAT SUBCAT Macos Contacts backup Backup - export to vcf then you can conver to other formats n http://tinyurl.com/mv99wbp4 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
161 I SUBSUBCAT CAT SUBCAT Star Knobs Easy to make star knobs - use forstner bit to star - drill center hole then use circle bit Watch video - draw circles, make points at 12, 3, 6, 9 on circle, use forstner bit on outside, drill center hole, use round dril http://tinyurl.com/2jdnj6f2 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
160 I SUBSUBCAT CAT SUBCAT Recipe Application Paul Recommended Paprika 3 - IPhone Recipe Application MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
159 I SUBSUBCAT CAT SUBCAT Lookup Information on People What websites to get information: voterrecords.com nuwber.com (get neighbors to) MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
158 I SUBSUBCAT CAT SUBCAT Hvac filters Replace every 6 months airflow value should be 5-8; arrow is pointing in MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
156 I SUBSUBCAT CAT SUBCAT pdf tools pdf expert best but expensive; Office Only is Only pdf tool Features Need: reduce size, drag photos in, put picture one sid and text on other side n https://rickbeachlbi.onlyoffice.com/rooms/shared/filter?searchArea=Active&page=1&sortby=DateAndTime&sortorder=descending MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
155 I SUBSUBCAT CAT SUBCAT Waterfalls NC From Julie on Okcupid n https://explorebrevard.com/top-10-waterfalls/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
154 I SUBSUBCAT CAT SUBCAT Save Files and Photos on Iphone to USB Drive Backup files and photos ios https://www.pocket-lint.com/how-to-use-external-storage-device-with-iphone/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
153 I SUBSUBCAT CAT SUBCAT Spectrum IP Address 65.191.164.168 https://whatismyipaddress.com/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
152 I SUBSUBCAT CAT SUBCAT Router Jack Using a car jack to make lift https://www.youtube.com/watch?v=3_JBFmbieVY MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
151 I SUBSUBCAT CAT SUBCAT Find exec Change Owner sudo find /path/to/directory -type f -exec chown rbutareOld {} ; MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
150 I SUBSUBCAT CAT SUBCAT Bow X Xtender 46 Bow XT Xtender - $229 kit $149 for fence - foam feather boards, push stick hold downs Look for it on sale and as a kit https://bow-products.com/product-category/woodworking/xt-xtender/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
149 I SUBSUBCAT CAT SUBCAT IOS to ClipBoard 1) Copy content on your iPhone. The content could be a block of text, an image, a link, or other content that can be copied. Must do Copy on iPhone then go to Mac for it to paste right info! 2)The copied content is now saved to the iPhone clipboard. It's also automatically added to the Mac clipboard. MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
148 I SUBSUBCAT CAT SUBCAT Lutron Caseta Switch Reset To Reset: Press 3X on Switch then Hold for 3 Sec. 2) Until it flashes - Release Tap On 3X will turn on Full; Press hold off 10 s https://support.lutron.com/us/en/product/casetawireless/article/troubleshooting/How-to-Factory-Default-Caseta-Dimmers-and-Switch https://www.youtube.com/watch?v=-hPMDZCisj0 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
147 I SUBSUBCAT CAT SUBCAT SSH Tips See if Setup: sudo systemsetup -getremotelogin Turn On: sudo systemsetup -setremotelogin on; Connect: sudo systemsetup -setremotelogin on; Connect ssh technastic@eagle.example MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
146 I SUBSUBCAT CAT SUBCAT Brew Commands brew upgrade - update Brew; brew outdated - outdated installs; brew upgrade - to updat loaded apps Installs apps in /opt/homebrew n https://tinyurl.com/2baw9xrp MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
145 I SUBSUBCAT CAT SUBCAT Homebrew - brew installs applications homebrew installs in /opt/homebrew/bin not /usr/lbin as before https://brew.sh/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
144 I SUBSUBCAT CAT SUBCAT Users Passwd /etc/passwd file only used in single user mode to see users: dscl . -ls /Users - users - prints out who is logged in; User info: https://superuser.com/questions/592921/mac-osx-users-vs-dscl-command-to-list-user#:~:text=Get%20a%20list%20of%20all%20users,%28j MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
143 I SUBSUBCAT CAT SUBCAT Inmotion Info runsh - intellihome01; runsql - to run commandline mysql - MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
142 I SUBSUBCAT CAT SUBCAT Apple Rapid Security Response and MDM Adds info to your path: /var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cr confirm this is ok with apple https://support.apple.com/guide/deployment/rapid-security-responses-dep93ff7ea78/web MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
141 I SUBSUBCAT CAT SUBCAT Missing programs sweetHome (sh3d) List of files/applications missing from macbook air https://www.sweethome3d.com/download.jsp MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
140 I SUBSUBCAT CAT SUBCAT Convert text to 60 characters wide in each line in vim :%gq/.{1,60}>/ Convert carriage return on each line to add \ before last character: 1,$s/$/\ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
139 I SUBSUBCAT CAT SUBCAT Convert Photo to black and white no grey background Open your image in GIMP.Duplicate the layer containing your image by right-clickingon the layer in the Layers panel and selectin Convert to Black & White first: Image->Mode-GreyScale n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
138 I SUBSUBCAT CAT SUBCAT Used Turf Used Turf and Putting Green Material Contact Zack 464 belle-oaks dr suite 105 Charlotte, nc 28208 9514148153 https://raleigh.craigslist.org/fod/d/sanford-buy-one-get-one-used-turf-sale/7663494062.html MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
137 I SUBSUBCAT CAT SUBCAT Henckel Modernist Knife Set Costco 20-piece Set Includes: 3.5 Paring Knife; 4 Paring Knife; 5 Serrated Utility Knife; 5.5 Prep Knife; 5.5 Boning Knife; 6 Ut Sizes are in inches - to determine which is which https://www.costco.com/henckels-modernist-20-piece-self-sharpening-knife-block-set.product.100512545.html?qid=91c1c91c393811ee81 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
136 I SUBSUBCAT CAT SUBCAT Deer Repellent Device PGFIT Latest 2023 Ultrasonic Animal repeller; solar with flashing led light and alarm MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
135 I SUBSUBCAT CAT SUBCAT javascript formatting Format Javascript - js https://beautifier.io MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
134 I SUBSUBCAT CAT SUBCAT Remove html tags sed 's/<[^>]*>//g' easy way to remove all html tags MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
133 I SUBSUBCAT CAT SUBCAT Area Code Lookup Look up area codes change 908 to number to lookup ; run areacode app lbin https://www.localcallingguide.com/lca_prefix.php?npa=908 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
132 I SUBSUBCAT CAT SUBCAT Bookmarklet Tool Tool to make bookmark javascript code https://caiorss.github.io/bookmarklet-maker/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
131 I SUBSUBCAT CAT SUBCAT Change Root password go to Directory Utility; under edit change root password drumhill1; n https://www.youtube.com/watch?v=vaCAs3jrY64 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
130 I SUBSUBCAT CAT SUBCAT 1Pass One Password Rick-Beach-732-319-6727-1P; MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
129 I SUBSUBCAT CAT SUBCAT Access iCloud from command line cd ~/Library/Mobile Documents/com~apple~CloudDocs/ not sure all files show up n https://osxdaily.com/2017/11/16/access-icloud-drive-command-line-mac/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
128 I SUBSUBCAT CAT SUBCAT Add Time capsule to Windows Must turn on SMB Client on Windows; Look for features turn on/off MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
127 I SUBSUBCAT CAT SUBCAT Date Night Cypress Bend Vineyards Jazzy Fridays $15 21904 Riverton Rd Wagram, NC 28396 Arnold from Kees Appliance Recommended https://www.cypressbendvineyards.com/events/jazzy-fridays/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
126 I SUBSUBCAT CAT SUBCAT Premium Sheildz anti bacterial glass for iphone 12 Replacement $4.99 https://premiumshieldz.com/warranty-replacement/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
125 I SUBSUBCAT CAT SUBCAT Router Sled Jig Use to flatten boards Paste Wax to bottom to make router slide easier https://www.youtube.com/watch?v=E_s8WCMu0GQ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
124 I Golf balance board Golf Driver Golf Down Under Board (DUB) Helps to fix balance, follow through, compression through ball opens to 18 10.5 wide - slider with 2 wing nuts; about a .5-1 off https://www.youtube.com/watch?v=CDQyqAOT8M4 Golf 2025-06-25 17:22:37 2025-11-08 09:57:00
123 I SUBSUBCAT CAT SUBCAT COVID Test Nc free covid tests order 1st each month 2 tests Order ID: ACT-NC-81HUHT0E n https://safercovid.org/mytest/trackorder.html?lang=en&orderID=ACT-NC-81HUHT0E MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
122 I SUBSUBCAT CAT SUBCAT NC Sales Tax North Carolina state sales tax rate is currently 4.75%. The Moore County sales tax rate is 2.25%. = 7% MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
121 I SUBSUBCAT CAT SUBCAT NU Stock Warren Buffet 8th largest holding Target price over $11 - Buy under 4.5 Watch stock https://seekingalpha.com/article/4584867-nu-holdings-im-buying-buffett-fintech-play MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
120 I SUBSUBCAT CAT SUBCAT Epoxy for Tables Epoxy at huge discounts n https://overstocckepoxy.com MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
119 I SUBSUBCAT CAT SUBCAT Carbide Ratings/Rankins C3 carbide stays sharp for longer periods of use but does require extra care to prevent chipping. C2 carbide is the more economi Define quality of router bits https://www.precisionbits.com/beginners-router-bit-buyer-guide-old.html MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
118 I SUBSUBCAT CAT SUBCAT Jet Bandsaw Model Jwbs-14cs 105 blade https://bit.ly/3ZrcF1o n https://uwm.edu/psychology/wp-content/uploads/sites/64/2014/10/Jet-Bandsaw-Model-JWBS-14CS.pdf MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
117 I Mental side of golf Golf Golf Tips Mental part of game How to get your game back after years off! https://theleftrough.com/getting-back-into-golf/ Golf 2025-06-25 17:22:37 2025-11-08 09:56:00
116 I Golf club square face Golf Golf Swing Square Club Face 3 things you do wrong to cause slice golf range https://rb.gy/kewj3i 2025-06-25 17:22:37 2025-11-08 09:52:00
115 I SUBSUBCAT CAT SUBCAT Price Tracker Amazon Track prices / deal - Keepa.com camelcamelcamel.com Track pricing before you buy items on amazon https://keepa.com MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
114 I SUBSUBCAT CAT SUBCAT Trying to get scp/rsync to work How to setup but not working Not working help! n https://www.bitlylinks.com/F0kLzhsMD MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
113 I SUBSUBCAT CAT SUBCAT Drill Bits - Best Metal Best Drill bits for drilling metal/steel have cobalt tip can sharpen - but expensive ; add drop of oil and board under for suppo https://www.bitlylinks.com/twCmIOMa1 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
112 I SUBSUBCAT CAT SUBCAT Shopsmith table saw dust collection fix for table saw dust collection https://www.bitlylinks.com/Pznu89iaB MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
111 I SUBSUBCAT CAT SUBCAT Mitre Saw Dust Collector Box How to build a box to collect dust on mitre saw https://www.bitlylinks.com/of8xsaAbb MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
110 I SUBSUBCAT CAT SUBCAT Stop Collar 1.24 ID Use for easy setup of tools on shopsmith to get a standard height Took one from lath end stand n https://www.youtube.com/watch?v=-7LlNgHkjp8 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
109 I SUBSUBCAT CAT SUBCAT Mirror to FireTv How to mirror iPhone/Mac to Fire Stick use application: Airscreen, apower mirror MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
108 I SUBSUBCAT CAT SUBCAT Remove Applications MacOs Remove application with all associated files: macCleaner, appCleaner n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
107 I SUBSUBCAT CAT SUBCAT Adobe Collage - Adobe Express Make simple Collage MacOs https://www.bitlylinks.com/cRXksVtYl MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
106 I SUBSUBCAT CAT SUBCAT Shorten URL Links How to shorten URL https://www.bitlylinks.com/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
105 I SUBSUBCAT CAT SUBCAT Show Menu Bar on Extended Display Show Menu Bar by changing Display Settings ->Menu Bar to Show not QUTO HIDE MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
104 I SUBSUBCAT CAT SUBCAT Bandsaw blade selection When it comes to choosing a blade for woodworking, the correct answer will depend largely on your own needs. Do you need very ac When it comes to choosing a blade for woodworking, the correct answer will depend largely on your own needs. Do you need very ac n bandsaw, blades, tips, woodworking, MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
103 I SUBSUBCAT CAT SUBCAT Alexa Dot Echo - Updates to Update Dot/Echo Say, Check for software updates to install software on your Echo device. https://www.amazon.com/gp/help/customer/display.html?ref_=hp_left_v4_sib&nodeId=GEYUPNHC9AYVL4Q3 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
102 I SUBSUBCAT CAT SUBCAT Workbench with shelves Good Tips on how to make and glue and attach n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
101 I SUBSUBCAT CAT SUBCAT Make Track Saw Home Made track saw for circular saw https://www.youtube.com/watch?v=H0BZLbW1lvQ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
100 I SUBSUBCAT CAT SUBCAT Medicines health Info Info is in medicines.txt in ~/lbin/medicines.txt MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
99 I SUBSUBCAT CAT SUBCAT Pallets Bad Pallets are marked MB Methyl Bromide - EUR are all bad MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
98 I SUBSUBCAT CAT SUBCAT Sketchup - Create 3d plans https://www.youtube.com/watch?v=0ay583JF7uk&list=PLIiM-fMXa1uy0M4ogrV2QqpXXITYd4XR0 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
97 I SUBSUBCAT CAT SUBCAT Tps Stock Truck Automation Leader in Truck Automation cost about $9.5 target price 20.35 ravi shanker morgan stanley strong Buy - 20220803 https://www.tipranks.com/stocks/tsp/forecast https://www.yahoo.com/video/jim-cramer-says-now-time-132240832.html?guccounter=1&guce_referrer=aHR0cHM6Ly93d3cuZ29vZ2xlLmNvbS8&g MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
96 I SUBSUBCAT CAT SUBCAT Long Term Electric Battery Storage - Vanadium Watch for vanadium development to hold electricity from wind/solar for up to 30 years; develop by us govt - sold to china watch company - UET uniEnergy Technologies https://www.mprnews.org/story/2022/08/03/npr-new-battery-technology-china-vanadium MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
95 I SUBSUBCAT CAT SUBCAT Dew Point Ask Alexa - Alex ask Big Sky what the dew point is? MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
94 I SUBSUBCAT tutorial mysql mySql Tutorial Has good examples of queries and subqueries tutorial, mysql xhttps://www.mysqltutorial.org/mysql-subquery/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
93 I SUBSUBCAT CAT SUBCAT Alexa Echo Update How to update alexa echo software Say Alexa check for software updates n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
92 I SUBSUBCAT CAT SUBCAT Hexagonal Calculator Determine size of Hexagonal dimensions https://www.omnicalculator.com/math/hexagon MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
91 I SUBSUBCAT CAT SUBCAT LG Claim for Paramount+ Rebate $100 Rebate $100 credit paramount+ https://entertainment.lg-promos.com/tvoffer/en-US/track-claim MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
90 I SUBSUBCAT CAT SUBCAT DQ8 Gene - Celiac Gene Test https://www.verywellhealth.com/hla-dq8-one-of-the-main-celiac-disease-genes-562571 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
89 I SUBSUBCAT CAT SUBCAT hla-dq2 Primary Gene for Celiac Disease Celiac Gene - hla-dq2 n https://www.verywellhealth.com/hla-dq2-the-primary-celiac-disease-gene-562569 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
88 I SUBSUBCAT CAT SUBCAT Find Device or IP Address using MAC Address Get ip address from macId https://www.pcwdld.com/find-device-or-ip-address-using-mac-address MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
87 I Eliminate slice Golf Golf - Remove Slice Eliminate Slice - club face square to ball https://www.youtube.com/watch?v=lemsx2_ArnQ&list=PLD39949332C7FB168&index=2 Golf 2025-06-25 17:22:37 2025-11-08 09:58:00
86 I SUBSUBCAT CAT SUBCAT Font Size In Safari Make font size no smaller than x - preferences->advanced->font size 14 https://www.idownloadblog.com/2020/03/02/how-to-make-text-bigger-in-safari/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
85 I SUBSUBCAT CAT SUBCAT Propane Prices Get Current Prices of Propane in NC n https://www.eia.gov/dnav/pet/hist/LeafHandler.ashx?n=PET&s=W_EPLLPA_PRS_SNC_DPG&f=W MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
84 I SUBSUBCAT CAT SUBCAT Remove/Lighten Background in Image/Picture Use word to lighten background or modify picture http://www.word-2013-tutorials.com/lighten-a-picture-in-word/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
83 I SUBSUBCAT CAT SUBCAT Find ip and mac addresses Command: arp -a - will show all ip and mac addresses on network arp -a | grep 197 - find printer n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
82 I SUBSUBCAT CAT SUBCAT Scan Pages on Iphone Create a new Note in Notes and Use Camera to scan page. Makes Page Background White - Use this for copying Vicki Coloring books and print on Stock Paper use Tray 1 https://support.apple.com/en-us/HT210336 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
81 I SUBSUBCAT CAT SUBCAT Gimp Toolbox - Tools Missing Missing all tools in toolbox - make sure the group toolbox items is off in Preferences->Use Tool Groups is off https://www.youtube.com/watch?v=TS6FBaF9V_s MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
80 I SUBSUBCAT CAT SUBCAT Files Stored for WebServer: /Library/WebServer/Documents Default Directory for Websetup on localhost MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
79 I SUBSUBCAT CAT SUBCAT Google Nest Device Info Find Infor on which Point a device is connected to - go to home App; Devices->Info; also can test speed or prioritize devices https://support.google.com/googlenest/answer/7578264 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
78 I SUBSUBCAT CAT SUBCAT Privacy Shrubs Fastest growing evergreen and the best for privacy screening. Grows 3+ feet per year! They are 3ft tall in 3 gallon pots. $15 pe privacy evergreen Thuja Green Giants $15 each 919-548-0017 n Call or text 9l9 548 ool7 for details or PM. MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
77 I SUBSUBCAT CAT SUBCAT LanScan network If you use this app, clear the arp cache before (sudo arp -a -d) scanning free only 4 devices $5.99 n https://www.macupdate.com/app/mac/40742/lanscan MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
76 I SUBSUBCAT CAT SUBCAT Lan Saan Get IP addresses of devices on the network https://apps.apple.com/us/app/lanscan/id472226235?mt=12 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
75 I SUBSUBCAT CAT SUBCAT Networ Analyzer hot spots Find Wifi Strength in area Ios app n https://www.netspotapp.com/wifi-heat-map/best-wifi-mapper-apps.html#WiFi_SweetSpots_Map MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
74 I SUBSUBCAT CAT SUBCAT Device Holder GoDonut GoDonut is elegantly simple, yet highly functional holds phone ipad computer etc in easy position Best of XCES Winner $24.95 n https://getgodonut.io/blog-winner-of-the-big-ces-show-1/?lpid=788&utm_source=8639&utm_medium=5d6cd616-e942-4033-81cb-c082e3d491a MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
73 I SUBSUBCAT CAT SUBCAT Reset Alexa Reset with button in back, in settings, hold down microphone and volume down for 20 seconds n https://www.the-ambient.com/how-to/reset-amazon-echo-1268 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
72 I SUBSUBCAT CAT SUBCAT Septic Tank - Kill Roots Add Copper Sulfate to Distribution point to kill roots growing in n septic lines - Tim Gandy Need to add clean out at distribution point n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
71 I SUBSUBCAT CAT SUBCAT Moore County Environmental Health Lot 143 Septic tank information No Map yet n https://gis.moorecountync.gov/mooreinfo2010/default.aspx?PARID=20040395 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
70 I SUBSUBCAT CAT SUBCAT Find Missing/Lost Cursor Press Command + Tab to Get to force Quit window https://macreports.com/mouse-cursor-pointer-disappears-on-mac-fix/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
69 I SUBSUBCAT CAT SUBCAT Finder to show hiddent files CMD->Shift->Period MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
68 I SUBSUBCAT CAT SUBCAT Zsh Conversion Moving to Zsh n https://scriptingosx.com/2019/07/moving-to-zsh-06-customizing-the-zsh-prompt/#:~:text=zsh%20uses%20the%20same%20shell%20variable MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
67 I SUBSUBCAT CAT SUBCAT Spectrum TV Out of Sync How to resync voice/audio to picture Recommended steps:n n Send a refresh signal to your receiver.n Change channels to determine if the audio mismatch is channel-spe n https://www.spectrum.net/support/tv/new-spectrum-guide-audio-troubleshooting/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
66 I SUBSUBCAT CAT SUBCAT zSh - startup files .profile = .zshrc alis = ~/custom-alias env settings= .zshenv .zlogin = login shell .zlogout - what runs on exit How to setup zsh files as replacement for bash n https://apple.stackexchange.com/questions/388622/zsh-zprofile-zshrc-zlogin-what-goes-where MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
65 I SUBSUBCAT CAT SUBCAT Gmail Text Expander Quick shortcuts to expand shortcuts to special gmail searches gmtd, gmwk, gmmo -- gmalert -- gmapps -- gmbank -- gmhouse -- gmjunk -- gmstores -- gmail2 -- gmunread -- gmtry -- gmhome -- mkr n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
64 I SUBSUBCAT CAT SUBCAT smartthings Login Login use samsung login n https://account.smartthings.com/login#showLoginForm MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
63 I SUBSUBCAT CAT SUBCAT Smartthings Hub Developer Portal New New Portal for smartthings n https://smartthings.developer.samsung.com/docs/index.html MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
62 I SUBSUBCAT CAT SUBCAT OBDII Diagnostics for Car OBDII device for car from bafx products to read check engine codes Use the softare OBD Fusion / car scanner from App store - I think I bought this n https://bafxpro.com/products/wifi-obdii-reader-scanner-for-ios-devices MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
61 I SUBSUBCAT CAT SUBCAT Applications added with homebrew/brew Install applications brew install ncu N MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
60 I SUBSUBCAT CAT SUBCAT Json command like sed, awk jq Unix command for json to format output like sed awk MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
59 I SUBSUBCAT CAT SUBCAT Top Replacement for Processes Htop - new replacement for top command MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
58 I SUBSUBCAT CAT SUBCAT Du command replacement Visual size du command replacement N MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
57 I SUBSUBCAT CAT SUBCAT Brew Cask Use Cask to install some applications: brew cask install inkscape; brew cask list - to list applications installed by cask not sure what brew cask is n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
56 I SUBSUBCAT CAT SUBCAT Brew Commands check version: brew update wget; Update wget: brew upgrade wget; what is outdated - needs update: brew outdated n https://devhints.io/homebrew MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
55 I SUBSUBCAT CAT SUBCAT Get Version of Brew Software Installed How to determine what software is installed by brew and version: brew list --versions n https://devhints.io/homebrew MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
54 I SUBSUBCAT CAT SUBCAT Brew Update How to update Brew - application or all installed brew software Brew update updates brew and brew upgrade updates brewed software. If you want to keep your software up to date I’d recommend ru n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
53 I SUBSUBCAT CAT SUBCAT Imovie Short cut keys Make a range i key to start o key to end; to play range not sure ? r key to create range ; cmd->b to split / to play range https://www.idownloadblog.com/2020/01/16/imovie-keyboard-shortcuts-hotkeys-mac/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
52 I SUBSUBCAT CAT SUBCAT Gimp Convert to Black and White Colors->Colorize->Color Pick Grey Duplicate the original image (Shft+Cmd+D) and right-click on the copy. Select Image -> Mode - n https://www.gimp.org/tutorials/Color2BW/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
51 I SUBSUBCAT CAT SUBCAT Keynote Smaller Size Go to the File menu and select Reduce File Size. ... Use to reduce size of file and images n https://www.techwalla.com/articles/how-to-reduce-keynote-file-size MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
50 I SUBSUBCAT CAT SUBCAT SambaNova NLP and AI Company SambaNova company AI competing with MSFT and GOOGLE on AI parameters watch for investment opportunity MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
49 I SUBSUBCAT CAT SUBCAT Input Shortcuts for Mac Typinator Typinator good application for shortcut typing MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
48 I SUBSUBCAT CAT SUBCAT Search for Starred Emails Search for Starred : zillow: in:starred NOT STARRED: zillow: -in:starred not starred: zillow: -in:starred n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
47 I SUBSUBCAT CAT SUBCAT Send Large Files Transfer large files Files to 2.5gb https://send.firefox.com MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
46 I SUBSUBCAT CAT SUBCAT 27376 Real Estate Lookup - West End Find all homes for sale in West End Area in NC n https://www.realtor.com/realestateandhomes-search/27376/price-300000-800000/sby-6 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
45 I SUBSUBCAT CAT SUBCAT Houses Sold/ForSale In Mclendon Hills All Home Listings Mclendon Hills All Homes on Market n https://www.zillow.com/homes/for_sale/2_p/?utm_source=email&utm_medium=email&utm_campaign=emo-dailysavedsearch&rtoken=f5339eb8-2 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
44 I SUBSUBCAT CAT SUBCAT Next Billion Dollar Investments investment future read later n https://www.forbes.com/sites/amyfeldman/2019/07/16/next-billion-dollar-startups-2019/?utm_source=newsletter&utm_medium=email&utm MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
43 I SUBSUBCAT CAT SUBCAT All Homes McLendon Hills houses and lots https://www.realtor.com/realestateandhomes-search/McLendon-Hills_West-End_NC MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
42 I SUBSUBCAT CAT SUBCAT Lots Mclendon Hills lots beth's point n https://www.realtor.com/realestateandhomes-detail/211-Beth-Pt_West-End_NC_27376_M63520-52544#photo0 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
41 I SUBSUBCAT CAT SUBCAT Weather info weather, sunrise sunset temps n https://www.willyweather.com/nc/moore-county/west-end.html MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
40 I SUBSUBCAT CAT SUBCAT Animated Css Effects Nice Css animations for spinner bubbles buttons n https://emilkowalski.github.io/css-effects-snippets/?ref=producthunt MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
39 I SUBSUBCAT CAT SUBCAT Good Search for McLendon Hills All available properties n https://www.zillow.com/homes/for_sale/?utm_source=email&utm_medium=email&utm_campaign=emo-dailysavedsearch&rtoken=30ee04ca-639e- MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
38 I SUBSUBCAT CAT SUBCAT Contrast Sensitivity How I am seeing greys in white spaces - lisa sheds bathroom granite n https://www.aoa.org/Documents/optometric-staff/Articles/Contrast-Sensitivity.pdf MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
37 I SUBSUBCAT CAT SUBCAT Simulation of vision problems shows all types of vision loss video n https://www.visionaware.org/info/your-eye-condition/eye-health/vision-simulation-video/125 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
36 I Vision Loss - Glacoma medical Glacoma Vision Loss Good Article on Vision loss dr questions eyes,vision https://www.visionaware.org/info/your-eye-condition/glaucoma/patients-guide-to-living-with-glaucoma/125 MOREINFO 2025-06-25 17:22:37 2025-11-04 07:34:00
35 I SUBSUBCAT CAT SUBCAT New Mac USER video beginner macos 45min ttp://bit.ly/TechTalkPDFGuides n https://www.youtube.com/watch?v=_7wmVxUCzs0 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
34 I SUBSUBCAT CAT SUBCAT Reset Video 2nd Monitor Display External Monitor not working not sure works n https://www.youtube.com/watch?v=kaCZ-AqqIoA MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
33 I SUBSUBCAT CAT SUBCAT Disability Menu Tools Contrast text size nice features n https://www.shouselaw.com/first-time-dui.html MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
32 I SUBSUBCAT CAT SUBCAT Compress images jpg Compress smaller files online compressor n https://compressjpeg.com/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
31 I SUBSUBCAT CAT SUBCAT UrlEncoder encode url information n https://www.urlencoder.org/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
30 I SubSubCat Cat SubCat Title Description Comments Attachments Links MoreInfo 2025-06-25 17:22:37 2025-06-25 17:23:46
29 I free images photos Images for Web - no cost, copyright, attributions Get free images for web use commercial/personal n https://www.pexels.com/ Free Stock I 2025-06-25 17:22:37 2025-06-25 17:23:46
28 I SUBSUBCAT CAT SUBCAT t d c n l MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
27 I SUBSUBCAT CAT SUBCAT How to move photos from IPhone to macbook use iPhoto app or image capture on macbook n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
26 I SUBSUBCAT CAT SUBCAT Where are my ios/IPhone photos backed up to? google, iCloud, microsoft find photos how to move to macbook n https://iphonephotographyschool.com/how-to-transfer-photos-from-iphone-to-mac/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
25 I SUBSUBCAT CAT SUBCAT Console tricks Try these tricks/tips console.log debug /Users/rbutare//lbin/tipsAttachments//20190406082618.html https://areknawo.com/getting-creative-with-the-console-api/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
24 I SUBSUBCAT CAT SUBCAT Southern Pines Pinehurst House $650 15 Masters Ridge Place Southern Pines, NC 28387 15 Masters Ridge Place Southern Pines, NC 28387 MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
23 I SUBSUBCAT CAT SUBCAT One Note Stickies off Iphone Can't find stickies in Onenote app must go online to get them n https://www.onenote.com/stickynotes# MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
22 I subsub cat sub Test 2 Links and Attachment desc NOT WORKING ON SECOND ATTACHMENT Test Record with attachment 2 links 2 tags /Users/rbutare//lbin/tipsAttachments//20190403082625.html /Users/rbutare//lbin/tipsAttachments//link1.html, link2 moreinfo 2025-06-25 17:22:37 2025-06-25 17:23:46
21 I SUBSUBCAT CAT SUBCAT Speed Test Internet Check Speed test n https://www.speedtest.net/,http://speedtest.xfinity.com/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
20 I SUBSUBCAT CAT SUBCAT Websites Down Detector Check if websites are having problems reported n https://downdetector.com/status/facebook-messenger MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
19 I SUBSUBCAT CAT SUBCAT Email Tabs open in Firefox Send Email or put in clipboard all links of tabs that are open n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
18 I SUBSUBCAT CAT SUBCAT Memory Test Dr Apter Princeton Medical Institute Free Memory Test study Vicki found in Star Ledger 609-921-6050 n MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
17 I SUBSUBCAT CAT SUBCAT UI I Like I like the blue black rounded corners on edge blues and good fonts n https://www.roomkey.com/hotels/1b7VGiG4T04s6Rl05g9krVMw/compare?brand=152&checkIn=2019-04-02&checkOut=2019-04-03&currency=USD&de MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
16 I SUBSUBCAT CAT SUBCAT Get TinyMCE Colors for ui blue grey Make green the orange colors Image is in: /Users/rbutare/Documents/Screenshots/tinyMceColors.jpg /Users/rbutare//lbin/tipsAttachments//20190330175815.html https://www.tiny.cloud/get-tiny/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
15 I SUBSUBCAT CAT SUBCAT Famous Demo for building slideshow Beta Software Remove famous from macbook.sierra n https://api.famous.co/api/a/7hrxwh/ MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
14 I SUBSUBCAT CAT SUBCAT Bike Ride Mapping Great tool to create bike maps rickbeachlbi n https://ridewithgps.com/routes/new MOREINFO 2025-06-25 17:22:37 2025-06-25 17:23:46
12 I Toll Brothers Kitchn Planner kitchen Toll Brothers Kitchn Planner Great Kitchen planner for cabinets layout colors Try it out kitchen https://www.tollbrothers.com/luxury-homes-for-sale/North-Carolina/Toll-Brothers-at-Weddington/Executive-Collection 2025-06-25 17:22:37 2025-11-04 08:03:00
11 I Wawa Background colors todo Wawa Background colors Use these colors for backgrounds Add from shell n https://wawa.kobie.com/pages/UnsubscribeComplete.aspx MOREINFO 2025-06-25 17:22:37 2025-11-04 08:02:00
10 I UI Interface increase font contrast text for accessibility ui UI Interface increase font contrast text for accessibility desc Add from shell n https://www.rwjbh.org/events/register/thank-you/?signup=d67bc2886e8761f5cb57fc7819676104f497798926bc006aac7eb712ec8b51298d3ad95a MOREINFO 2025-06-25 17:22:37 2025-11-04 08:02:00
9 I test attachment test Try out to view attachment Comments are here sample,test ~/lbin/tipsAttachments/20190323170202.html 2025-06-25 17:22:37 2025-11-07 00:39:00
6 I vim cat subCat Select HTML Block of Tags How select block of matching tags Place the cursor on the tag.<br> Enter visual mode by pressing v.<br> Select the outer tag block by pressing v + a + t <br>or <k tipsVim.html https://stackoverflow.com/questions/6270396/navigating-html-tags-in-vim MoreInfo 2025-06-25 17:22:37 2025-06-25 17:23:46
3 I mySql csv to sql mySql todo Convert CSV to SQL Table Comments: Does this work ( https://convertcsv.com/csv-to-sql.htm mysql, csv MoreInfo attachment 2025-06-25 17:22:00 2025-11-19 10:54:00
Loading...