All Articles

143352 articles · Page 6643 of 7168
Java Captain
Java Captain
Oct 8, 2017 · Backend Development

Java Backend Interview Preparation Guide and Experience Summary

This article shares a detailed month‑long interview journey, outlining personal strengths and weaknesses, a structured learning plan, resume submission tactics, interview scheduling advice, common Java interview topics, and practical tips to help junior developers successfully navigate backend interview processes.

careerpreparation
0 likes · 13 min read
Java Backend Interview Preparation Guide and Experience Summary
ITPUB
ITPUB
Oct 8, 2017 · Databases

SQL Server Field Types, Constraints, and Index Design: Essential Best Practices

This guide outlines best practices for SQL Server database design, covering recommended field types, primary key and null policies, index creation rules, low‑selectivity column handling, and a comprehensive set of query‑writing conventions to improve performance and maintainability.

Database DesignField TypesQuery Optimization
0 likes · 18 min read
SQL Server Field Types, Constraints, and Index Design: Essential Best Practices
ITPUB
ITPUB
Oct 8, 2017 · Fundamentals

Mastering Branch Prediction: Techniques to Minimize Branch Overhead in x86 Code

This article explains the different types of CPU branches, how branch prediction works, and presents practical techniques—including branch‑prediction hints, SETcc/CMOVx instructions, and branch‑less coding—to reduce the performance impact of conditional and indirect jumps in x86 programs.

CMOVCPU pipelineSETcc
0 likes · 14 min read
Mastering Branch Prediction: Techniques to Minimize Branch Overhead in x86 Code
MaGe Linux Operations
MaGe Linux Operations
Oct 8, 2017 · Information Security

25 Must‑Know Linux iptables Rules for Secure Firewall Management

This guide presents 25 essential Linux iptables rules—from clearing existing policies to configuring SSH, HTTP, DNS, and DoS protection—illustrated with command screenshots, enabling administrators to quickly adapt firewall settings to their specific network security needs.

Network Securityiptablessysadmin
0 likes · 4 min read
25 Must‑Know Linux iptables Rules for Secure Firewall Management
ITPUB
ITPUB
Oct 7, 2017 · Databases

Essential Oracle SQL Commands: From Connecting to Advanced Tablespace Management

This guide provides a comprehensive collection of Oracle SQL commands covering connection, query execution, variable handling, formatting, tablespace creation, modification, and external table operations, presented step‑by‑step for database administrators and developers.

Database AdministrationExternal TableOracle
0 likes · 11 min read
Essential Oracle SQL Commands: From Connecting to Advanced Tablespace Management
ITPUB
ITPUB
Oct 7, 2017 · Operations

13 Must‑Have Linux Ops Tools and Quick Installation Guides

This guide introduces thirteen essential Linux operation utilities—including Nethogs, IOZone, IOTop, IPtraf, IFTop, HTop, NMON, MultiTail, Fail2ban, Tmux, Agedu, NMap and Httperf—providing brief descriptions, download links and step‑by‑step commands to install and use each tool for monitoring, performance testing, security and session management.

MonitoringSecurityTools
0 likes · 12 min read
13 Must‑Have Linux Ops Tools and Quick Installation Guides
MaGe Linux Operations
MaGe Linux Operations
Oct 7, 2017 · Fundamentals

How to Build Your Own Minimal Linux System from Scratch

This step‑by‑step guide explains how to trim an existing Linux installation, partition a new disk, install GRUB, copy kernel and essential binaries, and finally create a bootable, network‑enabled custom Linux system using CentOS 6.9 as an example.

BootloaderCustom OSinitramfs
0 likes · 7 min read
How to Build Your Own Minimal Linux System from Scratch
21CTO
21CTO
Oct 6, 2017 · Artificial Intelligence

How Cosine Similarity Powers Movie Recommendations: A Python Guide

This tutorial explains various similarity metrics such as cosine similarity, Euclidean distance, Jaccard index, and Pearson correlation, demonstrates a Python function to compute user interest similarity, and shows how to generate movie recommendations with example code and output.

