博客主页 所有文章 标签 关于我
img

claudia

frontend / python

keep moving


small world


  • 博客主页
  • 所有文章
  • 标签
  • 关于我
  1. install cygwin and ssh service on windows record

    1. install ssh server(cygwin) on Windows1) download setup-x86_64.exe on cygwin.com2) run setup-x86_64.exe and setup as follow steps, click next until to select packages.ps: if pc can not get access to internet, can chose local(you should download...…

    2020-01-20
    cygwin
    阅读全文 »

  2. robotframework study

    ROBOT_LIBRARY_SCOPEROBOT_LIBRARY_SCOPE has tree types of values.TEST CASEA new instance is created for every test case.A possible suite setup and suite teardown share yet another instance.This is the default.TEST SUITEA new instance is created for...…

    2020-01-03
    robotframework
    阅读全文 »

  3. selenium robot/python demo

    Selenium is an open source automated testing suite for web applications.Selenium has four components:Selenium Integrated Development Environment (IDE)Selenium Remote Control (RC)WebdriverSelenium GridSelenium IDEa firefox extension, support record...…

    2020-01-02
    selenium
    阅读全文 »

  4. solve the Problems with X11 - Can't open display on MAC

    how to solve the Problems with X11 - Can’t open display on MAChow to solve the Problems with X11 - Can’t open display on MAC do commands on mac: defaults write com.apple.x11 nolisten_tcp -boolean falsedefaults write org.X.x11 nolisten_tcp -bo...…

    2020-01-01
    mac
    阅读全文 »

  5. update brew repo

    cd `brew --repo` git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git brew updatesome mirrorshttps://git.coding.net/homebrew/homebrew.git/https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git/https://mir...…

    2019-11-02
    mac
    阅读全文 »

  6. FlaskBB guide

    clone and start:git clone https://github.com/sh4nks/flaskbb.gitcd flaskbbgit checkout 2.0.0virtualenv .venvsource .venv/bin/activatepip install -r requirements.txtflaskbb makeconfigflaskbb --config flaskbb.cfg installflaskbb --config flaskbb.cfg r...…

    2019-10-24
    flaskbb
    阅读全文 »

  7. nc study

    ref linkref link2nc demoassume: A(1.1.1.1) to B(2.2.2.2)nc demo1: nc copy file:copy file(test.log) from A(1.1.1.1) to B(2.2.2.2)step1: start nc to monitoring data on B nc -lp 1234 > test.logstep2: use nc make connection with B on A nc...…

    2019-05-04
    linux
    阅读全文 »

  8. sftp command record

    download files from remotesftp user@remote_serverlsget /remote/path/FILENAME /local/path/FILENAME…

    2019-04-01
    linuxcommandsftp
    阅读全文 »

  9. python demo: set proxy on windows

    this is a demo to set proxy on windows with python.you can use pyinstaller to package it to an exe and set proxy automatically.#!/usr/bin/env python# -*- coding: utf-8 -*-try: import _winreg as winregexcept: import winregINTERNET_SETTINGS = ...…

    2019-03-12
    阅读全文 »

  10. jupyterlab and extension installation on mac

    pre network settingour internal network has some limitations, so firstly we should set the proxy of network.export https_proxy=http://x.x.x.x:8080export http_proxy=http://x.x.x.x:8080install conda and jupyter labinstall conda, you can follow theco...…

    2019-02-03
    jupyter
    阅读全文 »

  11. robot demo record

    *** Settings ***Documentation ref: [robotframwork user guide link](https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#variables)Library SeleniumLibraryLibrary String*** Variables ***${string_pass} he...…

    2019-02-03
    robotframework
    阅读全文 »

  12. bashrc 、~/.bashrc、profile、~/.profile

    Interactive (non-login) shells, then the config is read from these files: $HOME/.bashrcFor login shells, the config is read from these files: /etc/profile (Always sourced) $HOME/.bash_profile(the rest of these files are checked in order until o...…

    2019-01-04
    linux
    阅读全文 »

  13. turn web to app on mac

    just two commands, turn web to app on mac npm i -g nativefier nativefier "https://www.ximalaya.com/"…

    2019-01-02
    mac
    阅读全文 »

  14. Selenium problems collection

    insert value to inputWhen we want to use selenium to insert some value to input element in html, we follow steps as follow: step1: clear the text in the input step2: insert valuefirstly, we get element: #!-encoding=utf-8- chrome_option = C...…

    2019-01-01
    selenium
    阅读全文 »

  15. git commands record

    git config user.name "username"git config user.email "mail"git remote -v #show remote git repositorygit remote add origin git://github.com/username/test.gitgit pull --allow-unrelated-histories #solve allow-unrelated-histories problemsgit r...…

    2018-10-01
    git
    阅读全文 »

  16. about regex

    正则组成普通字符 + 元字符a-z,A-z,0-9,_ \ ^ $ . ? * + | {n} {m,n} (pattern) (?:pattern) (?!pattern) (?=pattern) [] [^] \b元字符详细 字符 描述 \ 标记下一个字符为特殊字符/原义字符/向后引用/八进制转义符。e.g. \n 代表换行符 ^ 匹配输...…

    2018-09-22
    regex
    阅读全文 »

  17. mongodb_test_record

    1.install:brew services stop mongodbbrew uninstall mongodbbrew tap mongodb/brewbrew install mongodb-communitybrew services start mongodb-community2.add accounthttps://segmentfault.com/a/1190000011554055> mongo> use adminswitched to db admin&...…

    2018-02-03
    mongodb
    阅读全文 »

  18. sass less stylus

    sass + less + stylus1) sassh1color: #fffbackground-color: #000按照sass缩进方式省去[大括号]与[分号], 且兼容css写法2)less@base: #f938ab;.box-shadow(@style, @c) when (iscolor(@c)) {box-shadow: @style @c;-webkit-box-shadow: @style @c;-moz-box-shadow: @style @...…

    2018-01-20
    css
    阅读全文 »

  19. django quick start

    install python install djangocheck django version:pip install djangopython -m django --version create a project by djangodjango-admin startproject mysite django project mysite/ manage.py mysite/ init.py settings.py ur...…

    2018-01-20
    css
    阅读全文 »


← 最近 2 / 2
  • RSS

Copyright © keep moving 2025 Theme by claudia1204 |

本站总访问量 次