Giter Club home page Giter Club logo

ift2035-tp1's Introduction

Hi there 👋

Keybase PGP

Work Status

I'm Charles, a Quebec-based software developer and tech enthusiast. I'm currently most proficient coding in Python(~5 years of professional experience), but I also have some practical knowledge and coding experience in various other languages.

  • Lisps(Scheme, Common Lisp, Racket)
  • Javascript/Typescript
  • Haskell
  • C
  • Lua.

And I love to read and learn on all kinds of programming languages(e.g. Erlang, Elixir, Go, Rust, Scala, Clojure, Ruby, SmallTalk).

I'm a big fan of the functional programming paradigm and try to apply its principles as often as possible(to the extent that the language and context allows) to manage complexity and ensure reliability, modulability and extensibility of software.

I have a particular interest in the open web, open protocols and open standards, networking, language design, developer ergonomics, decentralized and distributed systems and related movements.

I believe in the value of open software and open collaboration in technology(as well as other domains), both for technology developers and owners as well as for technology users(which often is pretty much everyone, as technology shapes and interacts with so much aspects of the social realities).

ift2035-tp1's People

Contributors

drpyser avatar

Watchers

 avatar  avatar  avatar

ift2035-tp1's Issues

Le prompt crash sur certaines multiplications

Les opérations arithmétiques testés individuellement semblent marcher pour des nombres de dimensions arbitrairement grande.

Par contre, le prompt semble un peu instable.

La multiplication peut causer des segfault même pour des petits nombres(genre 2 * 90).

Mais encore une fois, la multiplication testé par elle même semble marché sans problème.

Interférence bizarre entre addition et soustraction

L'addition et la soustraction se passent la torche mutuellement en fonction du signe des arguments.

Par exemple,

a < 0, b > 0, a + b = b - (- a)
a > 0, b < 0, a + b = a - (- b)
a < 0, b > 0, a - b = - ((- a) + b)
a > 0, b < 0, a - b = a + (- b)
a< 0, b < 0, a - b = (- b) - (- a)

Avec a = -25, b = 10, voici le output obtenu:

a: -25
b: 10
-a: 25
-b: -10

a + b: -25 + 10
-a = 25
10 - 25
25 - 10
-15

a: -25
b: 10

a - b: -25 - 10
2525 + 10
-2535

Le calcul de l'opposé(voir code) dans la soustraction semble retourner "2525" au lieu de "25".
Si l'addition est faite après la soustraction, l'erreur se retrouve dans l'addition.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.