<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://looksmaxxing.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Robert</id>
	<title>Looksmaxxing Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://looksmaxxing.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Robert"/>
	<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/wiki/Special:Contributions/Robert"/>
	<updated>2026-09-23T23:13:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.46.0</generator>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=MediaWiki:Common.js&amp;diff=1119</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=MediaWiki:Common.js&amp;diff=1119"/>
		<updated>2026-09-23T19:04:14Z</updated>

		<summary type="html">&lt;p&gt;Robert: Use the Wingman logo, with permission from the copyright holder&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(function () {&lt;br /&gt;
  var icon = &amp;quot;https://looksmaxxing.wiki/images/b/b9/Wingman_mark.png&amp;quot;;&lt;br /&gt;
  var word = &amp;quot;https://looksmaxxing.wiki/images/3/30/Wingman_wordmark.png&amp;quot;;&lt;br /&gt;
  var fav = &amp;quot;https://looksmaxxing.wiki/images/3/32/Wingman_favicon.png&amp;quot;;&lt;br /&gt;
  var logo = &amp;quot;https://looksmaxxing.wiki/images/5/5f/Wingman_logo.png&amp;quot;;&lt;br /&gt;
  function apply() {&lt;br /&gt;
    document.querySelectorAll(&amp;quot;.mw-logo-icon&amp;quot;).forEach(function (img) {&lt;br /&gt;
      img.src = icon;&lt;br /&gt;
      img.removeAttribute(&amp;quot;srcset&amp;quot;);&lt;br /&gt;
      img.alt = &amp;quot;Wingman&amp;quot;;&lt;br /&gt;
      img.style.width = &amp;quot;40px&amp;quot;;&lt;br /&gt;
      img.style.height = &amp;quot;40px&amp;quot;;&lt;br /&gt;
      img.style.objectFit = &amp;quot;contain&amp;quot;;&lt;br /&gt;
      img.style.background = &amp;quot;#000&amp;quot;;&lt;br /&gt;
      img.style.borderRadius = &amp;quot;3px&amp;quot;;&lt;br /&gt;
    });&lt;br /&gt;
    document.querySelectorAll(&amp;quot;.mw-logo-wordmark&amp;quot;).forEach(function (el) {&lt;br /&gt;
      if (el.dataset.brand === &amp;quot;wingman&amp;quot;) return;&lt;br /&gt;
      el.dataset.brand = &amp;quot;wingman&amp;quot;;&lt;br /&gt;
      if (el.tagName === &amp;quot;IMG&amp;quot;) {&lt;br /&gt;
        el.src = word;&lt;br /&gt;
        el.removeAttribute(&amp;quot;srcset&amp;quot;);&lt;br /&gt;
        el.alt = &amp;quot;Wingman&amp;quot;;&lt;br /&gt;
        el.style.height = &amp;quot;28px&amp;quot;;&lt;br /&gt;
        el.style.background = &amp;quot;#000&amp;quot;;&lt;br /&gt;
        return;&lt;br /&gt;
      }&lt;br /&gt;
      el.textContent = &amp;quot;&amp;quot;;&lt;br /&gt;
      var im = document.createElement(&amp;quot;img&amp;quot;);&lt;br /&gt;
      im.src = word;&lt;br /&gt;
      im.alt = &amp;quot;Wingman&amp;quot;;&lt;br /&gt;
      im.style.height = &amp;quot;28px&amp;quot;;&lt;br /&gt;
      im.style.width = &amp;quot;auto&amp;quot;;&lt;br /&gt;
      im.style.verticalAlign = &amp;quot;middle&amp;quot;;&lt;br /&gt;
      im.style.background = &amp;quot;#000&amp;quot;;&lt;br /&gt;
      el.appendChild(im);&lt;br /&gt;
    });&lt;br /&gt;
    var links = document.querySelectorAll(&amp;quot;link[rel=&#039;icon&#039;], link[rel=&#039;shortcut icon&#039;]&amp;quot;);&lt;br /&gt;
    if (!links.length) {&lt;br /&gt;
      var created = document.createElement(&amp;quot;link&amp;quot;);&lt;br /&gt;
      created.rel = &amp;quot;icon&amp;quot;;&lt;br /&gt;
      document.head.appendChild(created);&lt;br /&gt;
      links = [created];&lt;br /&gt;
    }&lt;br /&gt;
    Array.prototype.forEach.call(links, function (l) {&lt;br /&gt;
      l.href = fav;&lt;br /&gt;
      l.type = &amp;quot;image/png&amp;quot;;&lt;br /&gt;
    });&lt;br /&gt;
    if (mw.config.get(&amp;quot;wgPageName&amp;quot;) === &amp;quot;Wingman&amp;quot;) {&lt;br /&gt;
      var box = document.querySelector(&amp;quot;.infobox-image&amp;quot;);&lt;br /&gt;
      if (box &amp;amp;&amp;amp; !box.querySelector(&amp;quot;img&amp;quot;)) {&lt;br /&gt;
        var shot = document.createElement(&amp;quot;img&amp;quot;);&lt;br /&gt;
        shot.src = logo;&lt;br /&gt;
        shot.alt = &amp;quot;Wingman logo&amp;quot;;&lt;br /&gt;
        shot.width = 220;&lt;br /&gt;
        box.insertBefore(shot, box.firstChild);&lt;br /&gt;
        box.querySelectorAll(&amp;quot;a.new&amp;quot;).forEach(function (a) { a.style.display = &amp;quot;none&amp;quot;; });&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  if (document.readyState === &amp;quot;loading&amp;quot;) document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, apply);&lt;br /&gt;
  else apply();&lt;br /&gt;
})();&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=File:Wingman_favicon.png&amp;diff=1118</id>
		<title>File:Wingman favicon.png</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=File:Wingman_favicon.png&amp;diff=1118"/>
		<updated>2026-09-23T19:03:55Z</updated>

		<summary type="html">&lt;p&gt;Robert: Wingman logo. The copyright holder created this mark and grants looksmaxxing.wiki and seduction.wiki permission to display it as the site logo, favicon, and on the Wingman article. Not a free license for other uses.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wingman logo. The copyright holder created this mark and grants looksmaxxing.wiki and seduction.wiki permission to display it as the site logo, favicon, and on the Wingman article. Not a free license for other uses.&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=File:Wingman_wordmark.png&amp;diff=1117</id>
		<title>File:Wingman wordmark.png</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=File:Wingman_wordmark.png&amp;diff=1117"/>
		<updated>2026-09-23T19:03:54Z</updated>

		<summary type="html">&lt;p&gt;Robert: Wingman logo. The copyright holder created this mark and grants looksmaxxing.wiki and seduction.wiki permission to display it as the site logo, favicon, and on the Wingman article. Not a free license for other uses.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wingman logo. The copyright holder created this mark and grants looksmaxxing.wiki and seduction.wiki permission to display it as the site logo, favicon, and on the Wingman article. Not a free license for other uses.&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=File:Wingman_mark.png&amp;diff=1116</id>
		<title>File:Wingman mark.png</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=File:Wingman_mark.png&amp;diff=1116"/>
		<updated>2026-09-23T19:03:53Z</updated>

		<summary type="html">&lt;p&gt;Robert: Wingman logo. The copyright holder created this mark and grants looksmaxxing.wiki and seduction.wiki permission to display it as the site logo, favicon, and on the Wingman article. Not a free license for other uses.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wingman logo. The copyright holder created this mark and grants looksmaxxing.wiki and seduction.wiki permission to display it as the site logo, favicon, and on the Wingman article. Not a free license for other uses.&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=File:Wingman_logo.png&amp;diff=1115</id>
		<title>File:Wingman logo.png</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=File:Wingman_logo.png&amp;diff=1115"/>
		<updated>2026-09-23T19:03:52Z</updated>

		<summary type="html">&lt;p&gt;Robert: Wingman logo. The copyright holder created this mark and grants looksmaxxing.wiki and seduction.wiki permission to display it as the site logo, favicon, and on the Wingman article. Not a free license for other uses.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wingman logo. The copyright holder created this mark and grants looksmaxxing.wiki and seduction.wiki permission to display it as the site logo, favicon, and on the Wingman article. Not a free license for other uses.&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=File:Wingman_home_screen.jpg&amp;diff=1110</id>
		<title>File:Wingman home screen.jpg</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=File:Wingman_home_screen.jpg&amp;diff=1110"/>
		<updated>2026-09-23T18:57:56Z</updated>

		<summary type="html">&lt;p&gt;Robert: Wingman home screen, from wingman.live. Used on the Wingman article.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wingman home screen, from wingman.live. Used on the Wingman article.&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=MediaWiki:Common.js&amp;diff=1109</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=MediaWiki:Common.js&amp;diff=1109"/>
		<updated>2026-09-22T06:32:31Z</updated>

		<summary type="html">&lt;p&gt;Robert: Custom emblem, wordmark, and favicon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(function () {&lt;br /&gt;
  var icon = &amp;quot;https://looksmaxxing.wiki/images/0/02/Looksmaxxing-icon.png&amp;quot;;&lt;br /&gt;
  var word = &amp;quot;https://looksmaxxing.wiki/images/d/d9/Looksmaxxing-wordmark.png&amp;quot;;&lt;br /&gt;
  var fav = &amp;quot;https://looksmaxxing.wiki/images/f/fb/Looksmaxxing-favicon.png&amp;quot;;&lt;br /&gt;
  function apply() {&lt;br /&gt;
    document.querySelectorAll(&amp;quot;.mw-logo-icon&amp;quot;).forEach(function (img) {&lt;br /&gt;
      img.src = icon;&lt;br /&gt;
      img.removeAttribute(&amp;quot;srcset&amp;quot;);&lt;br /&gt;
      img.alt = &amp;quot;Looksmaxxing Wiki&amp;quot;;&lt;br /&gt;
      img.style.width = &amp;quot;40px&amp;quot;;&lt;br /&gt;
      img.style.height = &amp;quot;40px&amp;quot;;&lt;br /&gt;
      img.style.objectFit = &amp;quot;cover&amp;quot;;&lt;br /&gt;
      img.style.borderRadius = &amp;quot;3px&amp;quot;;&lt;br /&gt;
    });&lt;br /&gt;
    document.querySelectorAll(&amp;quot;.mw-logo-wordmark&amp;quot;).forEach(function (el) {&lt;br /&gt;
      if (el.dataset.brand) return;&lt;br /&gt;
      el.dataset.brand = &amp;quot;1&amp;quot;;&lt;br /&gt;
      if (el.tagName === &amp;quot;IMG&amp;quot;) {&lt;br /&gt;
        el.src = word;&lt;br /&gt;
        el.removeAttribute(&amp;quot;srcset&amp;quot;);&lt;br /&gt;
        el.alt = &amp;quot;Looksmaxxing Wiki&amp;quot;;&lt;br /&gt;
        el.style.height = &amp;quot;26px&amp;quot;;&lt;br /&gt;
        return;&lt;br /&gt;
      }&lt;br /&gt;
      el.textContent = &amp;quot;&amp;quot;;&lt;br /&gt;
      var im = document.createElement(&amp;quot;img&amp;quot;);&lt;br /&gt;
      im.src = word;&lt;br /&gt;
      im.alt = &amp;quot;Looksmaxxing Wiki&amp;quot;;&lt;br /&gt;
      im.style.height = &amp;quot;26px&amp;quot;;&lt;br /&gt;
      im.style.width = &amp;quot;auto&amp;quot;;&lt;br /&gt;
      im.style.verticalAlign = &amp;quot;middle&amp;quot;;&lt;br /&gt;
      el.appendChild(im);&lt;br /&gt;
    });&lt;br /&gt;
    var links = document.querySelectorAll(&amp;quot;link[rel=&#039;icon&#039;], link[rel=&#039;shortcut icon&#039;]&amp;quot;);&lt;br /&gt;
    if (!links.length) {&lt;br /&gt;
      var created = document.createElement(&amp;quot;link&amp;quot;);&lt;br /&gt;
      created.rel = &amp;quot;icon&amp;quot;;&lt;br /&gt;
      document.head.appendChild(created);&lt;br /&gt;
      links = [created];&lt;br /&gt;
    }&lt;br /&gt;
    Array.prototype.forEach.call(links, function (l) {&lt;br /&gt;
      l.href = fav;&lt;br /&gt;
      l.type = &amp;quot;image/png&amp;quot;;&lt;br /&gt;
    });&lt;br /&gt;
  }&lt;br /&gt;
  if (document.readyState === &amp;quot;loading&amp;quot;) document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, apply);&lt;br /&gt;
  else apply();&lt;br /&gt;
})();&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=File:Looksmaxxing-wordmark.png&amp;diff=1108</id>
		<title>File:Looksmaxxing-wordmark.png</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=File:Looksmaxxing-wordmark.png&amp;diff=1108"/>
		<updated>2026-09-22T06:31:59Z</updated>

		<summary type="html">&lt;p&gt;Robert: Brass wordmark, transparent.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Brass wordmark, transparent.&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=File:Looksmaxxing-favicon.png&amp;diff=1107</id>
		<title>File:Looksmaxxing-favicon.png</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=File:Looksmaxxing-favicon.png&amp;diff=1107"/>
		<updated>2026-09-22T06:31:58Z</updated>

		<summary type="html">&lt;p&gt;Robert: 32px favicon crop of the charcoal emblem.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;32px favicon crop of the charcoal emblem.&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
	<entry>
		<id>https://looksmaxxing.wiki/index.php?title=File:Looksmaxxing-icon.png&amp;diff=1106</id>
		<title>File:Looksmaxxing-icon.png</title>
		<link rel="alternate" type="text/html" href="https://looksmaxxing.wiki/index.php?title=File:Looksmaxxing-icon.png&amp;diff=1106"/>
		<updated>2026-09-22T06:31:57Z</updated>

		<summary type="html">&lt;p&gt;Robert: Charcoal jaw-and-eye emblem. Header icon. Not a portrait of a named person.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Charcoal jaw-and-eye emblem. Header icon. Not a portrait of a named person.&lt;/div&gt;</summary>
		<author><name>Robert</name></author>
	</entry>
</feed>