Skip to content
View hamzazeryouh's full-sized avatar
🏠
Working from home
🏠
Working from home

Block or report hamzazeryouh

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. Cryptography example .net core Cryptography example .net core
    1
    using System;
    2
    using Microsoft.AspNet.Identity;
    3
    using System.Security.Cryptography;
    4
    					
    5
    public class Program
  2. MongoDB Aggregate lookup match Proj... MongoDB Aggregate lookup match Project or condition dotnet c# .netcore exemple
    1
     public async Task<List<ProfessorEntity>> GetLookUpTeacherSearchList(List<string> languages, string searchTerms)
    2
            {
    3
                try
    4
                {
    5
                    return _db.Professor.Aggregate()
  3. Function java Read From Excel Function java Read From Excel
    1
    How to Read Excel File in Java
    2
    In this section, we are going to learn how we can read data from an excel file.
    3
    
                  
    4
    In Java, reading excel file is not similar to read word file because of cells in excel file. JDK does not provide direct API to read or write Microsoft Excel or Word document. We have to rely on the third-party library that is Apache POI.
    5
    
                  
  4. How to Write Data into Excel Sheet u... How to Write Data into Excel Sheet using Java
    1
    	public static void WriteToExcel(Map<String, Object[]> studentData) throws Exception
    2
    	{
    3
    		// workbook object
    4
    		XSSFWorkbook workbook = new XSSFWorkbook();
    5
    
                  
  5. upload file c# function .net core ... upload file c# function .net core dotnet example
    1
       public async Task<string> UploadFile(IFormFile file)
    2
            {
    3
                const string filePath = "upload-files/tasks/";
    4
                Directory.CreateDirectory(filePath);
    5
                string path = $"{filePath}{Guid.NewGuid()}{Path.GetExtension(file.FileName)}";