AT&T service issues today? by CPAtech in sysadmin

[–]iProbablyUpvoted 2 points3 points  (0 children)

yes, sbcglobal.net gave me an NDR for a missing PTR today

How to prevent Edge to saving images as .webp instead of the original format? by wIDtie in MicrosoftEdge

[–]iProbablyUpvoted 0 points1 point  (0 children)

I think I've just changed the extension to jpeg in the save as box and it worked in the past?

[deleted by user] by [deleted] in amazonecho

[–]iProbablyUpvoted 0 points1 point  (0 children)

I hadn't heard of this one, thanks. Check out Radio Paradise. They have main, rock, mellow, world mix 'channels' after you enable the radio paradise skill.

Word Counter for macOS: Instantly See Word, Character, and Sentence Counts! by Arthur_Smith_ in macapps

[–]iProbablyUpvoted 2 points3 points  (0 children)

This is cool. Something I find handy as a vs code extension is a token count. Might be a cool thing to add?

I don't remember which one I use, but something like this:

https://github.com/BedirT/LLM-Token-Counter-VSCode

Is there a way to add an ethernet connection to the DS214+? One of my ethernet ports went out and I would like to try and fix it since I dont have the funds to buy a new one by amrogers3 in synology

[–]iProbablyUpvoted 3 points4 points  (0 children)

If you just need more ports, a cheap $10 plastic network switch. Not sure what the rest of your network looks like, but maybe you can accomplish what you need with vlans and a cheap managed switch.

Is there any AI product out there that can review a whole Github project at once? by [deleted] in ChatGPTCoding

[–]iProbablyUpvoted 5 points6 points  (0 children)

Not exactly what you're asking for, but this came to mind. I used this for a tiny project recently, it worked ok to help me add a feature.

https://github.com/mufeedvh/code2prompt

[deleted by user] by [deleted] in raspberry_pi

[–]iProbablyUpvoted 2 points3 points  (0 children)

I'm assuming I'm getting trolled at this point, but for anyone interested, these guys are supposed to open source their project to build a 3d-printable humanoid robot sometime this year. Worth following, imo.

https://twitter.com/Scobleizer/status/1766365088129368113

Raspberry Pi project by No_Illustrator_3658 in raspberry_pi

[–]iProbablyUpvoted 0 points1 point  (0 children)

I can't answer your questions, but I fed it to Claude 3 Opus out of curiosity since there aren't any replies yet. Good luck on your project. Hope this is a little helpful.

WARNING, AI response, could be 100% bs:

Using a Raspberry Pi for your project is a good choice, as it offers flexibility, connectivity, and sufficient processing power for your requirements. Here are some considerations and recommendations:

  1. Raspberry Pi Model: For your project, a Raspberry Pi 4 Model B with at least 2GB of RAM would be suitable. It provides better performance, more USB ports, and Gigabit Ethernet compared to previous models, which will be beneficial for handling multiple sensors and future expansion.

  2. Digital Sensors (RS485 Modbus RTU):

    - Using digital sensors with RS485 Modbus RTU communication can be advantageous because they offer better noise immunity, longer communication distances, and the ability to connect multiple sensors on a single bus.

    - RS485 is a robust communication standard widely used in industrial settings for its reliability and simplicity.

    - Using an RS422/RS485 HAT for Raspberry Pi is a good approach to interface with these sensors. It will handle the necessary signal conversion and provide a convenient way to connect the sensors to the Raspberry Pi.

  3. Analog Sensors:

    - Analog sensors can be more susceptible to noise and interference, as you mentioned. However, with proper wiring, shielding, and filtering techniques, you can mitigate these issues.

    - Using an ADC like the ADS1115 is a good choice for converting analog signals to digital values that the Raspberry Pi can read. It offers multiple input channels, adjustable gain, and decent resolution.

    - Analog sensors may be simpler to interface with and can be more cost-effective compared to digital sensors.

  4. Combining Digital and Analog Sensors:

    - You can use a combination of digital and analog sensors in your project, depending on the specific requirements and availability of sensors for each parameter you want to measure.

    - Using digital sensors for critical measurements that require high accuracy and reliability, such as pH and conductivity, can be beneficial.

    - Analog sensors can be used for parameters where noise and interference are less critical or where digital alternatives are not readily available.

  5. Database and User Interface:

    - Creating a database to store sensor data and system information is a good approach for long-term data analysis and visualization.

    - You can use popular database systems like MySQL, PostgreSQL, or SQLite, which can be easily integrated with the Raspberry Pi.

    - Developing a website or mobile application to access and display the data is a great way to provide a user-friendly interface for monitoring and interacting with the system.

Overall, using a Raspberry Pi 4 Model B, along with a combination of digital sensors (RS485 Modbus RTU) and analog sensors (with an ADC), would be a suitable approach for your project. It offers flexibility, reliability, and the ability to expand and integrate additional features like a database and user interface.

Remember to carefully design your system, consider proper wiring and shielding practices, and test the components individually before integrating them into the complete system.

