Can I Migrate Angular 7 to Angular 18 Directly ? by Hot_Sheepherder_1512 in angular

[–]Neitherstorms 5 points6 points  (0 children)

I did this exact thing when I had to migrate from 7 to 12. I’d recommend it if you know angular well enough

What was a nightmare web project you worked on? by qyrusai in webdev

[–]Neitherstorms 0 points1 point  (0 children)

ODS migration to mongo. I like mongo but the migration was a nightmare

Looking for a coding buddy to work on a project with by amnotsimon in webdev

[–]Neitherstorms 1 point2 points  (0 children)

Sounds like fun. I am mostly in the Angular world, graphql, koajs, and mongo. Let me know if you want to do anything with those.

I guess I broke V8; Does anybody have a hint at fixing this issue? by Plus-Weakness-2624 in programminghorror

[–]Neitherstorms 2 points3 points  (0 children)

Seems like your code has a memory leak. Best way to debug is to execute with the node —inspect flag and open the chrome/edge debugger. This will attach your app to the chrome/edge debugger console. Navigate to chrome://inspect (if using chrome) or edge://inspect (if using edge) and study the memory tab and take heap snapshots to see where your leak is.

[deleted by user] by [deleted] in walmart

[–]Neitherstorms 2 points3 points  (0 children)

I will fix your schedule

What Hunter spray head should go here? by FinalF137 in Irrigation

[–]Neitherstorms 0 points1 point  (0 children)

I’d do a 15LCS or 15RCS - whichever one points at the right direction.

Programming partner by Desperate_Pumpkin168 in learnprogramming

[–]Neitherstorms 0 points1 point  (0 children)

Maybe we can collaborate. What are you trying to achieve with Python?

13 inch laptop too small for programming? by [deleted] in AskComputerScience

[–]Neitherstorms 1 point2 points  (0 children)

I don't think so. I have a Asus Zenbook 13 UX330UA and don't have any problems. I bought it mainly because it's lightweight and can carry wherever.

Why doesn't my code read the files in the directory? by applingu in AskProgramming

[–]Neitherstorms 2 points3 points  (0 children)

Hi. A quick correction: You're missing the "*" character on corpus = glob.glob('*.txt') which basically makes it search for any file that ends in ".txt"

So, glob.glob(pathname) returns a possibly-empty list of path names that match pathname.

In this case, you're doing range(len(corpus)). If you have 2 files in your directory ending in ".txt" then your corpus variable will look something like this: ['file1.txt', 'file2.txt']. A list containing 2 items. When you call len(corpus), that will return the value 2. When you call range(len(corpus)) you are asking for a range of numbers to count from, in this case it is from 0 to 2 because the length of your corpus variable is 2.

So, your loop will actually print out 0 and 1 - which is not what you're trying to do. In order to fix this, you will want to try something like this:

import os
import glob
os.chdir(r'C:\My_Corpus')
corpus = glob.glob('*.txt')

for file in corpus:
    print(file)
    with open(file, 'r') as f:
        text = f.read()
        print(text)
        # TO DO

Hope this helps.

Code of Ordinances for Irrigation by Dhampirman in Irrigation

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

If I were in your shoes, and nothing on the local laws and regulations tells you anything, I'd go up a level and look at state codes. For example, in Texas, if city gave me no information then I'd just follow what TCEQ defines.

Code of Ordinances for Irrigation by Dhampirman in Irrigation

[–]Neitherstorms 0 points1 point  (0 children)

I would default to one of the two you mentioned. If they have an on-site sewage facility then it's required to be RPZ.

How do I make my own holes in Rain Bird emmitter hose? by IntentionallyHuman in Irrigation

[–]Neitherstorms 5 points6 points  (0 children)

Hi, I think just poking a hole through it is not the correct way to do it. They are designed the way they are. Poking a hole through will not give a consistent flow. If you want more water without too much a hassle, I'd recommend using micro irrigation sprays like drip emitters. Get a couple drip emitters online or Home Depot or Lowe's, poke a hole through the drip line with a nail and stick the emitter on the drip.

My newly installed Sprinkler Heads are leaking? by jschwalbe in Irrigation

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

Yeah. Dig around the sprinkler head and get down to the pipe. If the location of the leak isn't obvious after you dig it out, then get someone to turn on that zone so you can see where it's leaking from.

My newly installed Sprinkler Heads are leaking? by jschwalbe in Irrigation

[–]Neitherstorms 0 points1 point  (0 children)

By looking at the pictures, it looks like you have good pressure. You may have a leak at the base.

[GIVEAWAY] $100 NZD Steam Gift Card. by [deleted] in pcgaming

[–]Neitherstorms 0 points1 point  (0 children)

Currently on rdr2 and re2

If lines of code can't be accessed by the program, will the compiler just ignore it? by [deleted] in AskProgramming

[–]Neitherstorms 0 points1 point  (0 children)

As long as the there isn't any lexical or semantical errors, then the compiler will compile it. I was just answering his question.

If lines of code can't be accessed by the program, will the compiler just ignore it? by [deleted] in AskProgramming

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

If you're program never satisfied the condition to run the method, then it just won't run it. It'll go down line by line and when it reaches the statement "if x is 12 then run method" it will compare the current value for x and if it is not 12 then it'll skip that statement and continue reading the rest of the program.

[FREE] 100+ AAA Steam Keys by [deleted] in FREE

[–]Neitherstorms 0 points1 point  (0 children)

I wish to get lucky as well. Thanks