Tag Archives: basis

How to run Python program directly with atom

Now there is a better way, this method can only run the default py interpreter, please click [https://mp.csdn.net/mdeditor/84959016#] to check the new method
Introduction:
Atom is a very useful editor, but it can’t run a terminal, so let’s see how to run A Python program on Atom.

    open your atom editor and press CTRL +shift+p to enter setting enter or click file to select install. Click the search box to search for atom-python-run or script
    . Bye bye

javax.xml.ws.soap.SOAPFaultException: Unmarshalling Error: unexpected element


< Jaxws: client id = “testService” serviceClass = “com. Test. TestService”
address = “127.0.0.1”/& gt;
add
< jaxws:properties>
& lt; entry key=”set-jaxb-validation-event-handler” value=”false”/>
& lt; /jaxws:properties>

namely & lt; Jaxws: client id = “testService” serviceClass = “com. Test. TestService”
address = “127.0.0.1” & gt;
& lt; jaxws:properties> < entry key=”set-jaxb-validation-event-handler” value=”false”/> < /jaxws:properties> < /jaxws:client>

samba Error NT_STATUS_CONNECTION_REFUSED Failed to connect with SMB1 — no workgroup available

Error connecting to a colleague’s Shared service:
Smbclient-l ip-u user
WARNING: The “syslog” option is deprecated
Enter WORKGROUP\administrator’s password:
Sharename Type the Comment
— — — — — — — — — — — — — — — — —

XXX XXX Disk remote management Shared Disk default IPC remote IPC

XXX XXX Disk Logon server share
XXX Disk Logon server share
share_dir Disk
Reconnecting with SMB1 for workgroup listing.
Connection To IP failed (Error nt_status_connection_union)
failed to connect with SMB1 — no workgroup available
 
The problem was located for a long time, and finally it was found that the problem could be ignored and accessed directly by using the following instructions:
The smbclient// IP/share_dir -u administrator

Installation and use of graphviz under mac

1. Install
Graphviz http://www.graphviz.org/
MAC users recommend to install directly with homebrew, the official version is older

1. Install homebrew
open the terminal to copy and paste the following command:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

After homebrew is installed, run brew install Graphviz to

Brew: command not found
= bash: brew: command not found

terminal input sudo vim.bash_profile ,
input I to enter the input mode,
add export PATH="/usr/local/bin:$PATH",
press esc to exit the input mode,
enter :wq to exit and save
finally enter source.bash_profile to make the configuration take effect.
(note that : and Spaces are also entered, bash_profile may be saved with a warning, :w! force can be saved, more vim command reference http://www.cnblogs.com/usergaojie/p/4583796.html)

2. Use
for a random example:
1. Use the text editor (sublime in this case) to type the following:

digraph pic { 
  Hello -> World
}

3. Open the terminal and switch to the directory where the dot file is located, enter dot pic.dot-t png-o pic.png
4. You can see that a pic.png file

has been generated under the dot file directory

>
>
>
>
>
>
>
>
>
>
>
>
https://blog.zengrong.net/post/2294.html
https://zhuanlan.zhihu.com/p/22820399