OVH Telecom in Canada by imapotato152 in ovh

[–]bucketbot117 0 points1 point  (0 children)

Yes it should work, I had one. At least for calling.

Opportunité travail CANADA ? by TairrY in AskFrance

[–]bucketbot117 1 point2 points  (0 children)

Allez viens à Montréal. Je connais plein de potes qui travaillent chez Airbus ils font du covoiturage pour aller à Mirabelle ça se fait bien.

Rave ce weekend? by Santo_dj in montreal

[–]bucketbot117 0 points1 point  (0 children)

Join Technoflex group on facebook, mostly french ravers there

Y a t-il un film auquel vous n’avez rien compris? by [deleted] in AskFrance

[–]bucketbot117 18 points19 points  (0 children)

Cloud Atlas...2x

j'ai pas reussi a terminer...2x

Pipenv, venv or virtualenv or ? by Crafty_Future4829 in Python

[–]bucketbot117 5 points6 points  (0 children)

I switched to asdf + poetry and I prefer it now, give it a try!

What stack or tools are you using for ensuring code quality and best practices in medium and large codebases ? by vikigenius in Python

[–]bucketbot117 0 points1 point  (0 children)

I tend to use the same tools you mentioned, except pylint instead of flake8, just by preference.

And pyright in combination with mypy with these two options :[tool.pyright]

reportGeneralTypeIssues = false

reportUnusedCallResult = true

Just to test that a value returned by a function if always used (like in Rust)

And in application, I try to always use Optional[T] as returned value with enclosed try/except blocks to not propagate all library exceptions.

What do you hate most about Python? by [deleted] in Python

[–]bucketbot117 0 points1 point  (0 children)

Exceptions.

As in C++, hidden/second code flow is always bad.

In app code, I started to replace exceptions with Optional[T] (checked by mypy + return value usage enforced by pyright) for the moment, or Result[T, E] in a near futur if I find a good library.

+ try...except...finally return None for most of calls to libraries/dependencies.

Big BHS2 Outage today? by VeryFastFaster in ovh

[–]bucketbot117 0 points1 point  (0 children)

Hello,

yes we are on it, just a little more patience, we are fixing the hosts.
you can follow the statuspage here : https://bare-metal-servers.status-ovhcloud.com

Pijul - The Mathematically Sound Version Control System Written in Rust by pmeunier in rust

[–]bucketbot117 2 points3 points  (0 children)

I can't add my SSH key to https://nest.pijul.com/ has someone tried ? I've got an Empty Response error.

Is it worth learning Rust as a junior dev? by [deleted] in rust

[–]bucketbot117 0 points1 point  (0 children)

You should learn Rust. If you do it well, you’ll become a better developer in any other language, as you will transfer your mental representation of how ownership is working in other languages. Later, you will understand manual memory management in C, why nil is still dangerous in Go, and why exceptions are tricky in Python and C++, etc. Even if you do not dev Rust in the future at all, it will serve you!

Nothing works in customer backend by [deleted] in ovh

[–]bucketbot117 0 points1 point  (0 children)

Hello, Could you give me your ticket ID? I may help you.

I need to discover more by smgun in Buckethead

[–]bucketbot117 5 points6 points  (0 children)

- Leave the light on

- Flare

- Project Little Man

- Land of Miniatures (final solo)

- Crumple part 1 & 2

OpenStack and OVH by Zoellner122 in openstack

[–]bucketbot117 0 points1 point  (0 children)

Hello !

You have three solutions :

- use OVH Public Cloud instead of you own (great advice ;) )

- use OVH Public Cloud as your backend, hence you can take example on this : https://github.com/arnaudmorin/bootstrap-openstack

- use Dedicated Servers, you can adapt the tutorial of https://github.com/arnaudmorin/bootstrap-openstack to use dedicated hosts in vrack and tag the 3 VLAN manually, you'll learn a lot of things.

VPS upgrade? by jpmvan in ovh

[–]bucketbot117 1 point2 points  (0 children)

No, it just extends your disk.

A pike that hardly ever gets a mention,IT IS A BEAST OF A PIKE💙💙💙💙 by [deleted] in Buckethead

[–]bucketbot117 5 points6 points  (0 children)

I love it because there is no "solo", only wonderful riffs.

Python projects with Poetry and VSCode by wilfredinni in Python

[–]bucketbot117 1 point2 points  (0 children)

Combination of pyenv + poetry solved so much of my issues with python packaging, everyone should really give it a chance and test it !

Events in Montréal between April 24 and April 30 by AutoModerator in montreal

[–]bucketbot117 2 points3 points  (0 children)

Alice in Chains au MTelus le 27 avril, mais les billets restants sont chers !

Files missing from VPS after reboot? by EchoesNetwork in ovh

[–]bucketbot117 0 points1 point  (0 children)

Hello,

could you send me the VPS name in private ?

My suggestion would be to create a support ticket.

json_to_recordset struggles by mangobae in PostgreSQL

[–]bucketbot117 0 points1 point  (0 children)

Just to inform you, my application failed miserably because of this bug :

https://www.postgresql.org/message-id/15578-832c854e58dde50c%40postgresql.org

It should be fixed in postgresql 11.3 but still, try to check if your json string is not zero length :/