Your cart is currently empty!
Length in inches:
Width in Inches:
This category is if I’m doing some personal project or something that feels more specifically personal than generic enough to be useful.
Are you having an issue with micro stutters in Phantasy Star Online 2: New Genesis? Is the issue that you are experiencing a bit of lag randomly? A random hang up in the game where things just freeze and go back to normal? At first maybe you thought it was your internet, but you realized that that wasn’t the issue. Afterwards you think it’s your graphics settings and your realize that that was not the issue? Maybe you are also hearing the system sound of a USB device connecting and disconnecting every now and than too? You look at device manager to see what’s happening if anything odd is disappearing and reappearing, but can’t notice anything specific. Sorry for the preamble, but just wanted to make sure we were in the same boat.
Here’s the fix. It’s in your power settings. In you advanced power settings find and disable USB Selective Suspend Setting. DONE. You should be good now. That was my fix. Not the internet or your graphics settings, some dumb setting that shouldn’t be on by default on a desktop.
Here’s a visual guide.
I bought this Android Bluetooth joypad as a gift for someone. It’s a nice little device for very cheap. It has many options to be used across different devices, but it does so through button combinations which can get annoying if your didn’t keep the manual. Just for the sake of my own sanity I’m typing them down here.
Modes:
X-Input (Xbox Controller) = Power + Right Shoulder Button
DS4 (PlayStation Controller) = Power + B
D-Input (Android Input) = Power + Left Shoulder Button
Apparently this can also be used with the Nintendo Switch too! To do so…
Nintendo Switch (Pairing Mode) = Power + Right Trigger
The 1+2 lights will start flashing and you will need to the pairing section or change grip order setting. Once there you will need to click on both triggers on the controller to pair it to the Switch. It’ll show up as a pro controller.
Hopefully this helps anyone else who will be looking for the different modes for pairing.
Another try with the form. This time around I have everything looking a little bit cleaner thanks to the section in the class Iโve taken recently. At least on the HTML side. This took longer than I liked because of some issues with the JavaScript, but to be fair I havenโt reached that far into the lessons yet. For future reference it seems if I ever want to work with decimals Iโll need to parseFloat and not parseInt.
Changed the input from a textbox to a selection box. The values for the fractions are decimals in the option tags. Not sure if there’s another way to work with fractions otherwise.
VSCode has Emmet integration, but I’m not sure how to make it spit out increasing number per option line. That would have been great to know. Side note to figure that out later.
Again if you stumble into this blog looking for a simple form to calculate things feel free to steal this and modify it yourself.
<html>
<head>
<form action="" style="background:#e5f2ff">
<script>
var linch, winch, flinch, fwinch, tinch, total, price, temp;
function screens() {
linch = parseFloat(document.getElementById("one").value);
winch = parseFloat(document.getElementById("two").value);
flinch = parseFloat(document.getElementById("fone").value);
fwinch = parseFloat(document.getElementById("ftwo").value);
if (linch && winch) {
temp = document.getElementById("price");
temp.style.display = "block";
linch = linch + flinch;
winch = winch + fwinch;
tinch = linch * winch;
total = tinch / 144;
price = total * 9.00;
document.getElementById("euroscreen").value = (Math.round(price * 100) / 100).toFixed(2);
price = total * 11.00;
document.getElementById("doubleeuroscreen").value = (Math.round(price * 100) / 100).toFixed(2);
price = total * 13.00;
document.getElementById("honycombsunshade").value = (Math.round(price * 100) / 100).toFixed(2);
price = total * 15.00;
document.getElementById("honycombeuroscreen").value = (Math.round(price * 100) / 100).toFixed(2);
price = total * 17.00;
document.getElementById("doublehonycomb").value = (Math.round(price * 100) / 100).toFixed(2);
}
}
</script>
</head>
<body>
<div>
<p>
<label for="one">Length in inches: </label>
<!---- <input type="number" min="8" max="84" id="one" placeholder="Enter a number" required> -->
<select id="one">
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="10">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
<option value="32">32</option>
<option value="33">33</option>
<option value="34">34</option>
<option value="35">35</option>
<option value="36">36</option>
<option value="37">37</option>
<option value="38">38</option>
<option value="39">39</option>
<option value="40">40</option>
<option value="41">41</option>
<option value="42">42</option>
<option value="43">43</option>
<option value="44">44</option>
<option value="45">45</option>
<option value="46">46</option>
<option value="47">47</option>
<option value="48">48</option>
<option value="49">49</option>
<option value="50">50</option>
<option value="51">51</option>
<option value="52">52</option>
<option value="53">53</option>
<option value="54">54</option>
<option value="55">55</option>
<option value="56">56</option>
<option value="57">57</option>
<option value="58">58</option>
<option value="59">59</option>
<option value="60">60</option>
<option value="61">61</option>
<option value="62">62</option>
<option value="63">63</option>
<option value="64">64</option>
<option value="65">65</option>
<option value="66">66</option>
<option value="67">67</option>
<option value="68">68</option>
<option value="69">69</option>
<option value="70">70</option>
<option value="71">71</option>
<option value="72">72</option>
<option value="73">73</option>
<option value="74">74</option>
<option value="75">75</option>
<option value="76">76</option>
<option value="77">77</option>
<option value="78">78</option>
<option value="79">79</option>
<option value="80">80</option>
<option value="81">81</option>
<option value="82">82</option>
<option value="83">83</option>
<option value="84">84</option>
<option value="85">85</option>
<option value="86">86</option>
</select>
<label for="fone">Fraction</label>
<select id="fone">
<option value="0">0</option>
<option value="0.016">1/16</option>
<option value="0.13">1/8</option>
<option value="0.019">3/16</option>
<option value="0.25">1/4</option>
<option value="0.31">5/16</option>
<option value="0.38">3/8</option>
<option value="0.44">7/16</option>
<option value="0.5">1/2</option>
<option value="0.56">9/16</option>
<option value="0.63">5/8</option>
<option value="0.69">11/16</option>
<option value="0.75">3/4</option>
<option value="0.81">13/16</option>
<option value="0.88">7/8</option>
<option value="0.94">15/16</option>
</Select>
</p>
<p>
<label for="two">Width in inches: </label>
<!-- <input type="number" min="8" max="84" id="two" placeholder="Enter a number" required> -->
<select id="two">
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
<option value="9">9</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="10">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
<option value="32">32</option>
<option value="33">33</option>
<option value="34">34</option>
<option value="35">35</option>
<option value="36">36</option>
<option value="37">37</option>
<option value="38">38</option>
<option value="39">39</option>
<option value="40">40</option>
<option value="41">41</option>
<option value="42">42</option>
<option value="43">43</option>
<option value="44">44</option>
<option value="45">45</option>
<option value="46">46</option>
<option value="47">47</option>
<option value="48">48</option>
<option value="49">49</option>
<option value="50">50</option>
<option value="51">51</option>
<option value="52">52</option>
<option value="53">53</option>
<option value="54">54</option>
<option value="55">55</option>
<option value="56">56</option>
<option value="57">57</option>
<option value="58">58</option>
<option value="59">59</option>
<option value="60">60</option>
<option value="61">61</option>
<option value="62">62</option>
<option value="63">63</option>
<option value="64">64</option>
<option value="65">65</option>
<option value="66">66</option>
<option value="67">67</option>
<option value="68">68</option>
<option value="69">69</option>
<option value="70">70</option>
<option value="71">71</option>
<option value="72">72</option>
<option value="73">73</option>
<option value="74">74</option>
<option value="75">75</option>
<option value="76">76</option>
<option value="77">77</option>
<option value="78">78</option>
<option value="79">79</option>
<option value="80">80</option>
<option value="81">81</option>
<option value="82">82</option>
<option value="83">83</option>
<option value="84">84</option>
<option value="85">85</option>
<option value="86">86</option>
</select>
<label for="ftwo">Fraction:</label>
<select id="ftwo">
<option value="0">0</option>
<option value="0.016">1/16</option>
<option value="0.13">1/8</option>
<option value="0.019">3/16</option>
<option value="0.25">1/4</option>
<option value="0.31">5/16</option>
<option value="0.38">3/8</option>
<option value="0.44">7/16</option>
<option value="0.5">1/2</option>
<option value="0.56">9/16</option>
<option value="0.63">5/8</option>
<option value="0.69">11/16</option>
<option value="0.75">3/4</option>
<option value="0.81">13/16</option>
<option value="0.88">7/8</option>
<option value="0.94">15/16</option>
</Select>
</p>
<p>
<button type="button" onclick="screens()">Screen Pricing</button>
</p>
<hr>
</div>
<div id="price" style="display:none;">
<p>
<label for="euroscreen">Euroscreen Price = $</label>
<input id="euroscreen" readonly>
</p>
<p>
<label for="doubleeuroscreen">Double Euroscreen Price = $</label>
<input id="doubleeuroscreen" type="number" step="0.01" readonly>
</p>
<p>
<label for="honycombsunshade">Honycomb Sunshade Price = $</label>
<input id="honycombsunshade" type="number" step="0.01" readonly>
</p>
<p>
<label for="honycombeuroscreen">Honycomb+Euroscreen Combo Price = $</label>
<input id="honycombeuroscreen" type="number" step="0.01" readonly>
</p>
<p>
<label for="doublehonycomb">Double Honycomb Price = $</label>
<input id="doublehonycomb" type="number" step="0.01" readonly>
</p>
</div>
</form>
</body>
</html>
The code below is supposed to show the prices for different products based on the Length and Width of a screen entered.
Length in inches:
Width in Inches:
I cannibalized some code and here’s the end result. If anyone ever needs something like this feel free to grab it and modify
<html>
<head>
<article>
<script>
var linch, winch, tinch, total, price, temp;
function screens() {
linch = parseInt(document.getElementById("one").value);
winch = parseInt(document.getElementById("two").value);
if (linch && winch) {
temp = document.getElementById("price");
temp.style.display = "block";
tinch = linch * winch;
total = tinch / 144;
price = total * 9;
document.getElementById("euroscreen").value = (Math.round(price * 100) / 100).toFixed(2);
price = total * 11;
document.getElementById("doubleeuroscreen").value = (Math.round(price * 100) / 100).toFixed(2);
price = total * 13;
document.getElementById("honycombsunshade").value = (Math.round(price * 100) / 100).toFixed(2);
price = total * 15;
document.getElementById("honycombeuroscreen").value = (Math.round(price * 100) / 100).toFixed(2);
price = total * 17;
document.getElementById("doublehonycomb").value = (Math.round(price * 100) / 100).toFixed(2);
}
}
</script>
</head>
<body>
<p id="input">Length in inches: <input id="one">
<br /><br />
Width in Inches: <input id="two">
</p>
<p><button onclick="screens()">Screen Pricing</button></p>
<p id="price" style="display:none;">
Euroscreen Price = <input id="euroscreen"><br /><br />
Double Euroscreen Price = <input id="doubleeuroscreen"><br /><br />
Honycomb Sunshade Price = <input id="honycombsunshade"><br /><br />
Honycomb+Euroscreen Combo Price = <input id="honycombeuroscreen"><br /><br />
Double Honycomb Price = <input id="doublehonycomb"><br /><br />
</article>
</body>
</html>
Update: I quite the class. Maybe I’ll take it up in the future.
If you’ve read the I’m a Stupid post than you might have correctly guessed I don’t want such a thing to happen again. So I started taking this Web Dev Boot Camp course my cousin casually mentioned to me in passing some time ago. I’m tired of being clever enough to know what a problem might be, but not enough to fix it. Everything is a surface level understanding with me and that has to stop.
The class is going to cover HTML, CSS, JavaScript, and a slew of other tools I can proudly add to my IT tool box. I’m hoping after this I’ll be a better than surface level nerd. I can’t fix problems beyond surface level. I mentioned that things breaking can be a good experience because you can learn from them, but if this happened to my bosses website that would be a painful ass lesson!
Was hoping I would be able to convince my sister to take the class with me, but I think she was intimidated by it. She could definitely do it though, she’s way smarter than me.
I am taking the class with my cousin though. That’ll do me real well when it comes to accountability. I tend to be bad at these self learning classes, so this time around I’m sure to finish it. He’s pretty bad at self learning too, so I’m sure it’ll do us both fantastic. We can carry this bridge together!
I’ll share the link to the class here. https://www.udemy.com/course/the-web-developer-bootcamp/
Hello! I screwed up my blog again. This would be third time. The second time around I wrote some articles I was happy with. Now that’s gone. This time around I’ll try and be wiser this time around and actual back up my articles.
Not sure what happened. Looks like an update to WordPress Core got corrupted and in trying to fix it I learned how to fix a different issue with plugins. That came in useful that same week, but haven’t found out how to fix that corrupted WordPress Core issue though.
The positive view is that the more I break this thing the more I learn and can help friends with their problems. The down side is I still break my own things and that’s hella’ annoying. All good though.