Recommendation Systemcosine similaritysimilarity metrics
0 likes · 7 min read
How Cosine Similarity Powers Movie Recommendations: A Python Guide
ITPUB
ITPUB
Oct 6, 2017 · Fundamentals

Customize Your Bash Prompt: Colors, Variables, and Multi‑Line Layouts

Learn how to personalize the Bash command‑line prompt by setting the PS1 variable, using special escape sequences for user, host, directory, date, and colors, and creating multi‑line prompts, all with clear examples and safe configuration steps.

Promptbashcustomization
0 likes · 6 min read
Customize Your Bash Prompt: Colors, Variables, and Multi‑Line Layouts
Programmer DD
Programmer DD
Oct 6, 2017 · Information Security

How Spring Security’s Core Configurations Protect Your Application

This article breaks down Spring Security’s three core Java configuration components—@EnableWebSecurity, WebSecurityConfiguration, and AuthenticationConfiguration—explaining how they replace XML setup, register the security filter chain, build the AuthenticationManager, and enable fine‑grained HttpSecurity rules such as path protection, form login, logout, CSRF, and security headers.

AuthenticationManagerHttpSecurityIn-Memory Authentication
0 likes · 8 min read
How Spring Security’s Core Configurations Protect Your Application
MaGe Linux Operations
MaGe Linux Operations
Oct 5, 2017 · Information Security

Which Linux Commands Can Destroy Your System? Safety Tips Inside

This article warns that seemingly harmless Linux commands—such as recursive rm, mkfs, dd, fork loops, malicious scripts, and arbitrary data writes—can irreversibly destroy filesystems, and offers practical advice like avoiding root for daily tasks, understanding commands before execution, verifying sources, and regularly backing up data.

$rootDangerous CommandsSystem Security
0 likes · 7 min read
Which Linux Commands Can Destroy Your System? Safety Tips Inside
MaGe Linux Operations
MaGe Linux Operations
Oct 5, 2017 · Fundamentals

Master Python Decorators: Concepts, Usage, and Design Patterns

This article explains what Python decorators are, their key characteristics, how to pass arguments, stack multiple decorators, use built‑in decorators from the standard library such as @property and @wraps, and relates decorator functions to the classic decorator design pattern, all illustrated with clear code examples.

Code Exampledesign-patternfunctools
0 likes · 7 min read
Master Python Decorators: Concepts, Usage, and Design Patterns
ITPUB
ITPUB
Oct 5, 2017 · Operations

Essential Command-Line Tools Every DevOps Engineer Should Know

This article presents a curated collection of fast, interactive, and productivity‑boosting command‑line utilities—including ag, tig, mycli, jq, shellcheck, yapf, mosh, fzf, PathPicker, htop, axel, cloc, ccache, tmux, and many more—along with brief usage examples and screenshots to help engineers streamline development, debugging, and system monitoring tasks.

DevOpsProductivityTools
0 likes · 10 min read
Essential Command-Line Tools Every DevOps Engineer Should Know
ITPUB
ITPUB
Oct 5, 2017 · Databases

Recover Accidentally Deleted Oracle Data with Backup, LogMiner, and Flashback

Oracle provides several powerful recovery mechanisms—logical backups with the import tool, physical file restoration with incomplete recovery, LogMiner analysis of redo logs, and Flashback Query—each illustrated through a scenario where a mistaken update to the TFUNDASSET table is corrected using step‑by‑step procedures and commands.

Data RecoveryFlashbackLogMiner
0 likes · 13 min read
Recover Accidentally Deleted Oracle Data with Backup, LogMiner, and Flashback
21CTO
21CTO
Oct 4, 2017 · Artificial Intelligence

Build a Python Recommendation Engine from Scratch: Step‑by‑Step Guide

This tutorial walks you through the fundamentals of recommendation systems, explaining why they’re needed, the types of engines, collaborative filtering concepts, and provides a hands‑on Python implementation with sample data and code to build your own recommender from the ground up.

Recommendation Systemcollaborative filteringcontent-based filtering
0 likes · 12 min read
Build a Python Recommendation Engine from Scratch: Step‑by‑Step Guide