Jinyu Lu's personal website

Jinyu is seeking any IT or compute science related job right now.

陆金雨

Jinyu Lu's photo

Jinyu Lu, BSc, computer Science. |Full Stack Programmer | University of Saskatchewan

Punctual person

Jinyu effectively manages MY time, prioritize tasks, and allocate the necessary resources to meet commitments and deadlines.

Strong in Math

Jinyu is able to analyse complex problems, break them down into manageable components, and formulate solutions logically.

Professional & unique

Jinyu has strong programming skills,particularly in C#.I have in-depth knowledge of the Unity engine, its features, and its various components.

Self learner

Jinyu is naturally curious and have a strong desire to explore and understand new concepts, ideas, and subjects.

This is Code Snippets of spaceship moving 

(Written by C#)

				
					 private void MovePlayer() {
        if (Input.GetKey(KeyCode.W)) transform.Translate(Vector3.forward * moveSpeed * Time.deltaTime);
        if (Input.GetKey(KeyCode.S)) transform.Translate(Vector3.back * moveSpeed * Time.deltaTime);
        if (Input.GetKey(KeyCode.D)) _rotation = Vector3.up;
        else if (Input.GetKey(KeyCode.A)) _rotation = Vector3.down;
        else _rotation = Vector3.zero;
        transform.Rotate ( _rotation * rotateSpeed * Time.deltaTime);
    }
				
			

SuperHexiclone

This is Code of generating green prefab.(C#)

				
					void Update()
    {
        if (Time.time >= nextTimeToSpawn)
        {
            Instantiate(hexagonPrefab, Vector3.zero, Quaternion.identity);
            nextTimeToSpawn = Time.time + 1f / spawnRate;
        }

    }
				
			

Wechat App add-on to get access to ChatGpt 3.5 

This is Code of fetching API from OpenAi.

				
					 header: {
        'content-type': 'application/json',
        'Authorization':'****************************' //围棋!在这里修改API key 
      },
      method: 'POST',
      dataType: 'json',
      responseType: 'text',
      success: function(res) {
        msgList.push({
          speaker: 'server',
          contentType: 'text',
          content: res.data.choices
        })
        that.setData({     
          msgList,
          inputVal})
      },