vrek

joined 2 years ago
[–] vrek@programming.dev 3 points 4 hours ago

Only with alt but yes

[–] vrek@programming.dev 2 points 4 hours ago

Oh forgot f5 for refresh

[–] vrek@programming.dev 2 points 4 hours ago (3 children)

You really don't. F1 help f11 full screen f12 developer tools,that's all you need to know

[–] vrek@programming.dev 1 points 4 hours ago

Yeah you are right but ...

[–] vrek@programming.dev 4 points 6 hours ago* (last edited 6 hours ago) (5 children)

Sounds like you like front end better. Html and css are basics of web design and good starting points, some JavaScript might also be beneficial. Here's a fun thing you can do, go to most websites, press f12 and it will open "developer tools". You can then mess around with the website like changing fonts or editing text or inserting pictures. It will only be on your computer and only exist till you close the tab/window but fun to play with

Btw totally don't do this on your friends twitter page and edit the text of their tweet to make them look bad, screenshot it and then use it as blackmail. Totally do not recommend and I never made it look like my friends posting pictures of shirtless men riding unicorns over a rainbow ... Nope that never happened and you should not do that .... 😀

[–] vrek@programming.dev 2 points 6 hours ago (7 children)

Basically anything you want to track the changes to can be used with git.

If you want to get into programming something I would recommend is deciding if you want front end or back end development. What that means is like do you want to do ui/ux or computation work? The basics are similar but quickly diverge. Html is front end, it's making things look good and easy for the user. Something like rust or c# is more backend. Do you want to design what the user sees or how to solve problems?

[–] vrek@programming.dev 3 points 6 hours ago (9 children)

If you want html is fine. You could also just write anything like a story, a shopping list, a schedule of chores anything really.

What's your goal with learning git? Is it to learn programming?

[–] vrek@programming.dev 3 points 7 hours ago* (last edited 7 hours ago) (11 children)

One of the big advantages of git is you can see the difference between versions of text. Since you don't programming languages imagine a group report project in school. Sally may make up the general structure and main points. Tom writes a expanded section of 2 of the points. Matt writes another 2. Sue writes the introduction and conclusion. Jason edits it. Git lets you walk back through all that and shows you who did what and lets you keep/discard the changes. It can show you who changed what and when.

With pictures and images it can store the different versions but can't distinguish what exactly changed. Like it can store a picture with a blue background and then someone changes it to an orange background but it can't know exactly what changed only that it's different,if they changed the background of a city skyline they could of also inserted a tiny monkey into one of the windows. You would have to scan everything versed it highlighting only the differences.

Btw .. here is a book with A LOT more details https://git-scm.com/book/en/v2

[–] vrek@programming.dev 4 points 8 hours ago

I have a really odd history of jobs... First job was installing multi million dollar home theater systems, then did a summer renovating a house(paint, refinish floors, install kitchen appliances, built 3 closets, moved a wall, replaced all windows and doors) , did 4 years as a corporate network administrator, 10 years laser welding medical devices, 4 years as a manufacturing technician, 2.5 years as a software engineer...yeah it's an interesting resume...

[–] vrek@programming.dev -2 points 22 hours ago (2 children)

Game looks decent but totally thought of one piece with that name....

[–] vrek@programming.dev 4 points 3 days ago

I'll get to it as soon as I figure out how many bald eagles it takes to make a Michelob ultra 64

[–] vrek@programming.dev 6 points 3 days ago

I want a pancake drawer....

 

Those companies were all found to be pyramid schemes!

 

Well first someone would need to put a bank inside a whale...

 

I'm not looking for Chromecast but I have a Linux system hooked up to a TV and ether net. I want a way to pick a YouTube or Amazon prime or Netflix video on my phone and display it on the TV via the Linux pc. Is that possible? If so what software can do it?

 

