• Stars
    star
    5
  • Rank 2,861,372 (Top 57 %)
  • Language
    C
  • License
    MIT License
  • Created about 2 years ago
  • Updated 9 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

programming-for-psychopaths

hello_world_in_matlab

Millions of engineers and scientists use MATLAB in various fields, in industry and academia, including deep learning and machine learning, signal processing and communications, image and video processing, control systems, test and measurement, computational finance, and computational biology but no one of them can print hello world in this language .
Don't worry, Now you can print hello world using MATLAB

disp("Hello world")  

oop_in_no_oop_languages

Oop it's just a paradigm ...

Object = Struct + Methodes

Oop_in_C_Lang

#include <stdio.h>
struct point{
  int x;
  int y;
};
struct circle{
  float radius;
  struct point center;
} ; 
void pointConstructor(struct point *P,int x,int y)
{
    P->x=x;
    P->y=y;
}
void circleConstructor(struct circle *C,float r,struct point p)
{
    C->radius=r;
    C->center=p;
}
int main() {
    struct point p;
    pointConstructor(&p,11,12);   
    struct circle c;
    circleConstructor(&c,3,p);
    printf("Circle radius is %.2f, center is at (%d, %d)", c.radius, c.center.x, c.center.y);
    return 0;
}

Oop_in_Go_Lang

indexing

data Language index element
1
2
3
4
Javascript 1 2
Python 2
Java 2
C 2
C++ 2
Matlab 1

loop

level 0

for(i=0;i<10;i++)console.log(i)

level 1

i=0;
while(i<10){
console.log(i)
i++;
}

level 2

i=0;
for(;;){
if(i==10)break;
console.log(i)
i++
}

More Repositories

1

ziko.js

zikojs is a new javascript library with a focus on making coding effortless .
JavaScript
37
star
2

HIGH-TO-LOW

in this repository you will find codes in C and their equivalence in MIPS Assembly
Assembly
31
star
3

ZikoMatrix

Arduino library for creating and manipulating matrices of arbitrary size and data type. The library provides a Matrix class that can be used to create matrices, perform basic matrix operations
C++
20
star
4

awesome-processing

Processing is a flexible software sketchbook and a language for learning how to code. Since 2001, Processing has promoted software literacy within the visual arts and visual literacy within technology. There are tens of thousands of students, artists, designers, researchers, and hobbyists who use Processing for learning and prototyping.
Processing
19
star
5

zakarialaoui10

Config files for my GitHub profile.
JavaScript
12
star
6

ziko-kit

JavaScript
11
star
7

mapfun

mapfun is a function that applies a mapping function to an infinite number of input elements, with options to skip certain elements and selectively apply the mapping to keys and/or values of objects. The origin of this function traces back to zikojs
JavaScript
8
star
8

ziko-addons

JavaScript
8
star
9

PowerMonitor

A C++ library designed to measure the electrical characteristics of AC circuits such as voltage, current, power, reactive power, and power factor...
C++
7
star
10

Greenlab-Challenge

JavaScript
6
star
11

dir2tree

a user-friendly Node.js tool for creating organized json tree from a root directory .
JavaScript
5
star
12

ziko-micro

4
star
13

_ziko-lottie

Lottie player element for zikojs
JavaScript
3
star
14

Vanilla-X

3
star
15

ziko-lottie

Lottie player element for zikojs
JavaScript
2
star
16

ziko-addons-template

JavaScript
1
star
17

npm-ziko-test

JavaScript
1
star