-
Nisha Teofil replied to the discussion Why is Rust becoming so popular for systems programming? in the forum General Web Scraping a year ago
Why is Rust becoming so popular for systems programming?
Rust’s borrow checker makes it easy to manage memory without a garbage collector, which is a huge advantage in performance-critical applications.
-
Nisha Teofil replied to the discussion What are the main differences between procedural and functional programming? in the forum General Web Scraping a year ago
What are the main differences between procedural and functional programming?
Procedural programming can be more intuitive for developing step-by-step algorithms, while functional programming is more declarative and can reduce complexity in large applications.
-
Nisha Teofil started the discussion What’s the best way to handle date-based scraping for historical data? in the forum General Web Scraping a year ago
What’s the best way to handle date-based scraping for historical data?
Building date parameters into URLs lets me scrape historical data efficiently. This works well on sites with consistent URL structures for archives.
-
Nisha Teofil changed their photo a year ago
-
Nisha Teofil became a registered member a year ago
-
Juliana Loredana replied to the discussion How does Julia compare to Python for data science? in the forum General Web Scraping a year ago
How does Julia compare to Python for data science?
Julia supports high-level abstractions and has better parallelism for multi-core tasks, but it’s not as mature as Python for general data science workflows.
-
Juliana Loredana replied to the discussion What are the main differences between procedural and functional programming? in the forum General Web Scraping a year ago
What are the main differences between procedural and functional programming?
Functional languages like Haskell or Scala encourage recursion and high-order functions, whereas procedural programming relies more on loops and conditionals.
-
Juliana Loredana replied to the discussion How does C# compare to Java for enterprise-level applications? in the forum General Web Scraping a year ago
How does C# compare to Java for enterprise-level applications?
Java is more established in the enterprise world, with a larger pool of developers and support for large-scale applications like banking systems.
-
Juliana Loredana replied to the discussion What’s the best language for building microservices: Go or Python? in the forum General Web Scraping a year ago
What’s the best language for building microservices: Go or Python?
For handling concurrency, Go is superior because of its goroutines, which make managing multiple requests simpler.
-
Juliana Loredana started the discussion How can I scrape data from complex multi-page forms? in the forum General Web Scraping a year ago
How can I scrape data from complex multi-page forms?
I use Selenium to simulate form submissions page by page, ensuring each page is fully loaded before moving to the next. It’s slow but effective for complex forms.
- Load More