I don't expect much but I found an old pi I bought probably 2016(may of been 2017). It was supposed to be a pi-hole but was never able to get the dns forwarding to work on my modem. It still works but wanted to somehow convert it to a regular distro(it's based on a micro-SD and I don't have any more microsd readers). I wanted to set it up as a basic system I could ssh into a terminal. Not expecting anything fancy or even graphic based. A lot of stuff I want to learn/practice "work" on windows but are native to Linux, like vim/neovim nmap gcc etc. Is this feasible? Am I under estimating what's possible with it?

 

I don't expect much but I found an old pi I bought probably 2016(may of been 2017). It was supposed to be a pi-hole but was never able to get the dns forwarding to work on my modem. It still works but wanted to somehow convert it to a regular distro(it's based on a micro-SD and I don't have any more microsd readers). I wanted to set it up as a basic system I could ssh into a terminal. Not expecting anything fancy or even graphic based. A lot of stuff I want to learn/practice "work" on windows but are native to Linux, like vim/neovim nmap gcc etc. Is this feasible? Am I under estimating what's possible with it?

 

For anyone interested agdq started today. Raising money for prevent cancer foundation and showing speed runs of video games. Available streaming on twitch and YouTube. Gamesdonequick.com

 

For anyone interested agdq started today. Raising money for prevent cancer foundation and showing speed runs of video games. Available streaming on twitch and YouTube. Gamesdonequick.com

 

I thought of this after a recent bug I found. I use Vivaldi browser and recently it updated. After the update my mouse cursor was not visible when within the browser window. Other programs worked fine. I tried visual studio and steam and epic game store all had my mouse, Vivaldi didn't.

I closed all instances of Vivaldi via task nanager(was unable to click the x) and restarted it. That fixed the bug and I haven't been able to replicate so I don't have anything to submit for a bug report. Just a really strange thing.

What have been your weirdest bugs?

 

What os? What ide? What plug-ins?

 

I'll give an example. At my previous company there was a program where you basically select a start date, select an end date, select the system and press a button and it reaches out to a database and pulls all the data following that matches those parameters. The horrors of this were 1. The queries were hard coded.

  1. They were stored in a configuration file, in xml format.

  2. The queries were not 1 entry. It was 4, a start, the part between start date and end date, the part between end date and system and then the end part. All of these were then concatenated in the program intermixed with variables.

  3. This was then sent to the server as pure sql, no orm.

  4. Here's my favorite part. You obviously don't want anyone modifying the configuration file so they encrypted it. Now I know what you're thinking at some point you probably will need to modify or add to the configuration so you store an unencrypted version in a secure location. Nope! The program had the ability to encrypt and decrypt but there were no visible buttons to access those functions. The program was written in winforms. You had to open the program in visual studio, manually expand the size of the window(locked size in regular use) and that shows the buttons. Now run the program in debug. Press the decrypt button. DO NOT EXIT THE PROGRAM! Edit the file in a text editor. Save file. Press the encrypt button. Copy the encrypted file to any other location on your computer. Close the program. Manually email the encrypted file to anybody using the file.

 

So background, my kid has seizures often. He is currently on 5 different medications to try to control it(plus 1 for sleeping and 1 for his liver enzymes) plus severe non verbal autism so he can't tell us if he already had his meds. Currently when it's medication time, it's always "did you give him his meds yet?" and we have no way of tracking how many seizures he actually has besides "alot more recently" or "it's gone down recently". Yes he had multiple doctors and this is NOT a post looking for health advice.

I am creating an app for phones(c# Maui) which will send json objects to a api to store/retrieve data in a database(when he last had medication x, when he has a seizure etc). It will probably only be used with in my family, maybe 20 entries a day on a really bad day(7 medications twice daily + 6 seizures to give a round number) but should be less then 10 transactions(most medications given at same time).

What's the cheapest/easiest was I can host something like this? I do not have a static ip. Yes it's health information but I'm only storing first names and tracking time of events, not too worried about hippa like security.

 

The only possible exceptions I can think of are fish(I imagine gills and mouth are not connected but don't really know). I am excluding bacteria and viruses and I believe they don't really breath(correct me if I'm wrong).

view more: next ›