<< < 43 44 45 46 47 48 49 50 51 52 53 > >>   ∑:1395  Sort:Date

Add Form to Database Directly
How to add a new form to Form Tools database directly? Adding a new form to Form Tools database directly is not recommended. But if you want to automate the form creation process, you can still do it by follow this tutorial. 1. You should create a Form Tools test database called "ft" to try this pro...
2019-11-08, ∼2030🔥, 0💬

Simple WiFi Router Configuration
How to create a simple configuration for a WiFi Router? The simplest configuration for a WiFi router is to put all wired and wireless devices into a single subnet as shown in this tutorial. 1. Turn on the WiFi router. 2. Connect your computer to a LAN port on the WiFi router with an Ethernet cable. ...
2021-06-05, ∼2025🔥, 0💬

edition.php - Edition View API
What is the edition view API, edition.php? edition.php is another simple API provided by Library Genesis to allow you to view details of a file object for a given ID. Technical information on edition view API: URL: {site_url}/edition.php?id={id} site_url: https://libgen.lc or other mirror sites. id:...
2022-09-24, ∼2023🔥, 0💬

Download and Install OpenOffice on macOS
How to Download and Install Apache OpenOffice on macOS computers? If you want to download the latest Apache OpenOffice release for your macOS computer, you can follow this toturial. 1. go to the OpenOffice download Website . 2. Select "OS X &gt; English &gt; 4.1.7" and click "Download full i...
2020-11-11, ∼2022🔥, 0💬

Assign Audio Conferencing License to User
How to assign Audio Conferencing license to specific uses in your organizationn? After you have purchased the Audio Conferencing license for your region, you need to assign it the user who needs to organize meeting with the audio dial-in option. 1. Go to Micrsoft 365 Admin Center. 2. Click "Billing ...
2022-04-13, ∼2021🔥, 0💬

Turn Off/On Microsoft Security Defaults
How to Turn Off/On Microsoft Security Defaults? I am the administrator or our Microsoft Business Account. If you are the administrator of your Microsoft 365 Business account, you can follow this tutorial to turn on or turn off Microsoft Security Defaults for all users in your organization. 1. Sign i...
2023-10-15, ∼2014🔥, 0💬

OpenOffice 3.2.1 Installed Programs on Windows
What programs are installed with the OpenOffice 3.2.1 package for Windows? After installing the OpenOffice 3.2.1 package for Windows, OOo-SDK_3.2.1_Win_x86_install_ en-US.exe,you will see 3 installed programs. 1. Go to "Control Panel\Programs\Programs and Features" You see the following 3 new instal...
2020-11-11, ∼2013🔥, 0💬

url, email and ip validation with php
Useful PHP Code Snippets for Developers - url, email and ip validation with php
2015-06-19, ∼2012🔥, 0💬

SanDisk Cruzer Blade Flash Drive - Maximum Writing Speed
What is maximum writing speed of the SanDisk Cruzer Blade 32GB Flash Drive? The best way to find out the maximum writing speed of your SanDisk Cruzer Blade 32GB Flash Drive is to run writing tests with a single large block of different block sizes: sqlio -LS -kR -i1 -f1 -t1 -s60 -p0 ... If we run SQ...
2019-07-30, ∼2009🔥, 0💬

SanDisk Cruzer Blade Flash Drive - 64-KB Benchmark
What is the average I/O performance of SanDisk Cruzer Blade 32GB Flash Drive? The average I/O performance of a flash drive can be measured by running SQLIO with multiple 64-KB blocks with a large stripe factor. Here is the read performance test of SanDisk Cruzer Blade 32GB Flash Drive on 64-KB block...
2019-07-30, ∼2009🔥, 0💬

"sqlio -b" - IO Block Size in KB
What is the IO block size in KB option, "sqlio -b"? The IO block size in KB option, "sqlio -b", controls the size of each data block used as a unit for each I/O test. The default value is "-b2", 2KB. Example 1 - Run SQLIO with 4KB per data block: C:\fyicenter\SQLIO&gt;sqli o-b4 1 thread reading ...
2019-08-19, ∼2008🔥, 0💬

Edit End Points of Curve Lines
What are editing functions for end points on lines and curves in OpenOffice? OpenOffice Draw offers the following editing functions for end points on connected lines and curves. 1. Select a line or curve. 2. Open "View &gt; Toolbars &gt; End Points". 3. Click on the "End Points" icon in the ...
2022-04-21, ∼2007🔥, 0💬

