Blog

Rust IO Demo

A Rust IO Operation Demo #

use colored::Colorize;
use csv::ReaderBuilder;
use csv::WriterBuilder;
use serde::Deserialize;
use serde::Serialize;
use std::error::Error;
use std::fs::File;
use std::path::Path;
use std::time::{SystemTime, UNIX_EPOCH};
use std::{env, process};

#[derive(Debug, Deserialize, Serialize)]
struct Row {
    name: String,
    age: u32,
    city: String,
}

fn file_check(args: &Vec<String>) {
    if args.len() < 2 {
        println!("{}", "请输入CSV文件路径".yellow());
        process::exit(1);
    }

    let file_path = Path::new(&args[1]);

    if file_path.exists() && file_path.is_file() {
        println!("{}", "文件存在".green());
    } else {
        println!("{}", "文件不存在,请输入正确的文件路径".red());
        process::exit(1);
    }
}

fn main() -> Result<(), Box<dyn Error>> {
    println!("{} \n", "正在处理...".green());

    let args: Vec<String> = env::args().collect();
    file_check(&args);

    // 读取 CSV 文件
    let file = File::open(&args[1])?;
    let mut reader = ReaderBuilder::new().has_headers(true).from_reader(file);
    let mut rows: Vec<Row> = reader.deserialize().collect::<Result<_, _>>()?;

    let mut rows_output_ok: Vec<Row> = vec![];
    let mut rows_output_warn: Vec<Row> = vec![];

    for row in &mut rows {
        println!("Current Row: {} {} {}", row.name, row.age, row.city);

        if row.city.len() > 5 {
            println!("超过限定 {}", row.city);
            rows_output_ok.push(Row {
                name: row.name.to_string(),
                age: row.age,
                city: row.city.to_string(),
            });
        } else {
            println!("低于限定 {}", row.city);
            rows_output_warn.push(Row {
                name: row.name.to_string(),
                age: row.age,
                city: row.city.to_string(),
            });
        }
    }

    let now = SystemTime::now();
    let duration_since_epoch = now
        .duration_since(UNIX_EPOCH)
        .expect("Failed to get duration since epoch");
    let milliseconds = duration_since_epoch.as_millis() as u64;
    let output_ok = format!("output_ok_{}.csv", milliseconds);
    let output_warn = format!("output_warn_{}.csv", milliseconds);

    // 写入新的 CSV 文件
    let mut ok_writer = WriterBuilder::new()
        .has_headers(true)
        .from_path(&output_ok)?;

    for row in &rows_output_ok {
        ok_writer.serialize(row)?;
    }

    ok_writer.flush()?;
    println!("写入文件 {} 完成", &output_ok.red());

    let mut warn_writer = WriterBuilder::new()
        .has_headers(true)
        .from_path(&output_warn)?;

    for row in &rows_output_warn {
        warn_writer.serialize(row)?;
    }

    warn_writer.flush()?;
    println!("写入文件 {} 完成", &output_warn.red());

    Ok(())
}

Negotiation

一些著名谈判案例 #

联想收购IBM个人电脑部门:2004年,中国联想集团以18.5亿美元的价格收购了IBM个人电脑部门。在谈判过程中,联想集团成功地向IBM展示了自己在中国市场的优势,并且成功地让IBM同意将品牌许可给联想集团。

马化腾与eBay的合作:2001年,中国互联网巨头腾讯的CEO马化腾成功地与eBay的CEO梅格·惠特曼达成了合作协议,将eBay引入中国市场。在谈判过程中,马化腾展现了腾讯在中国市场的影响力,使得eBay对于合作的信心倍增。

阿里巴巴与雅虎的合作:2005年,阿里巴巴的CEO马云成功地向雅虎的CEO Terry Semel展示了阿里巴巴在中国市场的领导地位和增长潜力,并签署了一项合作协议,让雅虎成为阿里巴巴的战略合作伙伴。该合作协议加速了阿里巴巴的业务扩张和国际化进程。

中国移动与苹果的合作:2013年,中国移动与苹果签署了一项合作协议,允许苹果将其iPhone引入中国移动的网络。在谈判过程中,中国移动强调了自己在中国市场的优势和巨大的用户群体,并且成功地推动了苹果调整了自己的合作政策。

腾讯收购Supercell:2016年,中国互联网公司腾讯以86亿美元收购了芬兰移动游戏公司Supercell的84.3%股份。在谈判过程中,腾讯展示了自己在游戏领域的优势和战略规划,使得Supercell同意与腾讯合作。

华为与谷歌的合作:2019年,华为与谷歌签署了一项专利授权协议,允许华为在其智能手机中使用谷歌的安卓操作系统。在谈判过程中,华为强调了自己在全球智能手机市场中的份额和品牌影响力,使得谷歌同意与华为合作。

