<< < 49 50 51 52 53 54 55 56 57 58 59 > >>   ∑:1395  Sort:Date

Library Genesis Data Object - Authors
What is "Authors" as a Library Genesis Data Objects? "Authors" is a data object used in Library Genesis to record detailed information about authors. "Authors" has the following main fields: a_id - Internal object ID of this author. family - The family name of this author. name - The given name of t...
2023-11-06, ∼1554🔥, 0💬

How to get short urls for Twitter with PHP
Useful PHP Code Snippets for Developers - How to get short urls for Twitter with PHP
2015-06-19, ∼1554🔥, 0💬

View Report from Apache Log File
How to View Report from an Apache Web server log file? If you want to View Report from an Apache Web server log file, you can follow these steps: 1. Copy a sample log file from the Apache Web server: fyicenter$ sudo cp /var/log/httpd/access_log . 2. View report with default options: fyicenter$ goacc...
2023-03-07, ∼1552🔥, 0💬

json.php API - Get "files" by MD5 Hash
How to get "files" objects with Library Genesis API, json.php, for a given file MD5 hash? If you want to know the MD5 hash value of a file, you can call the Library Genesis API, json.php, with object=f and md5={hash} parameters. For example, the following call returns the "files" object that has a M...
2023-09-03, ∼1545🔥, 0💬

What Is the Default SVG Viewport
What Is the Default SVG Viewport? The "width" and "height" attributes in the "svg" element are optional. If them are not specified, the default Viewport will be calculated based on the enclosing area provided by hosting HTML element. More precisely, if "width" is specified, and "height" is not speci...
2023-02-03, ∼1536🔥, 0💬

List of SVG Resources
What SVG Resources are available on the Internet? Here is a list of SVG Resources that are available on the Internet: An SVG Primer for Today's Browsers - User guide for beginners by w3.org. Scalable Vector Graphics (SVG) 1.1 (Second Edition) - SVG 1.1 specifications by w3.org. SVG 1.0: Scalable Vec...
2023-09-03, ∼1531🔥, 0💬

Download Office, Word, Excel, ... on Mac
How to download and install Microsoft Office tools on my Mac computer? My organization has a Microsoft Business account. If your organization has a Microsoft Business account, you can follow this tutorial to download and install Microsoft Office tools like Word, Excel, PowerPoint, etc. on your Mac c...
2023-08-09, ∼1531🔥, 0💬

Data Structure - Vector
What is data structure "Vector"? Vector is a special data structure that represents a sequence of data elements of the same data type. A vector is an array in many other programming language. 1. Create a vector object with the c() function - &gt; v = c("Apple", "Banana", "Orange") &gt; print...
2023-06-11, ∼1530🔥, 0💬

Data Structure - Named Vector
What is a named vector? A named vector is a special vector where each member has a unique name. A name vector is an associated array in many other programming language. 1. Create a named vector object with the name() function - &gt; v = c("Apple", "Banana", "Orange") &gt; v [1] "Apple" "Bana...
2023-06-11, ∼1521🔥, 0💬

Generate Static HTML Output from Apache Log File
How to Generate Static HTML Output from an Apache Web server log file? If you want to Generate Static HTML Output from an Apache Web server log file, you can follow these steps: 1. Copy a sample log file from the Apache Web server: fyicenter$ sudo cp /var/log/httpd/access_log . 2. Generate an HTML r...
2023-02-28, ∼1519🔥, 0💬

Bandizip - Ultra-Fast Compression Tool
Where to find answers to frequently asked questions about Bandizip? Here is a collection of frequently asked questions and their answers compiled by FYIcenter.com team for general questions about Bandizip: What Is Bandizip   ⇒ What Is Bandizip ⇐ Stop WinZip Wizard Window ⇑⇑ ZIP - Frequently Asked ...
2023-03-17, ∼1516🔥, 0💬

Use MathML Elements in IFRAME Tags
How to Use MathML Elements in HTML &lt;iframe&gt; Tags? If you want to use MathML Elements in HTML &lt;iframe&gt; Tags, you can save MathML elements in .mml files and include MathML file names in the "src" attribute of &lt;iframe&gt; Tags. You can follow this tutorial to test...
2026-04-13, ∼1515🔥, 0💬