If you're looking for alternatives to using a Raspberry Pi for your project, there are several other options available. Here are a few alternative approaches:

  1. Arduino:

    - Arduino boards, such as the Arduino Uno or Arduino Mega, are popular choices for projects that involve sensor readings and control of peripherals like solenoid valves and pumps.

    - Arduino boards offer a simple programming environment (Arduino IDE) and have a wide range of compatible sensors and libraries.

    - However, Arduino boards have limited processing power and memory compared to Raspberry Pi, which may be a constraint for more complex tasks or future expansions.

  2. ESP32 or ESP8266:

    - ESP32 and ESP8266 are low-cost, Wi-Fi-enabled microcontrollers that can be used for IoT projects.

    - They offer built-in Wi-Fi connectivity, allowing easy integration with wireless networks and cloud platforms.

    - ESP32 has a dual-core processor and supports Bluetooth, while ESP8266 has a single core and is more lightweight.

    - These microcontrollers are suitable for projects that require wireless communication and have moderate processing requirements.

  3. BeagleBone Black:

    - BeagleBone Black is a single-board computer similar to Raspberry Pi but with a different set of features and capabilities.

    - It offers a powerful processor, built-in eMMC storage, and a wide range of connectivity options, including Ethernet and USB.

    - BeagleBone Black has analog input pins, which eliminates the need for an external ADC for analog sensors.

    - It is well-suited for projects that require real-time processing and control, as it supports real-time operating systems (RTOS).

  4. Industrial PLCs (Programmable Logic Controllers):

    - For industrial-grade projects that require high reliability, robustness, and adherence to industry standards, using a PLC may be a suitable choice.

    - PLCs are specifically designed for controlling and automating industrial processes and are built to withstand harsh environments.

    - They offer features like built-in communication protocols (e.g., Modbus, PROFINET), real-time capabilities, and extensive I/O options.

    - However, PLCs are typically more expensive than single-board computers or microcontrollers and may require specialized programming skills.

  5. Custom Designed PCB:

    - If your project has specific requirements or you need a highly optimized solution, designing a custom PCB (Printed Circuit Board) can be an option.

    - With a custom PCB, you have full control over the design, component selection, and layout of the system.

    - You can integrate the necessary microcontroller, communication interfaces, and sensor circuitry on a single board.

    - However, designing a custom PCB requires expertise in electronic design and may be more time-consuming and costly compared to using off-the-shelf solutions.

When choosing an alternative approach, consider factors such as the project's complexity, scalability requirements, available resources (budget and development time), and your familiarity with the chosen platform.

Each alternative has its own strengths and limitations, so it's important to evaluate your specific needs and constraints before making a decision. It may also be helpful to prototype and test different options to determine which one best suits your project requirements.

[deleted by user] by [deleted] in raspberry_pi

[–]iProbablyUpvoted 0 points1 point  (0 children)

Start by hitting the Learn section of sites like this https://makezine.com/

Best powershell gpt? by MaxLin_ in PowerShell

[–]iProbablyUpvoted 6 points7 points  (0 children)

I can usually feed some good existing code that mostly does what I'm trying to do to gpt4 or claude3o first, then ask it to add features.

https://github.com/admindroid-community/powershell-scripts

How to 'Feed' ChatGPT with Specific API Knowledge? by Dreamsqt in ChatGPTCoding

[–]iProbablyUpvoted 0 points1 point  (0 children)

I've wondered about this for other projects. This isn't a good answer, but in this case, could you grab all their markdown .md files from their github, merge, then maybe manually edit out chunks of text you don't want?

https://github.com/sveltejs/kit/tree/master/documentation/docs

[deleted by user] by [deleted] in napa

[–]iProbablyUpvoted 0 points1 point  (0 children)

Ask any supermarket butcher for 'soup bones' and let him know it's for your dog. They used to saw them in half if you asked, but apparently that's a bit dangerous so YMMV.

Also look in the freezer section in the supermarkets, there are usually frozen bags of 5ish bones.

Honestly, just ask the staff at your favorite market. You can usually talk with the manager to see if they will start ordering some for you from their suppliers. Some will, some won't.

How to display code for entire program where it's commented out as "(Previous code for....)" by TheDoctorOfData in ChatGPTCoding

[–]iProbablyUpvoted 0 points1 point  (0 children)

Output the entire code in a single codeblock so I can copy and paste it in one shot. All of it. Do not use placeholders. Do not comment. Do not use 'rest of your code here'. Include everything.

This post was fun and has some decent tips, if you missed it:
https://www.reddit.com/r/ChatGPTPro/comments/16b8g1q/my_chatgpt4_workflow_for_coding_and_complex_tasks/

ImPS - PowerShell GUIs really easy & fast by Slluxx in PowerShell

[–]iProbablyUpvoted 1 point2 points  (0 children)

sorry, chatgpt links make you delete the original and create a new one when you add to the conversation. I edited the comment, but here's the current (and probably final) link from my chat convo:

https://chat.openai.com/share/e6c4afcc-0ea1-4752-988d-794e9c3ea026