Before we can get into this one, we need to cover one fundamental question:
A logarithm answers a very basic question:
"To what power must we raise a certain number (called the base) to get another number?"
In mathematical terms, if we have:
Instance Methods | |
# - Create a Computer class. | |
# - Create method: | |
# - turn_on that prints Computer has Turned On | |
# - turn_off that prints Computer has Turned Off | |
# - Create an instance of the Computer class then call each method. | |
class Computer: |
2025-02-11 20:33:33,748 1484 [DEBUG] - XmlConfiguration is now operational | |
2025-02-11 20:33:33,892 1484 [DEBUG] - Adding new type 'CygwinService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 20:33:33,892 1484 [DEBUG] - Adding new type 'CygwinService' for type 'IInstallSourceRunner' from assembly 'choco' | |
2025-02-11 20:33:33,892 1484 [DEBUG] - Adding new type 'PythonService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 20:33:33,905 1484 [DEBUG] - Adding new type 'PythonService' for type 'IListSourceRunner' from assembly 'choco' | |
2025-02-11 20:33:33,905 1484 [DEBUG] - Adding new type 'PythonService' for type 'IInstallSourceRunner' from assembly 'choco' | |
2025-02-11 20:33:33,905 1484 [DEBUG] - Adding new type 'PythonService' for type 'IUninstallSourceRunner' from assembly 'choco' | |
2025-02-11 20:33:33,925 1484 [DEBUG] - Adding new type 'RubyGemsService' for type 'IAlternativeSourceRunner' from assembly 'choco' | |
2025-02-11 20:33:33,935 1484 [DEBUG] - Adding new typ |
edgarmartinez@freakylance src % cat webpack.mix.js | |
const mix = require("laravel-mix"); | |
/* | |
|-------------------------------------------------------------------------- | |
| Mix Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Mix provides a clean, fluent API for defining some Webpack build steps | |
| for your Laravel applications. By default, we are compiling the CSS |
<?xml version="1.0" encoding="utf-8"?> | |
<fileSnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<files> | |
<file path="C:\ProgramData\chocolatey\lib\reveye-chrome\reveye-chrome.nupkg" checksum="B75D1E6A8D20AF1DFCD9E6E5120916EE" /> | |
<file path="C:\ProgramData\chocolatey\lib\reveye-chrome\reveye-chrome.nuspec" checksum="F33ED103F7841B3AB709DC97C2DEC1DC" /> | |
<file path="C:\ProgramData\chocolatey\lib\reveye-chrome\tools\ChocolateyInstall.ps1" checksum="2D8A4E7976D9E0E786A15E537E32CF59" /> | |
<file path="C:\ProgramData\chocolatey\lib\reveye-chrome\tools\ChocolateyUninstall.ps1" checksum="EA276EFC1DC5F7524063131E9D21E266" /> | |
</files> | |
</fileSnapshot> |
# in logic notation | |
# a -> b is "if a then b" | |
# so in programming: | |
a = false | |
b = true | |
if a | |
puts "a true" |
Log uploaded on Tuesday, February 11, 2025, 2:31:23 PM | |
Loaded mods: | |
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Royalty(Ludeon.RimWorld.Royalty): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
Camera+(brrainz.cameraplus)[mv:3.2.0.0]: CameraPlus(3.2.0), CrossPromotion(1.1.2) | |
EdB Prepare Carefully(EdB.PrepareCarefully)[mv:1.5.12]: EdBPrepareCarefully(av:1.1.1,fv:1.5.12) | |
RimSaves(aRandomKiwi.RimSaves): RimSaves(2024.0.1.20) |
let scale = 2 | |
litecanvas({ | |
width: 640, | |
height: 480, | |
autoscale: false, | |
// fps: 30 | |
}) | |
// Art Code: 8x8/# # 6 6 6 6 # # # # 6 6 6 6 # # # # 6 6 6 6 # # 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 # # 6 6 6 6 6 6 # # 6 6 6 |
rails new
first to generate all of the boilerplate files necessary.rails new .
--css tailwind
as an option on the rails new
call to do this automatically.rails new
will do this automatically but take care if you write any custom SQL that it is SQLite compatible.rails new myapp --devcontainer
but only do this if requested directly.function fish_greeting | |
echo (set_color red)(string match -r '\d\d:\d\d:\d\d' (uptime))(set_color normal)'; booted at' (set_color yellow)(string match -r '\d\d:\d\d:\d\d' (uptime -s))(set_color normal)'; up' (set_color green)(string replace -r 'up ' '' (uptime -p)) | |
end |