New pages

From Freephile Wiki
New pages
Hide bots | Show redirects
(newest | oldest) View (newer 10 | ) (20 | 50 | 100 | 250 | 500)

18 February 2025

  • 14:5014:50, 18 February 2025 Chocolatey (hist | edit) [575 bytes] Admin (talk | contribs) (Created page with "Chocolately is the package manager for Windows. It works like any other package manager that you're familiar with: apt, yum, dnf etc<ref>https://chocolatey.org/how-chocolatey-works</ref>. And, there's an Ansible Collection for Chocolatey<ref>https://docs.ansible.com/ansible/latest/collections/chocolatey/chocolatey/win_chocolatey_module.html</ref> it meaning that you can script your automation playbooks just like any other package manager depending on the target platform...") Tag: Visual edit

14 February 2025

  • 14:5014:50, 14 February 2025 Test doubles (hist | edit) [9,610 bytes] Admin (talk | contribs) (Created page with " A '''wp:Test double''' is any object that stands in for a real dependency in automated testing. Usually in PHPUnit, we make test doubles for other classes, but you can also double PHP native functions or closures. There are 5 types of Test doubles <ul> <li> Dummy - "A dummy argument" - used as a placeholder when an argument needs to be passed in. <li> Stub - Provides fake or 'canned' data to the System Under Test (<abbr title="System Under Test is the class tha...") Tag: Visual edit: Switched

13 February 2025

10 February 2025

4 February 2025

  • 11:5711:57, 4 February 2025 Terraform (hist | edit) [1,737 bytes] Admin (talk | contribs) (Created page with "Terraform <blockquote>Terraform is an infrastructure-as-code software tool created by HashiCorp. Users define and provide data center infrastructure using a declarative configuration language known as HashiCorp Configuration Language (HCL), or optionally JSON.</blockquote> Although Terraform is the dominant leader in the space (citation needed), there has been some general community forming behind the [https://opentofu.org/ OpenTofu] project...")

31 January 2025

30 January 2025

  • 15:4015:40, 30 January 2025 JavaScript/hacks (hist | edit) [2,608 bytes] Admin (talk | contribs) (Created page with "A collection of little JavaScript hacks. == Pull headings out of a page == <syntaxhighlight lang="javascript">Array.from(document.getElementsByTagName("h1")).forEach(function (item) { console.log(item.textContent); });</syntaxhighlight>Using the browser's developer console, you can pop this one-liner in to see the list of '''headings''' in your web page. * <code>document.getElementsByTagName("h1")</code> returns an [https://developer.mozilla.org/en-US/docs/Web/API/HTML...") Tag: Visual edit
(newest | oldest) View (newer 10 | ) (20 | 50 | 100 | 250 | 500)