Skip to content
View NassimBentarka's full-sized avatar
💭
𝐅𝐫𝐞𝐞𝐝𝐨𝐦 ❤️
💭
𝐅𝐫𝐞𝐞𝐝𝐨𝐦 ❤️
Block or Report

Block or report NassimBentarka

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Pinned Loading

  1. NBN-Pi-Core NBN-Pi-Core Public

    A highly resilient Zero-Conf (Plug & Play) solution to remotely manage any LAN using failproof SSH tunnels.

    Shell 2 1

  2. Digispark-Meterpreter-Framework Digispark-Meterpreter-Framework Public

    A framework which writes your Digispark arduino code for a specific metasploit payload.

    Ruby 20 3

  3. Computes Fibonacci Numbers using Dyn... Computes Fibonacci Numbers using Dynamic Programming Algorithm (Memoization) on MATLAB.
    1
    % This technique is mainly used to optimize the running time of the algorithm, it transfoms exponential time caused by the recursion
    2
    % into polynomial time.
    3
    % Run this file on Matlab (with the csv files in the same dir) 
    4
    clear
    5
    clc
  4. Ce script MATLAB permet le calcul du... Ce script MATLAB permet le calcul du coefficient de friction (Lambda) F selon la corrélation de Colebrook. // A Matlab script to compute the friction coefficient based on Colebrook correlation.
    1
    %Auteur: Nassim BENTARKA
    2
    %Ecrit le 15/05/2018
    3
    %INPUT:
    4
    %Nombre de Reynolds: R ; et Rugosité relative: K
    5
    %Le nombre d'itérations
  5. Trim Videos from any format using FF... Trim Videos from any format using FFMPEG in copy-paste speeds!
    1
    #!/bin/bash
    2
    #Author: Nassim BENTARKA (NBN) @nassimosaz
    3
    #You can implement this tool into your system by copying the script into ~/bin/ directory as fast-video-trim
    4
    if [ $# -ne 4 ]; then
    5
        printf "\n${0}: usage: Fast-Video-Trim.sh [BEGIN_TIME HH:MM:SS:] [END_TIME HH:MM:SS] [INPUT_FILE] [OUTPUT_FILE]\n\n"
  6. Random number generator that uses /d... Random number generator that uses /dev/random as entropy source. Written as part of an experiment on the potential influences of the mind on the randomness of an event: a coin toss in this case.
    1
    #!/usr/bin/env python3       
    2
    import random
    3
    import matplotlib as plt
    4
    import time
    5
    import os