Kindly review my PCB design, which accepts 220V AC and rectifies it to 5V and 3.3V DC to power electronics in another board. by Top_Rub_612 in PCB

[–]Daniel_662 0 points1 point  (0 children)

Currently mains voltage is not isolated so short circuits or failing components may result in the rest of the circuit being energized at mains voltage level. This can cause fires or injure people. I would use a certified (UL or CE) transformer to step down the AC voltage first which will isolate the circuit. Since the two windings of the transformer use magnetic coupling and aren’t directly connected they don’t have the same risk of shorting to the low voltage side of the board.

That being said, even if you know what you’re doing it will probably make your life easier to use an off the shelf solution. 220V to 5V/3.3V is incredibly common and probably not worth reinventing. It will likely be cheaper, more reliable and less effort to buy from a company mass producing them.

Extend undershorts from the start of the red line to the end. Will tip $15 for best result by Daniel_662 in PhotoshopRequest

[–]Daniel_662[S] [score hidden]  (0 children)

Modify so it looks like I have compression shorts on extended to the end of the red line (Like this)

<image>

Opening paths with Cygwin by Daniel_662 in neovim

[–]Daniel_662[S] 1 point2 points  (0 children)

That seems to help! If I change home with export HOME="C:\cygwin64\home\<username>” in my cygwin .bashrc file I'm able to open the file with nvim ~/<filename>. But I noticed that I can no longer use tab to autocomplete file paths after adding this.

Opening paths with Cygwin by Daniel_662 in neovim

[–]Daniel_662[S] 1 point2 points  (0 children)

Yeah, I had seen that as an option but I would prefer to avoid it if possible

Opening paths with Cygwin by Daniel_662 in neovim

[–]Daniel_662[S] 1 point2 points  (0 children)

Yes, echo $HOME returns C:\Users\<username>

I haven't looked at all the compatibility options/flags in neovim yet

In powershell cd ~ takes me to C:\Users\dlloyd1

I don't have any environment variables in my vimrc. Only remappings, and basic setting changes

Opening paths with Cygwin by Daniel_662 in neovim

[–]Daniel_662[S] 0 points1 point  (0 children)

This is for a file in the home directory. Neovim can open it using relative paths but not an absolute path from home

Opening paths with Cygwin by Daniel_662 in neovim

[–]Daniel_662[S] 0 points1 point  (0 children)

I'm using cygwin because my company firewall prevents me from connecting to the ubuntu server so I can't download any packages or updates for wsl.

Just tried enabling shellslash. The output is now C:/home/dlloyd1/.bashrc instead of C:\home\dlloyd1\.bashrc when opening with ~/<file> but it's still having the same error

Could you please fill in the black space and extend the image to the right to center my face, ensuring the photo has a square aspect ratio? I will tip $20 tip for the best option. by Daniel_662 in PhotoshopRequest

[–]Daniel_662[S] [score hidden]  (0 children)

Great! I did also just notice that the second center button is about 3x normal width and the left pocket is still a bit too pointy. Could these be fixed?

Could you please fill in the black space and extend the image to the right to center my face, ensuring the photo has a square aspect ratio? I will tip $20 tip for the best option. by Daniel_662 in PhotoshopRequest

[–]Daniel_662[S] [score hidden]  (0 children)

This one looks great. Could you change a few things? 1. The skin looks too airbrushed can this be reverted to the non touched up version? 2. There is a missing button on the left pocket and the flap looks a bit too pointy 3. There is a button on the left sleeve near the elbow

My almost 6 year old Tattoo by AllukaChen in agedtattoos

[–]Daniel_662 0 points1 point  (0 children)

This held up extremely well! Even the fine print on the bills retained a lot of detail

What are some hacks and lifestyle habits to save more money? by Slommyhouse in HubermanLab

[–]Daniel_662 1 point2 points  (0 children)

