Re: What are you writing using nim? :)

2017-08-31 Thread Udiknedormin
> Last time I checked Python's implementation, Python's slices also do copy, > but it's not a problem because people believe they don't copy and beliefs > tend to win over facts. They do copy, as far as I know, but I'd not be so sure about make-it-true power. For some time I was sure slicing m

Re: What are you writing using nim? :)

2017-08-29 Thread Araq
> no-copy-by-default was very appealing, Rust's arr[lb..hb] provides a view > while Nim's arr[lb.. reimplementing everything to work on views/slices) unless immediately > followed by assignment Last time I checked Python's implementation, Python's slices also do copy, but it's not a problem bec

Re: What are you writing using nim? :)

2017-08-29 Thread euant
I'm currently using Nim at work as a replacement for some old scripts, mostly for provisioning servers (as part of our Ansible deployment setup). The tools in question preform tasks such as creating MySQL databases and the required tables/relationships and importing initial data and downloading

Re: What are you writing using nim? :)

2017-08-28 Thread Udiknedormin
Unluckily, I can't replace Python with Nim as I need some science libraries not yet available in Nim (maybe I'll port them another day...). While my friend uses Nim for similar things, I chose Rust for my thesis and I had some good reasons: * when I started it, Nim lacked advanced generics it

Re: What are you writing using nim? :)

2017-08-27 Thread ThomasTJdev
**Everything.** At home I'm replacing a lot of stuff with Nim due to performance - and fun. Server jobs, scripts, python hacks, file and log handling, all monitoring and controlling of my RPi's, etc. At work we use a project management tool written in Nim (except JS for now) in our own environ

Re: What are you writing using nim? :)

2017-08-24 Thread mashingan
> What is the package you guys using for web scraping ? Additional to what @LeuGim said, Use [httpclient](https://nim-lang.org/docs/httpclient.html) module to get the page. Use `parseHtml` from [htmlparser](https://nim-lang.org/docs/httpclient.html) to get the `XmlNode` representation of page.

Re: What are you writing using nim? :)

2017-08-24 Thread Nibbler
Privately, just play stuff that might eventually form a useful library to build off, but isn't of any real use to me immediately - like [https://github.com/Sud0nim/Unfathomable](https://github.com/Sud0nim/Unfathomable) Professionally I am tinkering with a wrapper for the back-end of the trading

Re: What are you writing using nim? :)

2017-08-24 Thread LeuGim
> What is the package you guys using for web scraping ? Just usual stuff from the standard library...

Re: What are you writing using nim? :)

2017-08-24 Thread Benjaminel
What is the package you guys using for web scraping ?

Re: What are you writing using nim? :)

2017-08-23 Thread federico3
[https://nimble.directory](https://nimble.directory) , [https://badges.debian.net](https://badges.debian.net) and [http://ci.nim-lang.org](http://ci.nim-lang.org)

Re: What are you writing using nim? :)

2017-08-23 Thread enthus1ast
* A few Chat systems. One of them is in use every day. So its kinda like Production. * Since NiGui -> guis; one is in production * p2p Toys * bots * everything else Nim has replaced every language (except javascript maybe) that im currently writeing. I dont want to code in other lang

Re: What are you writing using nim? :)

2017-08-23 Thread zolern
I have big plans to rewrite all my C/C++ projects in Nim, some legacy code problems still stops me, but future is near At this moment several console routines work in production as a bridge between new web-based and legacy (non web) components, all work just fine.

Re: What are you writing using nim? :)

2017-08-22 Thread LeuGim
Web-crawling/parsing, automation scripts.

Re: What are you writing using nim? :)

2017-08-22 Thread alfrednewman
I'm using Nim to handle ZIP Code validation and address correction. It's a fuzzy process of checking the postal address to ensure that the given ZIP Code is correct. Nim should match the ZIP Code against the postal data file and refers to the correct location and so on. Given I'm not using any

Re: What are you writing using nim? :)

2017-08-22 Thread mashingan
If it's for some "jobs" can be considered in production, I guess I used Nim for web scraping and saved the info I got to postgres. There is other too, like testing web api using `unittest` module, since I wasn't restricted to use any specific request to test it, so I used Nim. Been telling it t

What are you writing using nim? :)

2017-08-21 Thread Benjaminel
What are you writing using nim? does it in production?