Skip to content
View drader's full-sized avatar

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.

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

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

Electronics Engineer · PhD Researcher in Nanoscience & Biomedical Engineering @ İTÜ

Google Scholar ResearchGate ORCID LinkedIn Email

coding

🔬 Research Focus

PhD work on conductive nanofiber coatings for neural microelectrode arrays (MEA) — dual-use electrical + optical electrode materials (PEDOT:PSS, carbon nanomaterials, electrospun scaffolds) for low-impedance neural recording and optical microscopy compatibility.

🧪 Domains: Nanoelectronics · Quantum dot synthesis & characterization · Neural interfaces
👯 Open to collaboration on simulation, modeling & scientific data visualization · 📌 Private/research repos on request

🧰 Tech & Skills

C, C++, Java, Python, MATLAB, Verilog, scikit-learn, TensorFlow, PyTorch, OpenCV, Qt, AutoCAD, Arduino, Raspberry Pi, Linux, Bash, Git, Docker, LaTeX

Category Technologies
Languages C · C++ · Java · Python · MATLAB · Verilog
Scientific Computing & Data NumPy · pandas · SciPy · scikit-learn · TensorFlow · PyTorch · Matplotlib · OpenCV · Jupyter
Hardware & EDA Altium Designer · KiCad · AutoCAD · Arduino · Raspberry Pi · LabVIEW · Xilinx FPGA
Simulation & Modeling MATLAB/Simulink · LTspice · Sentaurus TCAD
Tools & Environment Linux · Bash · Git · Docker · LaTeX · Qt

📈 GitHub Stats

overview languages

🐍 Contribution Snake

Snake animation of GitHub contribution graph

views

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

Pinned Loading

  1. project-GTFS_ist project-GTFS_ist Public

    GTFS Data for istanbul public transportation

    2

  2. project-irb120 project-irb120 Public

    Bachelor Graduation Project

    HTML

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

    Python 1

  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)))