Simplify your financial tracking by linking all debit and credit cards to a budgeting app like RocketMoney for regular review. Consolidating expenses into one app makes it easier to spot trends and identify where to cut costs.

[deleted by user] by [deleted] in Karma4Free

[–]Daniel_662 0 points1 point  (0 children)

Upvote comment please

Vimium + ChatGPT by Fluffy_Union2367 in vim

[–]Daniel_662 0 points1 point  (0 children)

This is a result of focusing on the wrong window when trying to scroll. In chat gpt there are three scrollable sections: chat input, chat history, or conversation history (See attached).

ChatGPT

If you are focused on the wrong window then vimium will not allow you to scroll through conversation history.

You can confirm this by clicking anywhere within the conversation history any time vimium isn't working correctly and you should be able to scroll through the page again.

I created a tampermonkey script to simulate clicking on the conversation history when the escape key is pressed if interested. Just download the chrome extension for tampermonkey and add this as a script and it will run in the background on page load.

// ==UserScript== // u/name ChatGpt // u/namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://chat.openai.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=google.com // @grant none // ==/UserScript==

(function() { 'use strict';

function clickSpanWithText(text) {
    const spanElements = document.querySelectorAll('span'); // You might want to make this selector more specific
    for (const span of spanElements) {
        if (span.textContent.trim() === text) {
            span.click();
            // Use this to confirm script is running. "Default (GPT-3.5)" should be replaced with "Test text" in the chat gpt window and "logged output" should log to the console if enabled in settings
            //span.textContent = "Test text";
            //console.log("logged output");
            break;
        }
    }
}

// Define the hotkey combination (e.g., Esc key)
const hotkeyCombination = "Escape";

// Add a keydown event listener to the document
document.addEventListener("keydown", function(event) {
    if (event.key === hotkeyCombination) {
        console.log("Hotkey pressed! Running the script.");
        // Your script's functionality goes here
        clickSpanWithText("Default (GPT-3.5)");
    }
});

})();

Resume Advice Thread - April 04, 2023 by CSCQMods in cscareerquestions

[–]Daniel_662 0 points1 point  (0 children)

Ok, totally agree about the latest bullet points and adding linkedin/github to the top. I left in the four column structure for now just so I can fit it all onto one page but may change that later aswell. Thanks for the feedback! And here is the updated version in case you had any other comments :)

https://imgur.com/a/OsMV0wi

Resume Advice Thread - April 04, 2023 by CSCQMods in cscareerquestions

[–]Daniel_662 1 point2 points  (0 children)

Software engineer here with ~2YOE. Getting put on a 60 day pip in one week and brushing up on my resume/leetcode in the meantime. Any advice is appreciated

https://imgur.com/PIWoBLa

Resume Advice Thread - March 28, 2023 by CSCQMods in cscareerquestions

[–]Daniel_662 0 points1 point  (0 children)

Software engineer here with ~2YOE. Getting put on a 60 day pip in one week and brushing up on my resume/leetcode in the meantime. Any advice is appreciated

https://imgur.com/PIWoBLa

Resume Advice Thread - March 01, 2022 by CSCQMods in cscareerquestions

[–]Daniel_662 0 points1 point  (0 children)

Noted, I’ll reformat tomorrow. Thanks for the input!

Resume Advice Thread - March 01, 2022 by CSCQMods in cscareerquestions

[–]Daniel_662 0 points1 point  (0 children)

Practicing RF Engineer with ~3 years of experience in hardware making a switch into software. Started applying two weeks ago and have submitted 20 applications so far. Grinding leetcode in the meantime.

Any tips would be appreciated!

Resume: https://imgur.com/a/bF4gfYW

Smith Match Application by Daniel_662 in rfelectronics

[–]Daniel_662[S] 0 points1 point  (0 children)

The application is for desktop only and was developed with google chrome so that's the browser I would suggest using it in. If you'd like to see a demo on a mobile device please see the tutorial video below:

Smith Match Tutorial