git 提交本地到远程仓库
1.打开git客户端,cd到要上传的项目文件夹下2.输入git init命令3.输入git add .4.输入git commit -m “first commit” 第一次会让输入git的邮箱、用户名,输入一下5.添加远程仓库地址git remote...
提取编译后的cocos ts文件
const fs = require('fs'); const path = require('path'); // 读取压缩文件 const inputFile = path.join(__dirname, 'assets/main/index.ee639.js'); const outputDir = path.join(__dirname,...
php 对视频进行基础修改操作
<?php /** * video class * written: denny Date :2020-06-15 */ class Mpeg{ public $sowarePath = ''; public $ffmpegCmd = 'ffmpeg '; public $ffprobeCmd = 'ffprobe '; function __cons...
uniapp登录页面模板
模板一 代码部分 1.Login.vue<template> <view class='page'> <view class='title'> <view>Hello!<br>欢迎来到XXX</view> </view> <view c...
python读取so文件输出到text
import osimport sysimport redef extract_strings(binary_data): '''从二进制数据中提取可打印的字符串''' # 使用正则表达式匹配至少4个连续的可打印字符 strings = re.findall...
cocos uuid解密脚本
//22位压缩后的 UUID解码配置 const BASE64_KEYS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='; const values: number[] = new Array(123); // max char code in ba...







