Skip to content
View drader's full-sized avatar
Block or Report

Block or report drader

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
drader/README.md

Hi 👋, I'm Oğuz Gençer

An engineer, researcher and scientist

GIF

  • Hardware: (Altium, Xilinx, uC/uP, FPGAs

  • Software: (C, Java, Python)

  • Simulation & Modeling: (Matlab, Simulink, LTSpice, TCAD, Autocad)

  • Research: Nanoscience, Nanoelectronics, Quantum Dot Synthesis & Characterization



drader

  • 🌱 I’m currently learning Data Science & Data Processing

  • 👯 I’m looking to collaborate on Simulation, Modeling & Data Visualization Projects

  • 👨‍💻 All of my public projects are available at github For private repos please contact with me

  • 👨🏻‍🔬 My researches and publications at   ResearchGate   |   GoogleScholar   |   ORCID

  • 💬 Ask me about C, Java, Python, Matlab

  • 📫 How to reach me on   Gmail   |   skype (drader87)   |   Linkedin

  • ⚡ My motto : Bees don't waste time trying to explain to flies that honey is better than shit.

Let's do brainstorm together, follow my feeds! 🖖

drader87 drader drader drader

Languages and Tools

linux ubuntu bash vscode visualstudio C Java python matlab android git github gitlab svn ifttt zapier trello Jupyter numpy pandas qt arduino raspberrypi labview

 drader

drader

drader

Pinned

  1. project-GTFS_ist project-GTFS_ist Public

    GTFS Data for istanbul public transportation

    3

  2. project-irb120 project-irb120 Public

    Bachelor Graduation Project

    HTML

  3. training-patika-datastructures training-patika-datastructures Public

    Python

  4. Prints a 3x3 list as 3 row 3 column Prints a 3x3 list as 3 row 3 column
    1
    list = [1, 2, 3, 4, 5, 6, 7, 8, 9]
    2
    
                  
    3
    for j in range(0, 3):
    4
        for k in range(0, 3):
    5
            print(list[(3*j)+k], end ="")
  5. Prints the triangle of given integer Prints the triangle of given integer
    1
    for i in range(1,int(input())):
    2
        print(i*(((10**i)-1)//9))
  6. Polynomial solver horner method Polynomial solver horner method
    1
    # Polynomial Example (Backward)
    2
    # 2*x**3 - 6*x**2 + 2*x - 1
    3
    
                  
    4
    def poly_bwd(x, coeff, i):
    5
        return coeff[i] if (i==0) else (coeff[i]+(x*poly_bwd(x, coeff, i-1)))