美团点评收购摩拜单车:2018年,中国外卖巨头美团点评以27亿美元收购了共享单车公司摩拜单车。在谈判过程中,美团点评强调了自己在中国市场的优势和扩张计划,并且成功地获得了摩拜单车的控制权。

中兴通讯与美国政府的谈判:2018年,中兴通讯因为违反美国对伊朗和朝鲜的制裁而被美国政府制裁,面临巨额罚款和无法使用美国技术的风险。在谈判过程中,中兴通讯展现了自己在全球通讯行业的领先地位和对全球经济的贡献,最终成功地达成了与美国政府的和解协议。

Zsh Overview

一、Introduction #

Zsh is a shell designed for interactive use, although it is also a powerful scripting language. Many of the useful features of bashksh, and tcsh were incorporated into zsh; many original features were added.

二、Configuration #

  1. zsh
  2. ohmyzsh, zsh-autosuggestions, zsh-syntax-highlighting

install zsh

# For Fedora
sudo dnf install zsh

# For Ubuntu
apt install zsh

# For macOS
brew install zsh

# For CentOS
sudo yum update && sudo yum -y install zsh

Make it your default shell: chsh -s $(which zsh) or use sudo lchsh $USER if you are on Fedora. Or chsh -s /bin/zsh .

...

Babel Ast Demo

Babel AST Demo #

Review

  1. 2023/08/25
const fs = require('fs');
const path = require('path');
const babel = require("@babel/core");
const { parse } = require('@babel/parser');
const traverse = require('@babel/traverse').default;

const srcFilePath = './src/main.js';

// Store source codes
const sourceCodes = {};

// Function to recursively process dependencies
function processDependency(filePath) {
  if (!sourceCodes[filePath]) {
    const sourceCode = fs.readFileSync(filePath, 'utf-8');
    sourceCodes[filePath] = sourceCode;

    // Parse the source code to extract import statements
    const ast = parse(sourceCode, {
      sourceType: 'module',
      plugins: ['jsx', 'typescript'], // Add plugins as needed
    });

    // Traverse the AST to find dependencies
    traverse(ast, {
      ImportDeclaration: ({ node }) => {
        const dependencyPath = node.source.value;
        const absoluteDependencyPath = path.resolve(path.dirname(filePath), dependencyPath);
        processDependency(absoluteDependencyPath);

        // Remove import declarations
        node.specifiers.forEach(specifier => {
          if (t.isImportSpecifier(specifier)) {
            const name = specifier.imported.name;
            const source = t.stringLiteral(dependencyPath);
            const importDeclaration = t.importDeclaration([specifier], source);
            const importIndex = ast.program.body.indexOf(node);
            ast.program.body.splice(importIndex, 1, importDeclaration);
          }
        });
      },
    });
  }
}

// Start processing the main file and its dependencies
processDependency(path.resolve(srcFilePath));

// Output the source codes
Object.entries(sourceCodes).forEach(([filePath, sourceCode]) => {
  console.log(`Source code for file: ${filePath}`);
  console.log(sourceCode);

  const { code } = babel.transform(sourceCode, {})
  console.log('\n--------------------------------------------\n');
  console.log(code);

});


// const data = require('./dist/bundle');
// babel.transformSync(data, { s });

Angular 1

Review

  1. 2020/11/25

Angular 2

Review

  1. 2020/11/25

Software Engineering

软件工程 - 敏捷过程 #

Review

  1. 2020/04/08

时间就像一张网,你撒在哪里,你的收获就在哪里。

我们一直在实践中探寻更好的软件开发方法,身体力行的同时也帮助他人。由此我们建立了如下价值观: 个体和互动 高于 流程和工具 工作的软件 高于 详尽的文档 客户合作 高于 合同谈判 响应变化 高于 遵循计划 也就是说,尽管右项有其价值,我们更重视左项的价值。

不是我们流程完全按照敏捷设计了就是敏捷了,而是需要不断反思我们是否按照这个思想在实践了才是符合敏捷思想的核心。 换一个角度,其实和我们组织的价值观是一致的。

  • 主人翁意识;
  • 追求卓越;
  • 空杯心态;
  • 思变创新;
  • 以客户为中心;
  • 真诚直接

敏捷相关的知识点 1、敏捷核心价值观 2、完整的scrum流程 3、每日例会和看板 4、回顾例会

软件过程模型 #

  • 瀑布模型
  • 快速原型模型
  • 增量模型
  • 螺旋模型
  • 喷泉模型
  • RUP
  • 敏捷过程
  • 微软过程

软件工程分析 #

  1. 问题定义
  2. 可行性研究
  3. 需求分析
  4. 总体设计
  5. 详细设计
  6. 编码和单元测试
  7. 综合测试
  8. 软件维护