Skip to content

Instantly share code, notes, and snippets.

View PDPENG's full-sized avatar
:octocat:
developing

Zhepeng Dong PDPENG

:octocat:
developing
View GitHub Profile
@PDPENG
PDPENG / L.cpp
Created September 18, 2023 02:06
2023 ICPC Asia EC Online Qualifier Round 1, Problem L.
#include <iostream>
#include <stdlib.h>
using namespace std;
int main()
{
long long int program_num;
long long int *program_data;
int time_limit, k;
cin >> program_num;
@PDPENG
PDPENG / ssh.bash
Created June 14, 2022 11:08
GitSSH
ssh -keygen -t rsa -C "your email"
net start mysql
net stop mysql
mysql -u root -p
@PDPENG
PDPENG / HexoAutoDeploy.yml
Last active May 26, 2022 09:22
HexoAutoDeployOnGitHubActions
# Action's Name
name: AutoDeploy
on:
# Triggering Condition 1 Main Branch Performs The Task After Receiving Push
push:
branches:
- master
# Triggering Condition 2 Manual Button
workflow_dispatch: