<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://wiki.padix.dk/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://wiki.padix.dk/feed.php">
        <title>Wiki-World programming</title>
        <description></description>
        <link>https://wiki.padix.dk/</link>
        <image rdf:resource="https://wiki.padix.dk/lib/tpl/dokuwiki/images/favicon.ico" />
       <dc:date>2026-04-16T06:28:59+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://wiki.padix.dk/doku.php?id=programming:bash_notes&amp;rev=1667590025&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.padix.dk/doku.php?id=programming:esp_programming_tool&amp;rev=1654881548&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.padix.dk/doku.php?id=programming:frameworks&amp;rev=1654881548&amp;do=diff"/>
                <rdf:li rdf:resource="https://wiki.padix.dk/doku.php?id=programming:raspberry_pi_notes&amp;rev=1654881548&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://wiki.padix.dk/lib/tpl/dokuwiki/images/favicon.ico">
        <title>Wiki-World</title>
        <link>https://wiki.padix.dk/</link>
        <url>https://wiki.padix.dk/lib/tpl/dokuwiki/images/favicon.ico</url>
    </image>
    <item rdf:about="https://wiki.padix.dk/doku.php?id=programming:bash_notes&amp;rev=1667590025&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-11-04T20:27:05+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:bash_notes</title>
        <link>https://wiki.padix.dk/doku.php?id=programming:bash_notes&amp;rev=1667590025&amp;do=diff</link>
        <description>Remove character from filenames

To remove the charachters “ &lt; &gt; : * | ?  from filenames in the current folder
(especially handy when files need to be placed on onedrive/windows share)


for f in *; do mv -i &quot;$f&quot; &quot;${f//[\&quot;&lt;&gt;:\*\|\/\?]}&quot;; done


It's also possible to remove all spaces in filenames by including</description>
    </item>
    <item rdf:about="https://wiki.padix.dk/doku.php?id=programming:esp_programming_tool&amp;rev=1654881548&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-10T19:19:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:esp_programming_tool</title>
        <link>https://wiki.padix.dk/doku.php?id=programming:esp_programming_tool&amp;rev=1654881548&amp;do=diff</link>
        <description>ESPtool

The tool is used to program ESP based chips such as the ESP8266/ESP8285 located in Sonoff units.

Installing esptool on Ubuntu 18.04/Mint 19

First install python and pip.


sudo apt install python python-pip python-setuptools python-serial</description>
    </item>
    <item rdf:about="https://wiki.padix.dk/doku.php?id=programming:frameworks&amp;rev=1654881548&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-10T19:19:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:frameworks</title>
        <link>https://wiki.padix.dk/doku.php?id=programming:frameworks&amp;rev=1654881548&amp;do=diff</link>
        <description>Symfony

console

To make it easier running the console the following bash alias function can be used.


function con() {
  ( php bin/console $* )
}


Laravel

phinx

To make it easier running the phinx command the following bash alias function can be used.</description>
    </item>
    <item rdf:about="https://wiki.padix.dk/doku.php?id=programming:raspberry_pi_notes&amp;rev=1654881548&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-06-10T19:19:08+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>programming:raspberry_pi_notes</title>
        <link>https://wiki.padix.dk/doku.php?id=programming:raspberry_pi_notes&amp;rev=1654881548&amp;do=diff</link>
        <description>Login prompt when connecting USB null modem cable

File: /etc/udev/rules.d/99-ttyusb.rules


 KERNEL==&quot;ttyUSB0&quot;, ACTION==&quot;add&quot;,\
   PROGRAM=&quot;/bin/systemctl start usb-serial-ttyUSB0.service&quot;


File: /etc/systemd/system/usb-serial-ttyUSB0.service


 [Unit]
 BindTo=/dev/ttyUSB0
 After=/dev/ttyUSB0.device
 
 [Service]
 Type=oneshot
 TimeoutStartSec=300
 ExecStart=/sbin/getty -L ttyUSB0 115200 vt100</description>
    </item>
</rdf:RDF>
