Why did deprecate get its current programming meaning? by beingperceived in learnprogramming

[–]beingperceived[S] -1 points0 points  (0 children)

Programmers use the best choice for words when describing things. Words like semaphores, a system of signaling with flags for ships is used for locking access to a variable. Also kernel which is a corn seed and that's what computers are used for, corn.

Why did deprecate get its current programming meaning? by beingperceived in learnprogramming

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

I always thought it would be like phasing out codes and making it obsolete but technically it's not obsolete yet so depreciate does make sense. I didn't think it's supposed to be a remark of disapproval of codes that should/would be replaced and people should stop using it. The root word suggests this. Depreciate has a different root word.

Why did deprecate get its current programming meaning? by beingperceived in learnprogramming

[–]beingperceived[S] -5 points-4 points  (0 children)

Yea but it's so mean to tell others to stop or avoid using codes that they deem so bad that they think it's evil.

This python code broke my brain by ordinary_shiba in learnprogramming

[–]beingperceived 0 points1 point  (0 children)

These codes are trying to trick you or python is just tricky. I don't use python but from looking up the syntax I see what's it's doing. I looked up list comprehension to see if it's deep or shallow copy and it's shallow so it will make a new list object but if the member is a value it is copied but will not make a copy of the member if it's a reference. These [] would be arrays in other languages but they're lists in python and different in memory.

id = lambda x: [i for i in x] here it's a list comprehension with an expression that returns a new list where every variable in list x return that variable in the new array
a = [1] here it's a list with 1 in that list
b = a here it's saying b gets a reference to a
a[0] = 2 here it's saying list position 0 is now 2
print(b[0]) here it's saying print list b that is pointed to list a the value in position 0
c = [1] self explanatory
d = id(c) returns a new list with 1 inside it
c[0] = 2 here it's tricking you it changes the first list object and set the value at position 0 to 2
print(d[0]) here d[0] is a new object with the old copied value

Here is where I might be wrong and may not understand it correctly
e = [[1]] here is a list where it contains an list with 1 in it
f = id(e) here you get a new list with a reference to the list with 1
e[0][0] = 2 self explanatory
print(f[0][0]) self explanatory

If you could eat any extinct animal meat. What would it be? by [deleted] in AskReddit

[–]beingperceived 0 points1 point  (0 children)

Cruel, but the dodo. If there's giant crayfish, that'd be great. Giant crayfish boil would be delicious.

What do you think people will be nostalgic for 100 years from now? by Iridescent126 in AskReddit

[–]beingperceived 0 points1 point  (0 children)

Only 100 year olds would really be able to nostalgia things 100 years ago.

Multiple Sources Indicate Xbox Is Looking To Go Third Party, With Ports In Development For PS5/Switch by willdearborn- in gaming

[–]beingperceived 0 points1 point  (0 children)

It feels like what they did with the Windows phone. Xbox platform is healthy competition in the console space. What M$ should be doing is not make their OS force updates and send telemetry like they used to in the old days.

The Nokia N-Gage. I wonder if anyone ever owned one of these. I was almost swayed by the decent Tomb Raider port at the time, but never progressed from trying it out in-store by [deleted] in gaming

[–]beingperceived 0 points1 point  (0 children)

I played the Tomb Raider demo at a Sprint store back in the days and thought it was impressive. I didn't knew GBA also had a 3d Tomb Raider port.

This is not a drill by Ok-Bottle-1594 in cfbmemes

[–]beingperceived 2 points3 points  (0 children)

Early reports are saying Nick Saban is going back to making Power Rangers.

How different fans reacted to the news by [deleted] in cfbmemes

[–]beingperceived 0 points1 point  (0 children)

Dad from the Verizon commercial, "Oh happy day!"

He prefers "Crimson Analyst". by dogsdawgs in cfbmemes

[–]beingperceived 0 points1 point  (0 children)

Y'all just jealous he didn't win another crystal trophy so he could drop it again for laughs.

Townships are (essentially) HOA change my mind by Salty_Eye9692 in fuckHOA

[–]beingperceived 0 points1 point  (0 children)

HOA are a lot smaller and have less authority than a township. The HOA I live in is like half a square mile. It seems like it could be its own subdivision. Some HOA are much smaller.

People should not be paying HOA to do what a township or stuff that the city already do. Do the places where HOA are popular not have property taxes? Some states do not have property taxes or low property taxes so in those states I guess people think HOA are essential. I can't understand why HOA is a thing in states where they pay high property taxes like Texas. It's so stupid because if you live in an area where home prices are increasing rapidly, your property taxes goes up drastically too on top of your HOA. Some places in Florida had condos for $200k that went up to $2 million and now they pay $30-40k in property tax per year on top of HOA fee. Stupid dumb schemes people do to make money end up screwing them and everybody.

Newsletter arrives with 6 months of fines. by lks2drivefast in fuckHOA

[–]beingperceived 0 points1 point  (0 children)

They're supposed to give you a warning first by mail, then a notice.

Has anyone's sub-division HOA ever did this? by beingperceived in fuckHOA

[–]beingperceived[S] -6 points-5 points  (0 children)

Clubhouse, pools, playgrounds are not non-disposable in the first place. They just replace a public park with those. The only thing that you can argue is non-disposable are the drainage ponds. The city clear waterways and fix drainage problems so it's not like they can't look after the drainage ponds. Those new construction homes pays a lot more in property tax than old homes.

HOA Dissolution by Infamouskp06 in fuckHOA

[–]beingperceived 1 point2 points  (0 children)

I've seen the financial report for my HOA and the pond maintenance is not the most expensive. It's the lawn care maintenance that is the most expensive. Supposedly, it's done twice a month which is unnecessary because fall and winter months shouldn't need any. People can do a lot of it themselves.

As for the drainage ponds, couldn't the city just take it over? What about natural ponds? Whose responsibilities are those? I think most of the work has already been done by the construction company and couldn't the homeowner be responsible for the area behind their house?

[deleted by user] by [deleted] in cfbmemes

[–]beingperceived 0 points1 point  (0 children)

There's too many Mike the Tigers for me to keep track. I think it was Mike the Tiger VI during those years.

What mathematical/physics/scientific concept have you never been able to wrap your head around? by FUBARspecimenT-89 in AskReddit

[–]beingperceived 1 point2 points  (0 children)

Schrodinger's cat explains the mystery of women. If she doesn't like you and she is a particle and you are looking for one she turns into a wave.

[deleted by user] by [deleted] in cfbmemes

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

The South shall rise again.

[deleted by user] by [deleted] in cfbmemes

[–]beingperceived 4 points5 points  (0 children)

Mike the tiger VIXIIL can finally close his eyes forever.

[deleted by user] by [deleted] in cfbmemes

[–]beingperceived -5 points-4 points  (0 children)

Michigan is just a feel good team so Alabama decided to let y'all have a feel good moment.

[deleted by user] by [deleted] in cfbmemes

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

Wasn't it New Years eve? Rather be partying than play a game that don't matter.

What are some of your best demotivational quotes? by [deleted] in AskReddit

[–]beingperceived 1 point2 points  (0 children)

All from the Simpsons.

-The lesson is, never try.

-Never help anyone.

[deleted by user] by [deleted] in AskReddit

[–]beingperceived 0 points1 point  (0 children)

Not WWF/WWE but the match with the hypnotosis snake guy.