programming

My ToDo List for 2024 (daily updates)

waffarx cash back

What is the difference between appcenter and appcenter (system-wide) in Elementary OS ?

It is very simple. If you chose appcenter (system-wide), the application will be available for all users on the system. But if you chose appcenter, the application you installed will be available for the current user only. This is a good option in Elementary OS. So if you want to install some apps for a user, and not for the other users YOU CAN. The slogan โ€œYOU CANโ€ is the best slogan for Linux community.

Create and remove swap files in Ubuntu Linux

Computers use RAM to store data and run programs and services. So, the data / programs in RAM are temporarily available โ€” as you use the program or data. When you shutdown your computer, RAM will be free. RAM is faster than HDD or SSD in read and write speed. So we use it to hold the currently running programs and data. But they are expensive, so we use less of them and rely on swap file to delegate some less used data / program to it.

[solved] How to fix csrf invalid in Jumia ?

Invalid CSRF token ๐Ÿ”— This error message means that your browser couldnโ€™t create a secure cookie, or couldnโ€™t access that cookie to authorize your login. This can be caused by ad-blocking or script-blocking plugins, but also by the browser itself if itโ€™s not allowed to set cookies. Or that your laptop is shutdown before completing the login request and cookie-setting. Make sure that the error is persistent. Refresh the webpage.

CSS & CSS3 Cheatsheet

CSS is a language that describes the style of an HTML document. CSS describes how HTML elements should be displayed. CSS stands for Cascading Style Sheets. CSS saves a lot of work becuase it can control the layout of multiple web pages all at once. CSS rule-set consists of a selector and a declaration block , see the following image. The declaration block contains one or more declarations separated by semicolons.

Laravel โ€“ Documentation and Code Snippets

Laravel is a framework for backend development for websites. It is written in PHP programming language. We use PHP to write website backend code in Laravel framework. A list of operators on Eloquentโ€™s where() method ๐Ÿ”— When you use Eloquentโ€™s where() method, by default it will use the = operator (i.e. ->where('fieldname','value') will generate ... WHERE fieldname = 'value'.... However you are not limited to just =. You can do something like this:

Kotlin for Android - Documentation and Code Snippets

All you need to start creating Android app in Kotlin. Kotlin Syntax ๐Ÿ”— Print to console ๐Ÿ”— print("Amit Shekhar") println("Amit Shekhar") Constants and Variables ๐Ÿ”— var name = "Amit Shekhar" val name = "Amit Shekhar" Assigning the null value ๐Ÿ”— var otherName : String? otherName = null Verify if value is null ๐Ÿ”— text?.let { val length = text.length } // or simply val length = text?.length Concatenation of strings ๐Ÿ”— var firstName = "Amit" var lastName = "Shekhar" var message = "My name is: $firstName $lastName" New line in string ๐Ÿ”— val text = """ |First Line |Second Line |Third Line """.

Java for Android โ€“ Documentation and Code Snippets

All you need to create Android app in Java. Java Syntax ๐Ÿ”— Primitive Data Types ๐Ÿ”— byte short int long float double char boolean Java Operators ๐Ÿ”— Arithmetic: + , โ€“ , * , ? , % Assignment: = , -= , += , *= , /= , %= , &= , ^= , |= , «= , »= , »>= Bitwise: ^ , & , | Logical: && , || Relational: < , > , <= , >= , == , !

Javascript Cheatsheet โ€“ Documentation and Code Snippets

Javascript is a scripting language, created to run in the Internet browser but later used in all places!. Javascript is always shortened as js or JS. Javascript Syntax ๐Ÿ”— Variables ๐Ÿ”— // declare a variable var ourName; // store values myNumber = 5; myString = "myVar"; // declare variables with the assignment operator var myNum = 0; // add, subtract, multiply and divide numbers myVar = 5 + 10; // 15 myVar = 12 - 6; // 6 myVar = 13 * 13; // 169 myVar = 16 / 2; // 8 // increment and decrement numbers i++; // the equivalent of i = i + 1 i--; // the equivalent of i = i - 1; // decimals var ourDecimal = 5.

How to Convert Arabic Numbers to Hindi Excel ?

if you want to convert numeric numbers (1234567890) to Arabic numbers (Hindi)(ูกูขูฃูคูฅูฆูงูจูฉู ) select the area of cells that you want to change press ctrl + 1 for format cell go to custom and type this code: [$-2060000]0 Note: Hindi numbers are ูกูขูฃูคูฅูฆูงูจูฉู  but we generally call them Arabic numbers which is not correct.

How to show hidden files in Finder in MacOS ?

Unveiling the Hidden: How to Show Hidden Files in macOS Finder Ever misplaced a file or folder in your Mac and suspect it might be hidden? Fear not! macOS hides certain system files by default, but you can easily reveal them with a few simple tricks. Here are three methods to show hidden files in your Finder: Method 1: Using the Keyboard Shortcut (Simple & Quick) ๐Ÿ”— Open any Finder window.