### EVEMarketer API GET Call Examples Source: https://wiki.eveuniversity.org/EVE_API_Guide/API_access_to_market_data Examples demonstrating various GET request constructions for the EVEMarketer API, including single/multiple item IDs, alternative ID formats, system/region limits, and JSON format output. ```APIDOC https://api.evemarketer.com/ec/marketstat?typeid=215 ``` ```APIDOC https://api.evemarketer.com/ec/marketstat?typeid=215,216 ``` ```APIDOC https://api.evemarketer.com/ec/marketstat?typeid=215&typeid=216 ``` ```APIDOC https://api.evemarketer.com/ec/marketstat?typeid=215&usesystem=30000142 ``` ```APIDOC https://api.evemarketer.com/ec/marketstat?typeid=215®ionlimit=10000068 ``` ```APIDOC https://api.evemarketer.com/ec/marketstat/json?typeid=215 ``` -------------------------------- ### Example of Adding 'Guides' Category Source: https://wiki.eveuniversity.org/EVE_API_Guide/User_talk:Abulle An example showing how the 'Guides' category is added to an article, illustrating the practical application of category tagging for content organization. ```Wiki Markup [[Category:Guides]] ``` -------------------------------- ### Example Intra-Wiki Link with Custom Text Source: https://wiki.eveuniversity.org/EVE_API_Guide/Wiki_How_To_Guide Demonstrates how to create an intra-wiki link to 'Main Page' with 'Example' as the displayed text. ```Wiki Markup [[Main Page|Example]] ``` -------------------------------- ### MediaWiki API Examples: Help Module Queries Source: https://wiki.eveuniversity.org/EVE_API_Guide/Special:ApiHelp Examples demonstrating how to query the MediaWiki API for help documentation. One example retrieves help for the main module, while another retrieves all help documentation on a single page using the `recursivesubmodules` parameter. ```APIDOC Help for the main module: api.php?action=help All help in one page: api.php?action=help&recursivesubmodules=1 ``` -------------------------------- ### Format Examples with MediaWiki Template Source: https://wiki.eveuniversity.org/EVE_API_Guide/Templates The `Example` template makes it easier to explain complicated concepts by visually setting examples off from the rest of the article text. This improves readability and comprehension. ```MediaWiki Template {{Example}} ``` -------------------------------- ### Complete Wiki Page Housekeeping Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/UniWiki:Mission_formatting_guidelines A comprehensive example combining basic navigational templates, TOC suppression, NPC table CSS, and category assignment. This snippet demonstrates a typical setup for a new wiki page, ensuring proper structure, navigation, and styling. ```Wiki Markup {{MissionLinks}} __NOTOC__ {{NPCTableCSS}} {{Missionrelated}} [[Category:Security missions]] ``` -------------------------------- ### MediaWiki API Call Examples: Help Module Source: https://wiki.eveuniversity.org/EVE_API_Guide/api Provides examples for retrieving help documentation from the MediaWiki API, demonstrating how to get help for the main module and all help in one page. ```APIDOC Help for the main module: api.php?action=help All help in one page: api.php?action=help&recursivesubmodules=1 ``` -------------------------------- ### Link to Specific Wiki Page Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/Wiki_How_To_Guide Example of linking to a specific page, 'Main Page', within the wiki. ```Wiki Markup [[Main Page]] ``` -------------------------------- ### Example Intra-wiki Link with Custom Text Source: https://wiki.eveuniversity.org/EVE_API_Guide/UniWiki:Editing_Guide A practical example demonstrating how to link to the 'Main Page' while displaying 'Example' as the clickable text. This showcases the use of the pipe character for custom link descriptions. ```Wiki Markup [[Main Page|Example]] ``` -------------------------------- ### Create Wiki Table Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/Wiki_How_To_Guide Full example demonstrating the creation of a structured table with a caption, headers, and multiple data rows using wiki markup. It includes the 'wikitable' class for default styling. ```Wiki Markup {| class="wikitable" |+ Caption text |- ! Header text 1 !! Header text 2 !! Header text 3 |- | Example 1 || Example 2 || Example 3 |- | Example 4 || Example 5 || Example 6 |- | Example 7 || Example 8 || Example 9 |} ``` -------------------------------- ### Create Wiki Table Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/UniWiki:Editing_Guide Provides a complete, runnable example demonstrating how to create a structured table with a caption, header row, and multiple data rows using wiki markup. This snippet showcases the practical application of the table syntax elements. ```Wiki Markup {| class="wikitable" |+ Caption text |- ! Header text 1 !! Header text 2 !! Header text 3 |- | Example 1 || Example 2 || Example 3 |- | Example 4 || Example 5 || Example 6 |- | Example 7 || Example 8 || Example 9 |} ``` -------------------------------- ### Basic Template:Example Usage with Wiki Formatting Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Example Demonstrates the basic usage of the `Example` template, including how to incorporate wiki formatting like italics and links within the content. ```MediaWiki Template {{Example|An example to ''illustrate'' my article with a link to the [[Venture]].}} ``` -------------------------------- ### EVEMarketer API GET Call Basic Form and Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/API_access_to_market_data Defines the fundamental URL structure for constructing GET requests to the EVEMarketer API, allowing specification of item IDs and optional region or system limits, along with a concrete example. ```APIDOC https://api.evemarketer.com/ec/marketstat?typeid=<®ionlimit=|&usesystem=> ``` ```APIDOC https://api.evemarketer.com/ec/marketstat?typeid=215 ``` -------------------------------- ### Automated EVE Online Portable Setup Cleanup Script Source: https://wiki.eveuniversity.org/EVE_API_Guide/Creating_a_portable_EVE_Client This batch script automates the process of moving EVE Online user data (Documents and Local AppData) from the system drive to the portable drive during the initial setup. After copying, it deletes the original folders from the system, ensuring a clean portable installation. This script is intended for users familiar with XCOPY and RD commands. ```Batch xcopy /E "%userprofile%\Documents\EVE" "Documents\EVE" /Y xcopy /E "%userprofile%\AppData\Local\CCP" "Local\CCP" /Y rd /S /Q "%userprofile%\Documents\EVE" rd /S /Q "%userprofile%\AppData\Local\CCP" ``` -------------------------------- ### MediaWiki Template Usage Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Documentation/preload A practical example demonstrating how to use the template with placeholder parameters, including comments for guidance. ```MediaWiki Template {{templatename|foo1|foo2=}} ``` -------------------------------- ### Calculate Total CPU Cost for Planetary Installation Source: https://wiki.eveuniversity.org/EVE_API_Guide/PI Formula to calculate the total CPU cost for a planetary installation. 'r' is the planet radius, 'n' is the number of started links, and 'k' is the ratio of total link length compared to minimum length (k = ∑link.length / ml). ```APIDOC c(r,n,k) = 15 * n + 0.002401716 * r * k ``` -------------------------------- ### Template:Sk Wiki Template Usage Examples Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Sk/doc Practical examples demonstrating various ways to use the `Template:Sk` Wiki template, showcasing different parameter combinations and their resulting output. ```Wiki Markup {{sk|Mass Production}} ``` ```Wiki Markup {{sk|Industry|IV|icon=yes}} ``` ```Wiki Markup {{sk|Reprocessing Efficiency|price=yes|mult=yes}} ``` ```Wiki Markup {{sk|Afterburner|mult=yes}} ``` ```Wiki Markup {{sk|Gallente Titan|IV|mult=yes|price=no}} ``` ```Wiki Markup {{sk|Wabbit-Hunting}} ``` -------------------------------- ### Calculate Total Powergrid Cost for Planetary Installation Source: https://wiki.eveuniversity.org/EVE_API_Guide/PI Formula to calculate the total Powergrid (PG) cost for a planetary installation. 'r' is the planet radius, 'n' is the number of started links, and 'k' is the ratio of total link length compared to minimum length (k = ∑link.length / ml). ```APIDOC p(r,n,k) = 10 * n + 0.001801287 * r * k ``` -------------------------------- ### MediaWiki Template: Infobox Mentors Syntax Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Infobox_Mentors/doc Demonstrates the basic syntax for invoking the Infobox Mentors template, showing all available parameters and their placeholders. ```MediaWiki Template {{Infobox Mentors | mentortype = | mentor name = | mentor page name = | image = | imagecorp = | imagealliance = | time = | skillpoints = | skillset = | playtimesed = | playtimesday = | playtimesend = | playtimesmon = | playtimestue = | playtimeswed = | playtimesthu = | playtimesfri = | playtimessat = | playtimessun = | biography = | primary community = | contact = | language = }} ``` -------------------------------- ### Discord Class Announcement Pings Source: https://wiki.eveuniversity.org/EVE_API_Guide/Scheduling_a_class Examples of Discord pings used in the #ping-class channel to announce upcoming classes and their start times. These pings help ensure students are aware of class schedules. ```Discord @everyone x hour preparing for Intro to XYZ ``` ```Discord @everyone Intro to XYZ starting now/in 5 minutes ``` -------------------------------- ### Template:Example Syntax and Parameters Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Example Defines the syntax for using the `Example` template, including its parameters `content` and `width`, their types, and behavior. It explains how to handle special characters like the equals sign within the content parameter. ```APIDOC {{Example|**|**} Parameters : content : The note text inside the box. All wiki-formatting (bold, text color, links, etc) work as normal. If the text you would like to use include an equals sign (`=`), you need to explicitly declare your text as a numbered parameter (i.e. put `1=` before your text), otherwise the template will display nothing. width : Sets the width of the box. It's recommended to set this as a percentage (of the paragraph width), so `50%` will produce a text box half as wide as the surrounding paragraph. If omitted, the text box will be as wide as the surrounding paragraph. When width is set to less than `100%`, the box will be centered. ``` -------------------------------- ### GNU GPL Interactive Program Startup Notice Source: https://wiki.eveuniversity.org/EVE_API_Guide/Special:Version/License/Gadgets Example of a short notice to be displayed by an interactive program when it starts, informing users about the program's warranty status and redistribution conditions under the GNU GPL. ```Plaintext Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. ``` -------------------------------- ### EVE Online Fleet Advertisement (Specific Roles Needed) Source: https://wiki.eveuniversity.org/EVE_API_Guide/EUNIC:_Forming_a_fleet Example message for advertising a forming Vanguard fleet, specifying needed roles like Offgrid Booster (OGB) and a picket to start running. ```Plain Text Vanguard (forming): X up with your role and fit when ready in system! Need OGB and 1 picket to start running! ``` -------------------------------- ### Impel: EUNI Wiki Example Fit Source: https://wiki.eveuniversity.org/EVE_API_Guide/Creating_an_Alt_Hauler This EFT fit provides an example setup for the Impel freighter, focusing on cloaking and nullification for safe travel. It includes a compact interdiction nullifier, improved cloaking device, and various defensive modules. Utility items like a mobile depot and core probe launcher are included for emergency situations in wormholes. ```EFT [Impel, EUNI Wiki Example Fit] Compact Interdiction Nullifier Improved Cloaking Device II 50MN Y-T8 Compact Microwarpdrive 10MN Y-S8 Compact Afterburner Damage Control II Inertial Stabilizers II Thermal Coating II Thermal Coating II EM Coating II Reactive Armor Hardener Medium Trimark Armor Pump II Medium Trimark Armor Pump II Core Probe Launcher I Core Scanner Probe I x16 Expanded Cargohold II Mobile Depot ``` -------------------------------- ### Mastodon: EUNI Wiki Example Fit Source: https://wiki.eveuniversity.org/EVE_API_Guide/Creating_an_Alt_Hauler This EFT fit provides an example setup for the Mastodon freighter, emphasizing shield tanking and cloaking for secure transport. It features a compact interdiction nullifier, improved cloaking device, and multiple large shield extenders and hardeners. Utility items like a mobile depot and core probe launcher are included for emergency situations in wormholes. ```EFT [Mastodon, EUNI Wiki Example Fit] Compact Interdiction Nullifier Improved Cloaking Device II 50MN Y-T8 Compact Microwarpdrive Caldari Navy Large Shield Extender Caldari Navy Large Shield Extender Multispectrum Shield Hardener II Kinetic Shield Amplifier II Reactor Control Unit II Damage Control II Inertial Stabilizers II Mark I Compact Reactor Control Unit Medium Core Defense Field Extender II Medium Core Defense Field Extender II Core Probe Launcher I Core Scanner Probe I x16 Expanded Cargohold II x3 Mobile Depot ``` -------------------------------- ### GNU GPL Interactive Program Startup Notice Source: https://wiki.eveuniversity.org/EVE_API_Guide/Special:Version/License/Interwiki Example of a short notice to be output by an interactive program when it starts, informing users about its free software status, lack of warranty, and redistribution conditions, with hypothetical commands to show full details. ```Text Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. ``` -------------------------------- ### MediaWiki Template Syntax for Wiki Project Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Wiki_project/doc Shows the basic syntax for using the Wiki project template, including all available parameters. ```MediaWiki Template {{Wiki project |name= |proposer = ~~~~ |problem= |description= |editor= |sandbox= |progress notes= |status= }} ``` -------------------------------- ### Bypass EVE Launcher Administrator Check via Binary Editing Source: https://wiki.eveuniversity.org/EVE_API_Guide/Installing_EVE_on_Linux Instructions for modifying the Squirrel installer's Setup file using a binary editor to reverse the Administrator privileges check, allowing the launcher to run without elevated permissions under Wine/Proton. ```Binary Editing Edit the binary at address 00407436. Replace content with: "b8 01 00 00 00" ``` -------------------------------- ### EVE University Wiki Template: PVEBoxTooltip Parameters Source: https://wiki.eveuniversity.org/EVE_API_Guide/User:Luxxianna_Seraph/Sandbox/MissionHoverBox/PVEBoxTooltip Documentation for the PVEBoxTooltip template, detailing its required and optional parameters. This template should not be used directly but is documented here for reference. ```APIDOC Template: PVEBoxTooltip Description: Do not use this Template Directly. Instead use {{PVE}} Dependencies: CSS {{RatResistance}} {{RatDamage}} See Also: {{PVEArticle}}, {{PVEBox}} Used by: {{PVE}} Parameters: Name (Required): Name of the Site TypeDetail (Required): For Missions, the level of the mission. For Anomaly Sites, the Rating and Level `Rating 4 Level 2` Location (Required): The location of the site. Low, Null, Hi Sec, Low Null (Not specific - just uses this value directly) AccelerationGate (Optional): Leave blank if there is no AccelGate at this site. Put anything (Y, True, X, any value) here if there is one TotalExpFrigates (Optional): Total number of Frigates TotalExpDestroyers (Optional): # Destroyers TotalExpCruisers (Optional): # Cruisers TotalExpBattlecruisers (Optional): # Battlecruisers TotalExpCapitals (Optional): # Capitals TotalExpSentries (Optional): # Sentries NumberOfWaves (Optional): The number of waves that will spawn after triggers are destroyed | reached. Leave blank if everything starts on grid Number of Rooms (Optional): The number of rooms beyond the initial acceleration gate. Leave blank if there is no acceleration gate. If AccelerationGate is blank this property is ignored. Faction (Optional): The main faction of ships that will be faced in this site. Has several common varieties of names, ie: Angel, Angel Cartel, Angels. ``` -------------------------------- ### Example Image Inclusion Source: https://wiki.eveuniversity.org/EVE_API_Guide/Wiki_How_To_Guide Example of embedding a specific image file 'wiki1.png' into a wiki article. ```Wiki Markup [[File:wiki1.png]] ``` -------------------------------- ### Run Qt Installer Source: https://wiki.eveuniversity.org/EVE_API_Guide/Linux Executes the Qt installer to install necessary Qt dependencies for the EVE launcher, which can resolve issues where the launcher window opens but displays nothing. ```Bash ./qt-opensource-linux-x64-5.7.0.run ``` -------------------------------- ### Example Usage of Wiki Project Template Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Wiki_project/doc A practical example demonstrating how to fill in the Wiki project template parameters for a specific project, 'Unified Mission Navbox'. ```MediaWiki Template {{Wiki project| |name = Unified Mission Navbox |proposer= ~~~~ |problem= Mission pages have no less than five separate navigational templates which confuse editors and readers alike due to how similar they are. Some are placed at the top, but they should be placed on the bottom of the page. |description= Use [[Template:Navbox]] to construct a navbox that merges and replaces [[Template:MissionLinks]], [[Template:AnomicMissionNav]], [[Template:EpicMissionArcBoilerintro]], [[Template:Missionrelated]] and [[Template:ThePloyNav]]. After constructing it, include it at the bottom of all pages that the template links to. |editor= |sandbox= |status= To Do }} ``` -------------------------------- ### SkillTime Template Usage Examples Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:SkillTime/doc Provides practical examples of how to use the `SkillTime` template within MediaWiki to display skill training times, demonstrating both full and abbreviated output formats. ```Wiki Markup {{SkillTime|Industry|IV}} {{SkillTime|Industry|IV|short= yes}} {{SkillTime|Caldari Battleship|IV|short= yes}} ``` -------------------------------- ### EVE Online Dronelands (Class K) Ore Distribution Rules Source: https://wiki.eveuniversity.org/EVE_API_Guide/Asteroids This section describes the general ore distribution rules for Dronelands regions (Security Class K). It notes that while Arkonor, Bistot, and Mercoxit are always present, their starting security levels vary significantly between regions and even within systems, suggesting a rule based on distance from Empire space. For example, in Etherium Reach, Bistot starts from 0.0, Arkonor from -0.2, and Mercoxit from -0.5, while in Cobalt Edge, Bistot starts from -0.6, Arkonor from -0.7, and Mercoxit from -0.8. ```APIDOC Dronelands regions (class K) all contain Arkonor, Bistot and Mercoxit, but the security level at which each ore starts differs from region to region. Moreover, even inside of a region contents of belts differ a lot between systems which hints that there is some other rule used here. The general rule seems to be that the further from Empire, the less ores are present. For example, in Etherium Reach, close to Empire, Bistot starts from 0.0, Arkonor starts from -0.2 and Mercoxit starts from -0.5 (though not in all -0.5 systems). On the other hand, in Cobalt Edge Bistot starts from -0.6, Arkonor from -0.7 and Mercoxit from -0.8. ``` -------------------------------- ### Example Usage of Infobox Wiki Supporter Template Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Infobox_Wiki_Supporter/doc Illustrates a practical application of the Infobox Wiki Supporter template with sample data, demonstrating how to populate the fields to generate a complete infobox. ```MediaWiki Template {{Infobox Wiki Supporter | name = Jilokari Kurvora | image = Jilokari kurvora.jpg | imagecorp = E-UNI Emblem.png | corpname = EVE University | imagealliance = New Ivy Logo.png | alliancename = IVY Leage | since = 1 January 2023 }} ``` -------------------------------- ### MediaWiki Template:SystemToRegion API Reference Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:SystemToRegion/doc Formal documentation for the `SystemToRegion` MediaWiki template, detailing its purpose, syntax, and parameters. ```APIDOC Template Name: SystemToRegion Description: This dictionary template outputs the Region of a System. Syntax: {{SystemToRegion | }} Parameters: system: Type: string Description: The name of the System. Case insensitive. ``` -------------------------------- ### Display GNU GPL Notice on Interactive Program Startup Source: https://wiki.eveuniversity.org/EVE_API_Guide/Special:Version/License/PDF_Handler This snippet shows an example of a short notice to be output by an interactive program when it starts. It informs users about the program's copyright, lack of warranty, and free software status, with prompts for more details on terms and conditions. ```Plain Text Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. ``` -------------------------------- ### EVE PI Plan Consumption per Planet Formulas Source: https://wiki.eveuniversity.org/EVE_API_Guide/Planetary_Interaction Formulas to calculate the total Powergrid (PG) and CPU cost for a planetary installation, considering the planet's radius (r), the number of started links (n), and the ratio of total link length compared to minimum length (k). ```APIDOC Plan Consumption per Planet: Powergrid (PG) Cost: Function: p(r, n, k) Description: The total PG cost of links on a planet depending on its radius, number of links, and total length ratio. Parameters: r: Planet radius (km) n: Number of started links k: Ratio of total length compared to minimum length (k = sum(link.length) / ml) Returns: p: Total Powergrid cost Formula: p(r,n,k) = 10 * n + 0.001801287 * r * k CPU Cost: Function: c(r, n, k) Description: The total CPU cost of links on a planet depending on its radius, number of links, and total length ratio. Parameters: r: Planet radius (km) n: Number of started links k: Ratio of total length compared to minimum length (k = sum(link.length) / ml) Returns: c: Total CPU cost Formula: c(r,n,k) = 15 * n + 0.002401716 * r * k ``` -------------------------------- ### Demonstrating Wiki Link Specificity and Alternatives Source: https://wiki.eveuniversity.org/EVE_API_Guide/UniWiki:Manual_of_Style/Linking Examples illustrating various wiki markup syntaxes for creating internal links, demonstrating how different approaches affect link specificity and appearance. It also shows alternative linking strategies when a highly specific article is unavailable. ```Wiki Markup [[Icelandic orthography]] ``` ```Wiki Markup [[Icelandic language|Icelandic]] orthography ``` ```Wiki Markup Icelandic [[orthography]] ``` ```Wiki Markup the [[flag of Tokelau]] ``` ```Wiki Markup the [[flag]] of [[Tokelau]] ``` ```Wiki Markup [[Requiem (Mozart)|Requiem]] ``` ```Wiki Markup [[Requiem]] ``` ```Wiki Markup [[Baroque hairstyles]] ``` ```Wiki Markup [[Baroque]] hairstyles ``` ```Wiki Markup Baroque [[hairstyles]] ``` ```Wiki Markup [[hairstyles]] of the [[Baroque]] ``` -------------------------------- ### EVE Online Steps to Create an Access List Source: https://wiki.eveuniversity.org/EVE_API_Guide/Access_List Provides a step-by-step guide on how to create a new access list within EVE Online, including the initial state of the newly created list. ```APIDOC Steps to Create an Access List: 1. Open the Access Lists window. 2. Click the "+ New Access List" button. 3. Enter the name (Required). 4. Enter the description (Optional). 5. Click "Create". Result: Creates an access list with the creator as the sole member, with the Admin role. ``` -------------------------------- ### GNU GPL: Interactive Program Startup Message Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/Special:Version/License/ConfirmEdit This snippet demonstrates a short notice to be displayed by interactive programs when they start, informing users about the program's copyright, warranty status, and redistribution conditions under the GNU GPL. It suggests commands to show full license details. ```Text Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. ``` -------------------------------- ### Example Mentor Profile Infobox (Full) Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Infobox_Mentors/doc Demonstrates a complete usage of the Infobox Mentors template for a standard mentor profile, including contact methods, experience, skill points, detailed skillset, playtimes, biography, primary community, and language. ```Wiki Template {{Infobox Mentors | mentortype = | mentor name = Jalxan | mentor page name = Jalxan | image = Jalxan.jpg | imagecorp = E-UNI Emblem Square.png | imagealliance = New Ivy Logo.png | time = 10 years. | skillpoints = Over 100,000,000 | skillset = - Getting Started (career options, making ISK, The Agency, etc)
- The Basics: fleet ops, SOP and policies, basic ship fitting advice
- Mining, Industry (manufacturing, research, and invention)
- Exploration (scanning, relic/data sites, cosmic signatures, combat sites)
- Player vs. Player (PvP)
- Player vs. Environment (PvE)
- Incursions
- Fleet Commanding
- Advanced ship fitting
- Flying and operating in NullSec
- Flying and operating in Sov NullSec
- Flying and operating in Wormholes
- Hauling
- Upwell Structures
- Corporation Management | playtimesed = 00:00 - 12:00 | biography = Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec convallis dignissim varius. Pellentesque molestie arcu mattis nisi condimentum congue. Curabitur ut arcu vel ante blandit tincidunt. | primary community = Stacmon | contact = In-game mails, In-game channel, Mumble, Discord. | language = English }} ``` -------------------------------- ### Template:GettingStartedNav Wiki Documentation Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:GettingStartedNav Provides comprehensive documentation for the Template:GettingStartedNav, detailing its purpose, dependencies on other wiki templates, and the simple syntax required for its inclusion on a page. ```APIDOC Template: GettingStartedNav Description: This template is used to navigate through Pages useful to new and returning players. Dependencies: - Navbox - Flatlist Syntax: {{GettingStartedNav}} ``` -------------------------------- ### MediaWiki Template Syntax for Documentation Preload Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Documentation/preload Illustrates the general syntax for using the documentation preload template, showing how to include positional and named parameters. ```MediaWiki Template {{Templatename|**|**}} ``` -------------------------------- ### Download Qt 5.7.0 Installer for Linux Source: https://wiki.eveuniversity.org/EVE_API_Guide/Linux Downloads the Qt 5.7.0 installer for Linux x64. This installer may be required to resolve EVE launcher display issues related to missing Qt dependencies. ```Bash wget http://download.qt.io/official_releases/qt/5.7/5.7.0/qt-opensource-linux-x64-5.7.0.run ``` -------------------------------- ### Make Qt Installer Executable Source: https://wiki.eveuniversity.org/EVE_API_Guide/Linux Changes file permissions to make the downloaded Qt installer executable, a necessary step before running it. ```Bash chmod +x qt-opensource-linux-x64-5.7.0.run ``` -------------------------------- ### MediaWiki Template:See also Basic Usage Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:See_also/doc Example demonstrating the basic usage of the 'See also' template with three target articles: Sandbox, Main Page, and EVE University. ```MediaWiki Template {{See also|Sandbox|Main Page|EVE University}} ``` -------------------------------- ### Example: Rack Heat Dissipation from 50% to 20% Source: https://wiki.eveuniversity.org/EVE_API_Guide/Overheating An example application of the heat dissipation time formula, calculating the time required for a ship's rack heat to drop from 50% to 20%. ```Calculation Example t=100⋅ln⁡0.50.2=100⋅0.91629=91.6 seconds ``` -------------------------------- ### MediaWiki Template:Tl Usage Example and Output Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Tl Demonstrates a practical application of `Template:Tl` by showing how to format the 'skill' template name. It includes both the input syntax and the rendered output, which is a clickable link to the 'Template:Skill' page with the distinct formatting. ```APIDOC Input: {{tl|skill}} Output: {{[skill](/Template%3ASkill "Template:Skill")}} ``` -------------------------------- ### Template:Note box - Basic Content Example Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Note_box/doc Example demonstrating the basic usage of the 'Note box' template to display a simple note with a wiki link. ```APIDOC {{Note box|The E-UNI does not run [[Incursion sites#Mothership sites|Incursion Mothership sites]].}} ``` -------------------------------- ### Example: Rack Heat Dissipation from 90% to 50% Source: https://wiki.eveuniversity.org/EVE_API_Guide/Overheating An example application of the heat dissipation time formula, calculating the time required for a ship's rack heat to drop from 90% to 50%. ```Calculation Example t=100⋅ln⁡0.90.5=100⋅0.58778=58.8 seconds ``` -------------------------------- ### Install PyYAML Library via Pip Source: https://wiki.eveuniversity.org/EVE_API_Guide/Static_Data_Export Before parsing YAML files in Python, the PyYAML library needs to be installed. This command uses pip, Python's package installer, to download and install PyYAML, making its functionalities available for use in your Python scripts. ```Shell pip install pyyaml ``` -------------------------------- ### Displaying Basic Code with MediaWiki Code Template Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Code/doc An example of using the `{{code}}` template to display simple programming code, like a BASIC 'Hello World!' program. ```MediaWiki Template {{code|10 PRINT "Hello World!" 20 END}} ``` -------------------------------- ### Example: Maximum Rack Heat Dissipation Time (100% to 0.5%) Source: https://wiki.eveuniversity.org/EVE_API_Guide/Overheating An example calculating the theoretical maximum time for rack heat to dissipate from 100% down to a server-rounded 0.5%, demonstrating the logarithmic nature of the decay. ```Calculation Example t=100⋅ln⁡1.00.005=100⋅5.2983=529.8 seconds ``` -------------------------------- ### Template:Sh Usage Examples Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Sh Illustrates various ways to use the 'Sh' template, showing how it renders with default and custom image widths, and demonstrating the effect of spacing before the template call on rendering. ```MediaWiki Template {{sh|Paladin}} ``` ```MediaWiki Template {{sh|Raven State Issue}} ``` ```MediaWiki Template {{sh|Raven State Issue|width= 40}} ``` ```MediaWiki Template Demo {{sh|Nestor}} ``` ```MediaWiki Template Demo{{sh|Nestor}} ``` -------------------------------- ### Wiki Template: Example Block Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template This template is used to visually separate and highlight examples within an article, making it easier to explain complex concepts. ```MediaWiki Template {{Example}} ``` -------------------------------- ### EVEUniEvent Template Sample Output Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:EVEUniEvent A complete example of the EVEUniEvent template filled with specific event details, demonstrating its practical application. ```Wiki Template {{EVEUniEvent | name = Cruiser Free For All! | description = Blobfest! (Customary Image Here) === Fitting & Rules === #Tech 1 cruiser #NO SENTRY DRONES OR HEAVY DRONES! #Tech 1 vanilla modules ONLY #Faction ammo is allowed #NO RIGS #THERE IS NO 6 #NO PODDING #NO SMARTBOMBS #NO TECH 2/FACTION MODULES. THIS INCLUDES DRONES #NO TEAMING UP UNOFFICIALLY. YOU WILL BE DISQUALIFIED #PLAY AREA IS 80KM DIAMETER. 40KM RADIUS FROM CENTER. THERE WILL BE A CAN AND AN ADMIN IN THE MIDDLE. DO NOT GO PAST THE BOUNDARIES OR YOU ARE DISQUALIFIED. WARPING OUT IS ALSO AN AUTOMATIC DISQUALIFICATION. DISCONNECT OR NO. #NO PODDING!!!!! #Empty clone is recommended, fly at your own risk however #no cloaking }} ``` -------------------------------- ### Install Qt 5 Dependencies for EVE Launcher on Ubuntu Source: https://wiki.eveuniversity.org/EVE_API_Guide/Installing_EVE_on_Linux Steps to install necessary Qt dependencies on Ubuntu, which can resolve issues where the launcher window opens but displays nothing due to missing Qt files. This involves downloading and running the Qt installer, and installing build tools and font libraries. ```bash wget http://download.qt.io/official_releases/qt/5.7/5.7.0/qt-opensource-linux-x64-5.7.0.run ``` ```bash chmod +x qt-opensource-linux-x64-5.7.0.run ``` ```bash ./qt-opensource-linux-x64-5.7.0.run ``` ```bash sudo apt-get install build-essential ``` ```bash sudo apt-get install libfontconfig1 ``` -------------------------------- ### Example Usage of SkillAlphaBar Template Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:SkillAlphaBar/doc A practical example demonstrating how to invoke the SkillAlphaBar template with 'Leadership' as the skill name, illustrating the input syntax and the resulting visual output. ```Wiki Markup | | | --- | | {{SkillAlphaBar|Leadership}} | ``` -------------------------------- ### Wiki Template: Example Block Source: https://wiki.eveuniversity.org/EVE_API_Guide/UniWiki:Templates This template is used to visually separate examples from the main article text, making complex concepts easier to understand. ```Wiki Markup {{Example}} ``` -------------------------------- ### MediaWiki Template:Sk Prerequisite Usage Examples Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:Skill/doc Provides examples for using the `Sk` template to specify prerequisite skills within the `pre` parameter of the `Skill` template. It shows how to format both single and multiple prerequisite entries. ```MediaWiki Template pre= {{Sk|CPU Management|I}} ``` ```MediaWiki Template pre= {{Sk|Refining|IV}}, {{Sk|Mass Production|I}} ``` -------------------------------- ### MediaWiki Template Usage Examples Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:SkillPriceInfo Provides various examples of how to use the SkillPriceInfo template, demonstrating different price formats including exact values, abbreviated large numbers, and dynamic price retrieval using the GetSkillPrice template. ```MediaWiki Template {{SkillPriceInfo|10,000 ISK}} ``` ```MediaWiki Template {{SkillPriceInfo|5.2M ISK}} ``` ```MediaWiki Template {{SkillPriceInfo|{{GetSkillPrice|Caldari Battleship}}}} ``` -------------------------------- ### API Module: login Source: https://wiki.eveuniversity.org/EVE_API_Guide/Special:ApiHelp Log in and get authentication cookies. ```APIDOC Module: login Description: Log in and get authentication cookies. ``` -------------------------------- ### Example Calculation: Manticore Jump Fuel Consumption Source: https://wiki.eveuniversity.org/EVE_API_Guide/Cyno An illustrative example demonstrating the application of the fuel consumption formula for a Manticore jumping through a Black Ops bridge, assuming the bridging pilot has Jump Fuel Conservation V and a jump distance of 1 light-year. ```Formula Example 1470000kg×0.000000135×700isotopes×0.5×1ly=69.4575isotopes ``` -------------------------------- ### API Module: help Source: https://wiki.eveuniversity.org/EVE_API_Guide/Special:ApiHelp Display help for the specified modules. ```APIDOC Module: help Description: Display help for the specified modules. ``` -------------------------------- ### Template:SystemToSecurity Usage Examples Source: https://wiki.eveuniversity.org/EVE_API_Guide/Template:SystemToSecurity Illustrates the practical application of the 'SystemToSecurity' template with concrete examples, showing how to retrieve security ratings for different EVE Online systems like 'Jita' and 'Amygnon'. ```Wiki Markup {{SystemToSecurity | Jita}} ``` ```Wiki Markup {{SystemToSecurity | amygnon}} ``` -------------------------------- ### Install Build Essential Package (Ubuntu) Source: https://wiki.eveuniversity.org/EVE_API_Guide/Linux Installs the `build-essential` package on Ubuntu, which includes `g++` and other tools required for compiling software. This might be a dependency for Qt or other components. ```Bash sudo apt-get install build-essential ``` -------------------------------- ### Pre-populated MediaWiki Template Documentation Outline Source: https://wiki.eveuniversity.org/EVE_API_Guide/UniWiki:Templates This extensive snippet provides a pre-populated outline for MediaWiki template documentation pages, generated by the `{{documentation}}` template when a `/doc` page is not yet created. It includes sections for description, dependencies, syntax, parameters, sample usage, and categorization, serving as a guide for editors to structure comprehensive template documentation. ```MediaWiki ; Description : This template is used to do something. ; Dependencies: :; Uses :: some CSS, JS, file, or other template :; Used by :: template ; Syntax : {{T|Templatename|param|namedparam=}} :; Parameters ::; param ::: Param description. ::; param : Param description. ::; namedparam ::: Namedparam description. ; Sample :{{templatename|foo1|foo2=}} :: gives... {{templatename|foo1|foo2=}} ; See also: : * [[Template:]] :* [[]] [[Category:Template]] [[Category:Template documentation]] ``` -------------------------------- ### Example Image Inclusion Source: https://wiki.eveuniversity.org/EVE_API_Guide/UniWiki:Editing_Guide A specific example demonstrating how to include an image named 'wiki1.png' into a wiki page. After saving, the file link can be clicked to upload the actual image. ```Wiki Markup [[File:wiki1.png]] ``` -------------------------------- ### Example Jump Bridge Fuel Consumption Calculation Source: https://wiki.eveuniversity.org/EVE_API_Guide/Jump_fatigue An illustrative example demonstrating the calculation of fuel consumption for a Manticore jumping through a Black Ops bridge, using the defined formula and parameters. ```APIDOC ExampleCalculation: Ship: Manticore BridgingShip: Black Ops JumpFuelConservationSkill: V (Level 5) Calculation: 1470000kg × 0.000000135 × 700isotopes × 0.5 × 1ly = 69.4575isotopes ```