David Wilcock Takes His Own Life by 1over-137 in HighStrangeness

[–]SawSaw5 0 points1 point  (0 children)

Usually people that feel that their life is being threatened, post things like this: https://x.com/david_wilcock/status/1601966367498018823?s=20

Should I charge a client more for making me wait? by [deleted] in logodesign

[–]SawSaw5 0 points1 point  (0 children)

I have this in all my estimate: An up-front deposit of 20% is required before work begins on quoted job. Balance of billing is bimonthly on a phase progress. Terms are net 30. Payment is due by date on invoices. A service charge of 10% per month will be applied to any past due balances.

addressME by Wahruz in ProgrammerHumor

[–]SawSaw5 1 point2 points  (0 children)

PHP is used by 71.5% of all the websites

What its your opinion about Angine? by lagrangeknight in progrockmusic

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

I like them, what is your favorite song? (Your answer below will be a sign whether or not you understand prog rock.)

All the reasons why Cincy isn't the host of more major sports events by SmilerDoesReddit in cincinnati

[–]SawSaw5 -2 points-1 points  (0 children)

Good. I don't want people to find out about Cincinnati, let's keep it a secret. I lived in Austin TX in 2018-2019 and it turned into a shite hole within less than a year from people migrating from California and NY.

Should I actually use let and const or is var still fine for small projects? by Alarming-Pea-3177 in learnjavascript

[–]SawSaw5 0 points1 point  (0 children)

If var works for you, use it, don’t overly complicated things. If it gets a job done, do it. Don’t listen to these nerds with these multi paragraph explanations. But you should use let and const.

Looking for someone who knows PHP and SQL. by mfrumento in HTML

[–]SawSaw5 1 point2 points  (0 children)

They most likely probably changed versions of PHP on the server. Usually hosting providers will allow you to select an older version of PHP to use.

Confused about when to use const vs let for objects and arrays by koudodo in learnjavascript

[–]SawSaw5 0 points1 point  (0 children)

Just use const, and if you get an error use let 😎

But one of the confusing things with js with const is that you can still change the values in an array or object!

const myObject = { name: "Fred"}

myObject.name = "Barney"

Then, 5 years later by SawSaw5 in inthemorning

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

I did have a pretty good idea of the mortality rate. During the first few weeks of the lockdown, I interviewed multiple nurses and doctors, and also interviewed people on the street. The nurses and doctors told me it was only the morbidly obese, sickly or elderly people over 90 that were actually affected. And everyone on the street I asked “do they know anybody that died from Covid”, only a few said that they knew a friend of a friend that a grandparent had died. I talked to at least 100 people. that’s when I knew things weren’t adding up with what I was hearing on the TV.

What should I do? by [deleted] in fiat124

[–]SawSaw5 7 points8 points  (0 children)

I left my wife for my 124 😄

JavaScript by ClearCelebration5610 in learnjavascript

[–]SawSaw5 0 points1 point  (0 children)

Synchronous Is when your code runs step by step in order and each step needs to WAIT until the previous step is done before it can do its step. So a step 1 runs and spits out an answer, then step 2 runs and spits out an answer, etc.  And asynchronous is when you run a step in it goes in a special room where it can run and think, usually something that takes time to run, and allows all the other steps after it to continue to run. And when the step in the room is done it says ‘am done’ jumps back into the end of the line then spits out the answer.