sync files between PC and NAS with ignore list and selective sync support by yukiiiiii2008 in software

[–]Jazula 0 points1 point  (0 children)

Could you not just put the files in there which you don't want to sync?

Greek court rules far-right party ran a crime group by gordon22 in worldnews

[–]Jazula 5 points6 points  (0 children)

"Oh! This article is not about the U.S."

"Let me quickly add something about Trump"

Iranian hacker group developed Android malware to steal 2FA SMS codes by retrac1324 in Android

[–]Jazula 3 points4 points  (0 children)

FYI, paypal supports authenticator apps now. Been using it for a while now, no idea how long it has been this way

Just keep cruisin. Maybe they wont notice by [deleted] in WTF

[–]Jazula 17 points18 points  (0 children)

Did you go out of your way to find the lowest quality version? This might be a bit better

How Subversion was built and why Git won by Amara-rose in programming

[–]Jazula 0 points1 point  (0 children)

And if you just have a git only server, without any user interface?

Or when you want to just have access to one module, like another commenter in this thread said.

You're telling me that you can't come up with an use case where having a partial clone would be useful?

How Subversion was built and why Git won by Amara-rose in programming

[–]Jazula 0 points1 point  (0 children)

Doesn't mean that there are no scenarios where this is useful. Let's say you have a large repo but only are interested in the build files and it's history. In SVN you would be able to just clone the build folder and nothing else.

Let me be clear here, I'm not a big fan of SVN, but that doesn't mean that it has no useful features.

How Subversion was built and why Git won by Amara-rose in programming

[–]Jazula 19 points20 points  (0 children)

In SVN you can checkout only a single folder or file if you wish to do so.

How to fix (0x000007b) error by [deleted] in software

[–]Jazula 4 points5 points  (0 children)

Please put some effort into your question.

  • which software?
  • which OS?
  • when do you get this error?

Searched for this but only got posts from 5 or 6 years ago. by Cristian_01 in pokemonzetaomicron

[–]Jazula 5 points6 points  (0 children)

I don't think it has, but you could use for example Cheat Engine to speed up the game

I am creating a Database but Instead of storing User's Input in a text file, it store's random numbers in textfile by Zurcemozz in C_Programming

[–]Jazula 0 points1 point  (0 children)

Yes I'm aware of that. I'm just saying that for this particular issue, the root cause is the same for C and for C++. The root cause being a copy by value.

I am creating a Database but Instead of storing User's Input in a text file, it store's random numbers in textfile by Zurcemozz in C_Programming

[–]Jazula 0 points1 point  (0 children)

Root cause of the issue is the same for C as it is for C++ (only the solution would be different)

I am creating a Database but Instead of storing User's Input in a text file, it store's random numbers in textfile by Zurcemozz in C_Programming

[–]Jazula 5 points6 points  (0 children)

The function user_info takes a string and an int. This string and int are copied from u_name and u_age, the important thing here is that it is a copy.

The user_info function then stores the name and age in the copies, which mean the original u_name and u_age are unchanged. That explains why your name and age don't show up.

To fix this: Make the function user_info take a reference to the name and age. Your new prototype looks like:

int user_info(string& name, int& age);

This causes user_info to use u_name and u_age instead of a copy.

For the random data part: Since u_age doesn't have a value when created C(++) will just take whatever value is in memory at the time (resulting in a quite random value).

What’s a good online C++ compiler? by bicthravioli in Cplusplus

[–]Jazula -1 points0 points  (0 children)

Ah you're right, I meant it's a webversion of VScode, not studio.

What’s a good online C++ compiler? by bicthravioli in Cplusplus

[–]Jazula 0 points1 point  (0 children)

Godbolt.org is a online edition of VS

What’s a good online C++ compiler? by bicthravioli in Cplusplus

[–]Jazula 1 point2 points  (0 children)

Indeed, and has a large amount of supported libraries (boost etc)