SanDisk Cruzer Micro Flash Drive - 64-KB Benchmark
What is the average I/O performance of SanDisk Cruzer Micro 8GB Flash Drive? The average I/O performance of a flash drive can be measured by running SQLIO with multiple 64-KB blocks with a large stripe factor. Here is the read performance test of SanDisk Cruzer Micro 8GB Flash Drive on 64-KB blocks....
2019-07-30, ∼2007🔥, 0💬

DNS Records and Record Types
What Is DNS Record? How many DNS record types are there? A DNS Record is a record in a DNS database that maps a given domain name an IP address or other information. Here are main types of DNS records: 1. A record : The most basic type of record, also known as address record, provides an IPv4 addres...
2022-02-04, ∼2006🔥, 0💬

View Applicants of Your Job Post
How to view applicant's information of my job posts on LinkedIn? After your job post is published on LinkedIn, you will start to receive applications within few hours. LinkedIn uses automated process to match job seekers to your job description and recommends your job to matched candidates. Here is ...
2023-09-23, ∼2002🔥, 0💬

L2TP VPN Client Configuration on macOS
How to configure L2TP VPN client on macOS computers? If you have a L2TP server configured with the following connection information, you can follow this tutorial to configure a L2TP VPN client on you macOS computer to connect to this server. Server IP: 113.97.237.5 Service Type: L2TP IPsec Enabled: ...
2022-05-15, ∼2001🔥, 0💬

Connect Router to Multiple ISPs
How to connect a router to Multiple ISPs? If you want increase the availability of you local network, you can install and configure a router that supports multiple ISPs. A router with multiple WAN sockets: WAN1, WAN2, WAN3, ..., will support multiple ISPs. The first step to make multiple ISP connect...
2022-05-05, ∼2000🔥, 0💬

"sqlio -k" - Kind of I/O
What is the Kind of I/O option, "sqlio -k"? The Kind of I/O option, "sqlio -k", specifies what kind of I/O to test, reading or writing. The default value is "-kR", reading I/O test. Example 1 - Run SQLIO for reading I/O testing: C:\fyicenter\SQLIO&gt;sqli o-kR 1 thread reading for 30 secs from f...
2019-05-14, ∼2000🔥, 0💬

WordPress – Scheduling Posts for RSS
Useful PHP Code Snippets for Developers - WordPress – Scheduling Posts for RSS function publish_later_on_feed($where) { global $wpdb; if(is_feed()) { // timestamp in WP-format $now = gmdate('Y-m-d H:i:s'); // value for wait; + device $wait = '5'; // integer // http://dev.mysql.com/doc/refma n/5.0/...
2015-06-19, ∼1994🔥, 0💬

GoAccess - Frequently Asked Questions
Where to find answers to frequently asked questions on GoAccess for log file analysis? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team about GoAccess for log file analysis: Installing for GoAccess What Is GoAccess Install GoAccess on Fedora/CentOS View R...
2023-03-07, ∼1993🔥, 0💬

Using OpenOffice Math
Where to find tutorials on Using OpenOffice Math? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on Using OpenOffice Math. What Is OpenOffice Math Create Formulas in OpenOffice Math Source Code References for OpenOffice Math Insert Math Formulas ...
2021-08-01, ∼1985🔥, 0💬

IP Routing Table on Windows
How to display IP Routing Table on Windows Systems? You can use the "network -rn" or "route print" command to display the IP routing table a Windows system. Here is an example: fyicenter&gt; netstat -rn ============================== ============================== ===============Interface List 3....
2021-04-30, ∼1980🔥, 0💬

"sqlio -kR -b64" - Reading 64-KB Block Test
How to perform tests for reading 64 KB files? My Website serves picture files with an average of 64 KB per file. If you want to know how your environment performs on reading 64 KB files, you can use the following SQLIO options: "-LS" - Sets SQLIO to report latency measurements using the system timer...
2019-08-23, ∼1971🔥, 0💬

"sqlio -p" - CPU Number for Affinity
What is the CPU Number for Affinity option, "sqlio -p"? The CPU Number for Affinity option, "sqlio -p", specifies a specific CPU to run SQLIO. The default value is "", all CPUs. In this case, all CPUs are used. Example 1 - Run SQLIO with the first CPU: C:\fyicenter\SQLIO&gt;sqli o-p0 1 thread re...
2019-05-14, ∼1971🔥, 0💬

<< < 43 44 45 46 47 48 49 50 51 52 53 > >>   ∑:1395  Sort:Date