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:
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 |
Pipeline still running ... | |
PipelineRun is still running: Tasks Completed: 11 (Failed: 1, Cancelled 0), Incomplete: 1, Skipped: 42 | |
[get-pr-number : parse-pr-url] + echo -n 5939 | |
[get-pr-number : parse-pr-url] + tee /tekton/results/git_pr_number | |
[get-pr-number : parse-pr-url] 5939 | |
[acquire-lease : create-lease] + calculate_duration_in_seconds 90m | |
[acquire-lease : create-lease] + '[' m == m ']' | |
[acquire-lease : create-lease] + TOTAL_DURATION_IN_SECONDS=5400 | |
[acquire-lease : create-lease] + export TOTAL_DURATION_IN_SECONDS |
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Flutter Demo', |