Skip to content
View 0xffset's full-sized avatar
😊
Studying
😊
Studying

Block or report 0xffset

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
0xffset/README.md

Hola , I'm 0xffset

Software Developer | Data Scientist | Linux | Quantum Computing | Mathematics

rolEYder

23y/o Software Developer and Data Scientist with interests in fields like Cybersecurity, Quantum Computing, and Mathematics.

// Fermat's last problem x^n+y^n=z^n
#!/usr/bin/perl
use strict;
use warnings;

sub fermat {
  my ($n) = @_;
  for (my $x = 0; $x < 100; $x++) {
  	for (my $y = 0; $y < $x+1; $y++) {
  		for (my $z = 0; $z < ($x**$n)+($y**$n) +1; $z++) {
  			if (($x**$n)+($y**$n) == ($z**$n)) {
  				print "$x^$n + $y^$n == $z^$n\n";		
  				}
  			}
  		} 
  }


my $e = fermat(5);

  • 🔭 Bachelor's degree in Computer Science
  • 🌱 I’m currently learning Computational Methods
  • ⚙️ Mastering: .py, .cpp, .c, .perl, .java, .html, .css .s, .sh, .go, .rs, .sql, .sh

Cauchy’s Integral Formula

Cauchy's integral formula, named after Augustin-Louis Cauchy, is a central statement in complex analysis. It expresses the fact that a holomorphic function defined on a disk is completely determined by its values on the boundary of the disk, and it provides integral formulas for all derivatives of a holomorphic function. Cauchy's formula shows that, in complex analysis, "differentiation is equivalent to integration": complex differentiation, like integration, behaves well under uniform limits – a result that does not hold in real analysis.

Cauchy’s Integral Formula

Great ideas often receive violent opposition from mediocre minds.

Albert Einstein

Here's my favorite math stuff so far...

My favorite integral so far

Pinned Loading

  1. BlueBerryMath BlueBerryMath Public

    Forked from faustogerman/BlueBerryMath

    An extensive math library written in Java.

    Java 1

  2. ARM-Assembly ARM-Assembly Public

    ARM Assembly programs

    Assembly 1

  3. x86-Assembly x86-Assembly Public

    A lot of x86-Assembly programs with C/C++

    Assembly

  4. MinesReact MinesReact Public

    Minesweeper Puzzle Game

    TypeScript 1

  5. Life-Maze Life-Maze Public

    A Conway's Game of Life Simulator

    TypeScript

  6. sokobo sokobo Public

    A lightweight CAS for command-line

    C++