Skip to content

WhileIf Blog

Programming, Computers and Stuff

WhileIf Blog
Menu

Primary menu

  • Home
  • About

Tag Archives: tips

Python :: Spread

Posted on May 31, 2020 by admin — No Comments ↓

This method flattens a list similarly like [].concat(…arr) in JavaScript. What others are reading:What is Big O Notation?Python :: lcmPython :: gcdLaravel 7.6 Released

Posted in Code | Tagged code, snippets, tips | Leave a reply

Python :: lcm

Posted on May 27, 2020 by admin — No Comments ↓

Returns the least common multiple of two or more numbers. Use the greatest common divisor (GCD) formula and the fact that lcm(x,y) = x * y / gcd(x,y) to determine the least common multiple. The GCD formula uses recursion. Uses reduce function from the inbuilt module functools. Continue reading Python :: lcm→

Posted in Code | Tagged code, python, snippets, tips | Leave a reply

CSS3 :: Rounded Corners

Posted on May 5, 2020 by admin — No Comments ↓

CSS3 Rounded corners are used to add special colored corner to body or text by using the border-radius property.A simple syntax of rounded corners is as follows − #rcorners7 { border-radius: 60px/15px; background: #FF0000; padding: 20px; width: 200px; height: 150px; Continue reading CSS3 :: Rounded Corners→

Posted in CSS | Tagged css, css3, definition, tips | Leave a reply

Python :: keys_only

Posted on May 3, 2020 by admin — No Comments ↓

Function which accepts a dictionary of key value pairs and returns a new flat list of only the keys. Uses the .items() function with a for loop on the dictionary to track both the key and value and returns a Continue reading Python :: keys_only→

Posted in Code | Tagged definition, tips | Leave a reply

CSS3 :: Tutorial

Posted on April 30, 2020 by admin — No Comments ↓

Cascading Style Sheets (CSS) is a style sheet language used for describing the look and formatting of a document written in a markup language. CSS3 is a latest standard of css earlier versions(CSS2). The main difference between css2 and css3 Continue reading CSS3 :: Tutorial→

Posted in Code, CSS | Tagged css3, definition, tips | Leave a reply

Post navigation

← Older posts

Primary Sidebar Widget Area

Heat Tags

codecssdefinitionhtmljavascriptjquerylaravellinuxlinux mintMaverick MeerkatnewsOperating SystemsPHPprogrammingquotessoftwaretipsubuntuunixworpress

Top Posts & Pages

  • MacOS - Manage FileVault from command line
  • Kubuntu - How to Test Your Hard Disk Drive
  • PHP - Read files/content/file details from a .zip archive, without extracting them
  • Linux - scp copy all hidden dot files
  • Testing a POP3 server via telnet or OpenSSL
  • Cache TTL Change Coming to Laravel 5.8
  • How to re-sync the MySQL DB if Master and Slave (replication) ?
  • Ruby :: Array#count
  • Laravel Debugbar Gets a Big UI Update

Categories

  • Code
  • Command Line Tools
  • CSS
  • General Stuff
  • Hardware
  • Javascript
  • Manual/Reference
  • News
  • PHP
  • Quotes
  • Servers
  • Software
  • Tips
  • Uncategorized
  • Web Analytics
  • Wordpress

Blogroll

  • Android Developers Blog
  • Cats Who Code
  • Developer Blog
  • Planet MySql
  • Planet PHP
  • The Code Project
  • WordPress Planet

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 4 other subscribers

Member of The Internet Defense League

  • RSS - Posts
  • RSS - Comments

Follow me on Twitter

My Tweets
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy
Copyright © 2021 WhileIf Blog. All Rights Reserved.
Theme: Catch Box by Catch Themes
Scroll Up