There are multiple calculator application that can be used in freebsd . You can use the command pkg search calc
in order to find calculators .
$ pkg search calc # search for an application , which has , #… Read More
There are multiple calculator application that can be used in freebsd . You can use the command pkg search calc
in order to find calculators .
$ pkg search calc # search for an application , which has , #… Read More
To install application under freebsd , you can either use the pkg
tool or the make
tool . The pkg
tool will install pre compiled binaries , whereas the make
tool will build binaries from source .
To fix the content now being shown when using the wordpress plugin : Prettify GC Syntax Highlighter
, edit prettify-gc-syntax-highlighter.php
and replace :
return preg_replace( "/<pre\\s*class\\s*=\\s*([\"'])\\s*prettyprint\\s*([^]*?)\\s*(.*?)<\/pre/ise", "'<pre class='.stripslashes('$1').'prettyprint '.stripslashes('$2').''.htmlentities(stripslashes('$3')).'</pre'", $text);
with
return preg_replace_callback( "/<pre\\s*class\\s*=\\s*([\"'])\\s*prettyprint\\s*([^]*?)\\s*… Read More
qpdfview is a good choice for viewing pdf , it can be installed by runningĀ pkg install qpdfview as root .
To install xfce on freebsd , this what must be done . First switch to root :
$ su - # switch to root , and enter your password .
Next install Xorg :
$ pkg install xorg # install… Read More
root$ echo 'deb http://download.opensuse.org/repositories/home:/stevenpusser/Debian_10/ /' > /etc/apt/sources.list.d/home:stevenpusser.list root$ apt-key adv --fetch-keys https://download.opensuse.org/repositories/home:/stevenpusser/Debian_10/Release.key root$ apt-get update root$ apt-get install palemoon… Read More
If there is a string , which must be reversed , for example :
reverse of '' is '' reverse of 'a' is 'a' reverse of 'ab' is 'ba'
In python this can be done like this :
>>> ''.join(reversed('ab'))… Read More