Archive for the ‘Uncategorized’ Category
Monday, November 14th, 2016
[crayon-600e7f09f0652370614334/]
Posted in System administration, Uncategorized | No Comments »
Wednesday, April 16th, 2014
$ cat filename | col -b > newfilename
Posted in FreeBSD, Uncategorized | No Comments »
Wednesday, April 16th, 2014
As noted in the comments its nice to have the text available for easy copy and paste into your terminal.
Show:
defaults write com.apple.finder AppleShowAllFiles TRUE
killall Finder
Hide:
defaults write com.apple.finder AppleShowAllFiles FALSE
killall Finder
Источник
Posted in Mac OS, Uncategorized | No Comments »
Thursday, December 18th, 2008
Port 8888
# bind to all IPs aliased or not
BindAddress 0.0.0.0
# max number of simultaneous clients
MaxClients 1000
# max bandwidth per-client (kb/s)
MaxBandwidth 10000
# Suppress that if you want to launch ffserver as a daemon.
NoDaemon
File /tmp/feed1.ffm
FileMaxSize 50M
# FLV output - ...
Posted in Uncategorized | No Comments »
Wednesday, October 15th, 2008
<Call name="addConnector">
<Arg>
<New class="org.mortbay.jetty.nio.SelectChannelConnector">
<Set name="host">127.0.0.1</Set>
<Set name="port"><SystemProperty name="jetty.port" default="8080"/></Set>
<Set name="maxIdleTime">300000</Set>
<Set name="Acceptors">2</Set>
<Set name="statsOn">false</Set>
<Set name="confidentialPort">8443</Set>
<Set name="lowResourcesConnections">25000</Set>
<Set name="lowResourcesMaxIdleTime">5000</Set>
</New>
</Arg>
</Call>
Posted in Uncategorized | No Comments »