2-Computer Network with Ethernet Switch
How to build a 2-Computer network with an ethernet switch? If you have an ethernet switch, you can use it to build a 2-computer network as described below: 1. Read the manual of the ethernet switch to ensure that all RJ45 ports (sockets) are Auto Negotiation RJ45 ports. All ports have identical func...
2022-05-15, ∼1510🔥, 0💬

Common Functions in OpenOffice
Where to find tutorials on common functions in OpenOffice? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on common functions used multiple apps in OpenOffice. Insert Images from Image Files Modify Images in OpenOffice   ⇒ Insert Images from Imag...
2021-09-30, ∼1508🔥, 0💬

Use IMG "width" and "height" to Crop SVG Images
How to Use IMG attributes, "width" and "height", to Crop SVG Images? One way to get rid of those extra white spaces in a SVG image, is to use "width" and "height" attributes in HTML IMG tags. There are the rules on how "width" and "height" attributes in the HTML IMG tag work with the SVG image size:...
2022-12-03, ∼1507🔥, 0💬

Use SVG Images in OBJECT Tags
How to Use SVG Images in HTML &lt;object&gt; Tags? If you want to use SVG images in HTML &lt;object&gt; Tags, you can save SVG images in .svg files and include SVG image file names in the "data" attribute of &lt;object&gt; Tags. You also need to specify the type="image/svg+xm...
2022-12-03, ∼1507🔥, 0💬

Insert MathML Element in HTML Documents
How to Insert MathML Elements in HTML Documents? You can insert a MathML Element in an HTML document by inserting the MathML XML document directly any where in the HTML document. Here is a simple example of inserting a MathML element inside an HTML document. Save it in a file called, Square-Root.htm...
2025-10-14, ∼1505🔥, 0💬

GoAccess Report Settings
How to use GoAccess Report Settings? GoAccess Report Settings allows you to change the look and feel all display panels in the report. Report settings are accessible through the "Settings" icon on the left bar: THEME ( ) DARK GRAY (x) BRIGHT ( ) DARK BLUE ( ) DARK PURPLE PANELS ITEMS PER PAGE ( ) 3 ...
2023-01-29, ∼1505🔥, 0💬

Data Structure - List
What is data structure "List"? List is a special vector whose members are all lists. 1. Create a list object with the list() function - &gt; w = list( c(1,2,3), c("Apple", "Banana", "Orange")) &gt; w [[1]] [1] 1 2 3 [[2]] [1] "Apple" "Banana" "Orange" &gt; is.list(w) [1] TRUE &gt; is...
2023-06-11, ∼1502🔥, 0💬

Customizing GoAccess
Where to find answers to frequently asked questions on Customizing GoAccess? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Customizing GoAccess: "No time format was found on your conf file" Error Generate CSV Report from Apache Log File Generate JSO...
2023-01-06, ∼1501🔥, 0💬

Settings Supported in Mozilla Firefox
What are settings supported in Mozilla Firefox? The latest version of Mozilla Firefox supports a wide range of settings organized in different categories. You can following this tutorial to find, view and update them: 1. Enter "about:preferences" in the Website address input field. Or click on the m...
2022-12-12, ∼1497🔥, 0💬

Install R Software Environment on MacOS
How to R Software Environment on MacOS? Installing R Software Environment on MacOS is very simple as shown in this tutorial. 1. Go to R Project Website . 2. Click the "CRAN mirror" in the "Getting Started" section. You see a list of mirror sites. 3. Select a mirror site near your location. You see "...
2023-07-29, ∼1495🔥, 0💬

json.php API - Get "works" Objects
How to get "works" objects with Library Genesis API? Here are some examples on how to get "works" objects with Library Genesis API. Get the "works" object with a_id=1 in pretty JSON format. The first work published in 6 editions. fyicenter$ curl 'https://libgen.lc/json.php?ob ject=w&amp;ids=1'| ...
2022-10-07, ∼1493🔥, 0💬

Install R Software Environment on Windows
How to R Software Environment on Windows? Installing R Software Environment on Windows is very simple as shown in this tutorial. 1. Go to R Project Website . 2. Click the "CRAN mirror" in the "Getting Started" section. You see a list of mirror sites. 3. Select a mirror site near your location. You s...
2023-07-29, ∼1491🔥, 0💬

<< < 49 50 51 52 53 54 55 56 57 58 59 > >>   ∑:1395  Sort:Date