<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Experiment Management</title>
	<atom:link href="http://kiube.se/idea/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>https://kiube.se/idea/</link>
	<description>för nätverket solarXbike</description>
	<lastBuildDate>Tue, 02 Jun 2026 10:55:46 +0000</lastBuildDate>
	<language>sv-SE</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
<site xmlns="com-wordpress:feed-additions:1">71298873</site>	<item>
		<title>AI Visualisering</title>
		<link>http://kiube.se/idea/?p=770</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Sun, 31 May 2026 08:52:24 +0000</pubDate>
				<category><![CDATA[Output]]></category>
		<category><![CDATA[Visualisering]]></category>
		<guid isPermaLink="false">https://kiube.se/idea/?p=770</guid>

					<description><![CDATA[<p>Inlägget <a href="http://kiube.se/idea/?p=770">AI Visualisering</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><div id="nn-container">
    <canvas id="nnCanvas" width="900" height="500"></canvas><br />
    <br />
    <button onclick="train()">Träna 100 steg</button><br />
    <button onclick="resetNetwork()">Återställ</button></p>
<p>Fel: <span id="loss">0</span></p>
</div>
<p><script></p>
<p>const canvas = document.getElementById('nnCanvas');
const ctx = canvas.getContext('2d');</p>
<p>let w = {
    i1h1: Math.random()*2-1,
    i2h1: Math.random()*2-1,
    i1h2: Math.random()*2-1,
    i2h2: Math.random()*2-1,</p>
<p>    h1o: Math.random()*2-1,
    h2o: Math.random()*2-1
};</p>
<p>const trainingData = [
    {x:[0,0], y:0},
    {x:[0,1], y:1},
    {x:[1,0], y:1},
    {x:[1,1], y:0}
];</p>
<p>function sigmoid(x){
    return 1/(1+Math.exp(-x));
}</p>
<p>function forward(x1,x2){</p>
<p>    let h1 =
        sigmoid(x1*w.i1h1 +
                x2*w.i2h1);</p>
<p>    let h2 =
        sigmoid(x1*w.i1h2 +
                x2*w.i2h2);</p>
<p>    let out =
        sigmoid(h1*w.h1o +
                h2*w.h2o);</p>
<p>    return {h1,h2,out};
}</p>
<p>function train(){</p>
<p>    for(let epoch=0; epoch<100; epoch++){

        let sample =
            trainingData[
            Math.floor(
            Math.random()*4)];

        let x1 = sample.x[0];
        let x2 = sample.x[1];
        let target = sample.y;

        let {h1,h2,out}
            = forward(x1,x2);

        let error =
            target - out;

        let lr = 0.2;

        w.h1o += lr*error*h1;
        w.h2o += lr*error*h2;

        w.i1h1 += lr*error*x1;
        w.i2h1 += lr*error*x2;

        w.i1h2 += lr*error*x1;
        w.i2h2 += lr*error*x2;
    }

    render();
}

function line(x1,y1,x2,y2,weight){

    ctx.beginPath();

    ctx.moveTo(x1,y1);
    ctx.lineTo(x2,y2);

    let thickness =
        Math.abs(weight)*8+1;

    ctx.lineWidth =
        thickness;

    if(weight > 0)
        ctx.strokeStyle="green";
    else
        ctx.strokeStyle="red";</p>
<p>    ctx.stroke();
}</p>
<p>function neuron(x,y,label){</p>
<p>    ctx.beginPath();
    ctx.arc(x,y,25,0,Math.PI*2);</p>
<p>    ctx.fillStyle="white";
    ctx.fill();</p>
<p>    ctx.strokeStyle="black";
    ctx.stroke();</p>
<p>    ctx.fillStyle="black";
    ctx.fillText(label,x-10,y+5);
}</p>
<p>function render(){</p>
<p>    ctx.clearRect(
        0,0,
        canvas.width,
        canvas.height);</p>
<p>    let in1={x:100,y:150};
    let in2={x:100,y:350};</p>
<p>    let h1={x:450,y:150};
    let h2={x:450,y:350};</p>
<p>    let out={x:800,y:250};</p>
<p>    line(
        in1.x,in1.y,
        h1.x,h1.y,
        w.i1h1);</p>
<p>    line(
        in2.x,in2.y,
        h1.x,h1.y,
        w.i2h1);</p>
<p>    line(
        in1.x,in1.y,
        h2.x,h2.y,
        w.i1h2);</p>
<p>    line(
        in2.x,in2.y,
        h2.x,h2.y,
        w.i2h2);</p>
<p>    line(
        h1.x,h1.y,
        out.x,out.y,
        w.h1o);</p>
<p>    line(
        h2.x,h2.y,
        out.x,out.y,
        w.h2o);</p>
<p>    neuron(in1.x,in1.y,"I1");
    neuron(in2.x,in2.y,"I2");</p>
<p>    neuron(h1.x,h1.y,"H1");
    neuron(h2.x,h2.y,"H2");</p>
<p>    neuron(out.x,out.y,"O");</p>
<p>    let loss=0;</p>
<p>    trainingData.forEach(t=>{</p>
<p>        let p=
            forward(
                t.x[0],
                t.x[1]
            ).out;</p>
<p>        loss +=
            Math.pow(
                t.y-p,2);
    });</p>
<p>    loss/=4;</p>
<p>    document
      .getElementById("loss")
      .innerHTML=
      loss.toFixed(4);
}</p>
<p>function resetNetwork(){</p>
<p>    Object.keys(w)
    .forEach(k=>{</p>
<p>        w[k]=
        Math.random()*2-1;</p>
<p>    });</p>
<p>    render();
}</p>
<p>render();</p>
<p></script></p>
<p>Inlägget <a href="http://kiube.se/idea/?p=770">AI Visualisering</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">770</post-id>	</item>
		<item>
		<title></title>
		<link>http://kiube.se/idea/?p=765</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Sun, 31 May 2026 08:45:55 +0000</pubDate>
				<category><![CDATA[Aktuellt]]></category>
		<guid isPermaLink="false">https://kiube.se/idea/?p=765</guid>

					<description><![CDATA[<p>Träna 100 steg ÅterställFel: 0</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=765"></a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div id="nn-container"><canvas id="nnCanvas" width="900" height="500"></canvas></p>
<p><button>Träna 100 steg</button><br />
<button>Återställ</button>Fel: <span id="loss">0</span></p>
</div>
<p><script></p>
<p>const canvas = document.getElementById('nnCanvas');
const ctx = canvas.getContext('2d');</p>
<p>let w = {
    i1h1: Math.random()*2-1,
    i2h1: Math.random()*2-1,
    i1h2: Math.random()*2-1,
    i2h2: Math.random()*2-1,</p>
<p>    h1o: Math.random()*2-1,
    h2o: Math.random()*2-1
};</p>
<p>const trainingData = [
    {x:[0,0], y:0},
    {x:[0,1], y:1},
    {x:[1,0], y:1},
    {x:[1,1], y:0}
];</p>
<p>function sigmoid(x){
    return 1/(1+Math.exp(-x));
}</p>
<p>function forward(x1,x2){</p>
<p>    let h1 =
        sigmoid(x1*w.i1h1 +
                x2*w.i2h1);</p>
<p>    let h2 =
        sigmoid(x1*w.i1h2 +
                x2*w.i2h2);</p>
<p>    let out =
        sigmoid(h1*w.h1o +
                h2*w.h2o);</p>
<p>    return {h1,h2,out};
}</p>
<p>function train(){</p>
<p>    for(let epoch=0; epoch<100; epoch++){ let sample = trainingData[ Math.floor( Math.random()*4)]; let x1 = sample.x[0]; let x2 = sample.x[1]; let target = sample.y; let {h1,h2,out} = forward(x1,x2); let error = target - out; let lr = 0.2; w.h1o += lr*error*h1; w.h2o += lr*error*h2; w.i1h1 += lr*error*x1; w.i2h1 += lr*error*x2; w.i1h2 += lr*error*x1; w.i2h2 += lr*error*x2; } render(); } function line(x1,y1,x2,y2,weight){ ctx.beginPath(); ctx.moveTo(x1,y1); ctx.lineTo(x2,y2); let thickness = Math.abs(weight)*8+1; ctx.lineWidth = thickness; if(weight > 0)
        ctx.strokeStyle="green";
    else
        ctx.strokeStyle="red";</p>
<p>    ctx.stroke();
}</p>
<p>function neuron(x,y,label){</p>
<p>    ctx.beginPath();
    ctx.arc(x,y,25,0,Math.PI*2);</p>
<p>    ctx.fillStyle="white";
    ctx.fill();</p>
<p>    ctx.strokeStyle="black";
    ctx.stroke();</p>
<p>    ctx.fillStyle="black";
    ctx.fillText(label,x-10,y+5);
}</p>
<p>function render(){</p>
<p>    ctx.clearRect(
        0,0,
        canvas.width,
        canvas.height);</p>
<p>    let in1={x:100,y:150};
    let in2={x:100,y:350};</p>
<p>    let h1={x:450,y:150};
    let h2={x:450,y:350};</p>
<p>    let out={x:800,y:250};</p>
<p>    line(
        in1.x,in1.y,
        h1.x,h1.y,
        w.i1h1);</p>
<p>    line(
        in2.x,in2.y,
        h1.x,h1.y,
        w.i2h1);</p>
<p>    line(
        in1.x,in1.y,
        h2.x,h2.y,
        w.i1h2);</p>
<p>    line(
        in2.x,in2.y,
        h2.x,h2.y,
        w.i2h2);</p>
<p>    line(
        h1.x,h1.y,
        out.x,out.y,
        w.h1o);</p>
<p>    line(
        h2.x,h2.y,
        out.x,out.y,
        w.h2o);</p>
<p>    neuron(in1.x,in1.y,"I1");
    neuron(in2.x,in2.y,"I2");</p>
<p>    neuron(h1.x,h1.y,"H1");
    neuron(h2.x,h2.y,"H2");</p>
<p>    neuron(out.x,out.y,"O");</p>
<p>    let loss=0;</p>
<p>    trainingData.forEach(t=>{</p>
<p>        let p=
            forward(
                t.x[0],
                t.x[1]
            ).out;</p>
<p>        loss +=
            Math.pow(
                t.y-p,2);
    });</p>
<p>    loss/=4;</p>
<p>    document
      .getElementById("loss")
      .innerHTML=
      loss.toFixed(4);
}</p>
<p>function resetNetwork(){</p>
<p>    Object.keys(w)
    .forEach(k=>{</p>
<p>        w[k]=
        Math.random()*2-1;</p>
<p>    });</p>
<p>    render();
}</p>
<p>render();</p>
<p></script></p>
<p>Inlägget <a href="http://kiube.se/idea/?p=765"></a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">765</post-id>	</item>
		<item>
		<title>Första uppgift -steg 2</title>
		<link>http://kiube.se/idea/?p=760</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Sun, 31 May 2026 08:40:20 +0000</pubDate>
				<category><![CDATA[Metod]]></category>
		<guid isPermaLink="false">https://kiube.se/idea/?p=760</guid>

					<description><![CDATA[<p>Steg 2 – Flera neuroner Bygg ett litet nätverk. Input Layer Hidden Layer Output X1 -------------&#62; O \ O -----------&#62; O / X2 -------------&#62; O Nu får varje neuron egna vikter. Man gör: Framåtberäkning (forward pass) Beräkna fel Justera vikter</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=760">Första uppgift -steg 2</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2 data-section-id="11ndobr" data-start="771" data-end="797">Steg 2 – Flera neuroner</h2>
<p data-start="799" data-end="822">Bygg ett litet nätverk.</p>
<pre><code class="language-bash" data-line="">Input Layer      Hidden Layer      Output

 X1 -------------&gt; O
                     \
                      O -----------&gt; O
                     /
 X2 -------------&gt; O</code></pre>
<p data-start="957" data-end="989">Nu får varje neuron egna vikter.</p>
<p data-start="991" data-end="999">Man gör:</p>
<ol data-start="1001" data-end="1067">
<li data-section-id="1lzbdos" data-start="1001" data-end="1034">Framåtberäkning (forward pass)</li>
<li data-section-id="skvcir" data-start="1035" data-end="1049">Beräkna fel</li>
<li data-section-id="1yhf5tt" data-start="1050" data-end="1067">Justera vikter</li>
</ol>
<p>Inlägget <a href="http://kiube.se/idea/?p=760">Första uppgift -steg 2</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">760</post-id>	</item>
		<item>
		<title>Första Uppgiften &#8211; Steg 1</title>
		<link>http://kiube.se/idea/?p=750</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Sun, 31 May 2026 08:17:28 +0000</pubDate>
				<category><![CDATA[Metod]]></category>
		<guid isPermaLink="false">https://kiube.se/idea/?p=750</guid>

					<description><![CDATA[<p>Hur bygger man ett eget program som simulerar ett enkelt neuralt nätverk. För att lära och förstå hur det fungerar. Både programatiskt och för att visualisera</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=750">Första Uppgiften &#8211; Steg 1</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p data-start="0" data-end="183">Det bästa sättet att förstå neurala nätverk är faktiskt att bygga ett själv från grunden utan några AI-bibliotek. Då ser man exakt hur matematik, lärande och viktjusteringar fungerar.</p>
<p data-start="185" data-end="234">Jag skulle rekommendera att bygga det i tre steg:</p>
<h2 data-section-id="163qg2s" data-start="236" data-end="263">Steg 1 – Ett enda neuron</h2>
<p data-start="265" data-end="305">Börja med ett neuron som tar två indata.</p>
<h3 data-section-id="kwcqbp" data-start="307" data-end="317">Modell</h3>
<pre><code class="language-bash" data-line="">Input1 ----\
            &gt;----[Neuron]---- Output
Input2 ----/</code></pre>
<p><strong>Matematiskt:</strong></p>
<pre><code class="language-bash" data-line="">Output = sigmoid(w1*x1 + w2*x2 + bias)</code></pre>
<p data-start="453" data-end="457">Där:</p>
<ul data-start="459" data-end="532">
<li data-section-id="envosb" data-start="459" data-end="470">x = input</li>
<li data-section-id="1s0iede" data-start="471" data-end="481">w = vikt</li>
<li data-section-id="3vkp43" data-start="482" data-end="500">bias = justering</li>
<li data-section-id="rue1t4" data-start="501" data-end="532">sigmoid = aktiveringsfunktion</li>
</ul>
<p data-start="534" data-end="542">Exempel:</p>
<pre>&lt;/&gt; Python

<code class="language-python" data-line="">import math

x1 = 0.5
x2 = 0.8

w1 = 0.2
w2 = 0.4
bias = 0.1

z = x1*w1 + x2*w2 + bias

output = 1/(1+math.exp(-z))

print(output)</code></pre>
<p>Inlägget <a href="http://kiube.se/idea/?p=750">Första Uppgiften &#8211; Steg 1</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">750</post-id>	</item>
		<item>
		<title>Beställning energiglas källare nya delen</title>
		<link>http://kiube.se/idea/?p=727</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Fri, 04 Mar 2022 12:56:54 +0000</pubDate>
				<category><![CDATA[17 Innerfönster]]></category>
		<guid isPermaLink="false">https://kiube.se/idea/?p=727</guid>

					<description><![CDATA[<p>Beställning via sms 4 st energiglas 4mm storlek: 903 x 320 mm</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=727">Beställning energiglas källare nya delen</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Beställning via sms</p>
<p>4 st energiglas 4mm</p>
<p style="padding-left: 40px;">storlek: 903 x 320 mm</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=727">Beställning energiglas källare nya delen</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">727</post-id>	</item>
		<item>
		<title>Beställning energiglas till källare gamla del</title>
		<link>http://kiube.se/idea/?p=724</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Fri, 04 Mar 2022 12:53:05 +0000</pubDate>
				<category><![CDATA[17 Innerfönster]]></category>
		<guid isPermaLink="false">https://kiube.se/idea/?p=724</guid>

					<description><![CDATA[<p>3 st Energiglas 4mm storlek: 752 x 450 mm</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=724">Beställning energiglas till källare gamla del</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>3 st Energiglas 4mm</h3>
<p style="padding-left: 40px;"><strong>storlek</strong>: 752 x 450 mm</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=724">Beställning energiglas till källare gamla del</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">724</post-id>	</item>
		<item>
		<title>Leverantör Energiglas</title>
		<link>http://kiube.se/idea/?p=715</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Fri, 04 Mar 2022 12:09:33 +0000</pubDate>
				<category><![CDATA[17 Innerfönster]]></category>
		<category><![CDATA[Leverantör]]></category>
		<guid isPermaLink="false">https://kiube.se/idea/?p=715</guid>

					<description><![CDATA[<p>M.T. Glasmästeri AB &#124; Alla bolag &#124; Christopher Nilsson mobil 070-605 81 99 Glasmästari  Hoppes väg 10, 23291 Arlöv  040-966710  mt-glas.se Org. nr. 5562362375</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=715">Leverantör Energiglas</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.mt-glas.se/">M.T. Glasmästeri AB</a> | <a href="https://www.allabolag.se/5562362375/befattningar">Alla bolag</a> | Christopher Nilsson mobil 070-605 81 99</p>
<h3>Glasmästari</h3>
<div class="location"><i class="fa fa-map-marker"></i> Hoppes väg 10, 23291 Arlöv</div>
<div><i class="fa fa-phone"></i> 040-966710</div>
<div><i class="fa fa-info-circle"></i> mt-glas.se</div>
<div><i class="fa">Org. nr.</i> 5562362375</div>
<p>Inlägget <a href="http://kiube.se/idea/?p=715">Leverantör Energiglas</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">715</post-id>	</item>
		<item>
		<title>Prototypverkstaden LUND</title>
		<link>http://kiube.se/idea/?p=588</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Thu, 06 Jun 2019 13:49:45 +0000</pubDate>
				<category><![CDATA[Resurser]]></category>
		<guid isPermaLink="false">http://kiube.se/idea/?p=588</guid>

					<description><![CDATA[<p>Vi arbetar för att underlätta för uppfinnare, konstruktörer, forskare samt entreprenörer genom att assistera vid samtliga förekommande arbeten som kan behövas.  Vi arbetar i ett brett spektra som går från ex. en skiss på en servett till solider och part-filer. Goto</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=588">Prototypverkstaden LUND</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Vi arbetar för att underlätta för uppfinnare, konstruktörer, forskare samt entreprenörer genom att assistera vid samtliga förekommande arbeten som kan behövas.  Vi arbetar i ett brett spektra som går från ex. en skiss på en servett till solider och part-filer.</p>
<p><a href="https://www.prototypverkstaden.com/medarbetare/">Goto</a></p>
<p>Inlägget <a href="http://kiube.se/idea/?p=588">Prototypverkstaden LUND</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">588</post-id>	</item>
		<item>
		<title>PCB Chart &#8211; China</title>
		<link>http://kiube.se/idea/?p=581</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Thu, 06 Jun 2019 13:42:35 +0000</pubDate>
				<category><![CDATA[Resurser]]></category>
		<category><![CDATA[PCB]]></category>
		<guid isPermaLink="false">http://kiube.se/idea/?p=581</guid>

					<description><![CDATA[<p>As one of leading printed circuit board manufacturers based in China, PCBCart has been offering international companies of all sizes with high-quality PCB prototype to production services at fair price for 14 years. GoTo</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=581">PCB Chart &#8211; China</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As one of leading printed circuit board manufacturers based in China, PCBCart has been offering international companies of all sizes with high-quality PCB prototype to production services at fair price for 14 years.</p>
<p><a href="https://www.pcbcart.com">GoTo</a></p>
<p>Inlägget <a href="http://kiube.se/idea/?p=581">PCB Chart &#8211; China</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">581</post-id>	</item>
		<item>
		<title>Multi-CB PCB</title>
		<link>http://kiube.se/idea/?p=578</link>
		
		<dc:creator><![CDATA[Lars Lindmark]]></dc:creator>
		<pubDate>Thu, 06 Jun 2019 13:41:14 +0000</pubDate>
				<category><![CDATA[Online Verktyg]]></category>
		<category><![CDATA[PCB]]></category>
		<guid isPermaLink="false">http://kiube.se/idea/?p=578</guid>

					<description><![CDATA[<p>Multi Circuit Boards is a leading European supplier of high-tech low-cost PCB / multilayer boards with up to 48 layers, from 1WD production time. GotO</p>
<p>Inlägget <a href="http://kiube.se/idea/?p=578">Multi-CB PCB</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Multi Circuit Boards is a leading European supplier of high-tech low-cost PCB / multilayer boards with<strong> up to 48 layers, from 1WD</strong> production time.</p>
<p><a href="https://www.multi-circuit-boards.eu/en/index.html?gclid=CjwKCAjw8-LnBRAyEiwA6eUMGvh25gLKhXx1_POxGrmzYdckzrkv0fZcu0k1IQ9bls7ULvqgOhqZkhoCBHEQAvD_BwE">GotO</a></p>
<p>Inlägget <a href="http://kiube.se/idea/?p=578">Multi-CB PCB</a> dök först upp på <a href="http://kiube.se/idea">Experiment Management</a>.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">578</post-id>	</item>
	</channel>
</rss>
