编程笔记

  • mac OS 安装 homebrew (Apple Silicon m1芯片)

    查看homebrew官网官网的安装教程     安装步骤: 1.打开mac OS终端,输入命令并运行。输入密码并回车继续安装。       echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/zhfeimi/.zprofile   eva…

    编程笔记 2022年8月7日
  • 智慧小镇综合解决方案

    【资料目录】 智慧化社会背景 智慧小镇建设概述 信息化硬件系统建设 信息化指挥平台建设 资料下载方式见文末                                                                          

    编程笔记 2022年8月7日
  • 拼接两个文件中名字相同的序列

    目的:有两个序列文件,我们要把名字相同的序列首尾拼接起来 # ly-2021-08-29 version-01 # Usage: python infile1 infile2 > outfile # 每条序列必须处于同一行 a = [] b = [] with open("1.txt", "r+") as fil…

    编程笔记 2022年8月7日
  • 2022秋招前端面试题(四)(附答案)

    代码输出结果 async function async1() { console.log("async1 start"); await async2(); console.log("async1 end"); } async function async2() { console.log("async2"); } async1(); console.log('start') 复制…

    编程笔记 2022年8月7日
  • 不能复现的报错

    最后不知道怎么了, 不报错了 UV, Unique Visitor,独立访客是指某站点被多少台电脑访问过,以用户电脑的Cookie作为统计依据

    编程笔记 2022年8月7日
  • idea中,一个 moudle由一个 .iml文件维护, 导入module的时候, 选择导入 .iml文件,或者 pom.xml(有时间验证一下这个)

    idea中,一个 moudle由一个 .iml文件维护, 导入module的时候, 选择导入 .iml文件,或者 pom.xml(有时间验证一下这个) 一个project中, 也有 .iml文件, 但是 新建的 EmptyProject, 好像是 没有 .iml文件, 之后.idea文件…

    编程笔记 2022年8月7日
  • 铁矿石日线触顶通过5分钟级别转向完成

      铁矿石日线       铁矿石5分钟,从日线头部开始下跌         铁矿石分时                 豆粕分时,这个时候既不能做空,因为做空能量不足。也不能做多。  

    编程笔记 2022年8月7日
  • LeetCode 90 Subsets II 回溯

    Given an integer array nums that may contain duplicates, return all possible subsets (the power set). The solution set must not contain duplicate subsets. Return the solution in any order. Solution …

    编程笔记 2022年8月7日
  • Icon,ImageIcon标签

    1 public class IconDemo extends JFrame implements Icon { 2 int width; 3 int height; 4 public IconDemo(){ 5 } 6 public IconDemo(int width,int height){ 7 this.width=width; 8 this.height=height; 9 } 10 …

    编程笔记 2022年8月7日
  • 第一个程序Helloworld

    helloworld 1.随便新建一个文件夹,存放代码 2.新建一个java文件 后缀名为.java 文件名需要为Helloworld 3.书写代码 public class Helloworld{ public static void main(String[] args){ System.out.println("hello…

    编程笔记 2022年8月7日