Skip to main content

Posts

Latest odoo module for logo printing business

 Latest odoo module for logo printing business  Elements: Product Attribute Model I can delete not critical attributes Can not delete critical attributes I can restore deleted [important] attributes Critical attributes have some critical values I can not delete critical values for critical attributes
Recent posts

Install odoo 16 in the cloud server

Install odoo 16 in the cloud server Installing Dependencies The first step is to install Git , Pip , Node.js , and development [tools required to build](https://linuxize.com/post/how-to-install-gcc-on-ubuntu-20-04/ Odoo dependencies: sudo apt update sudo apt install git python3-pip build-essential wget python3-dev python3-venv python3-wheel libfreetype6-dev libxml2-dev libzip-dev libldap2-dev libsasl2-dev python3-setuptools node-less libjpeg-dev zlib1g-dev libpq-dev libxslt1-dev libldap2-dev libtiff5-dev libjpeg8-dev libopenjp2-7-dev liblcms2-dev libwebp-dev libharfbuzz-dev libfribidi-dev libxcb1-dev

Simple hash function and hash table algorithm with an example of application for strings

S imple hash function and hash table algorithm  with an example of application for strings    Hi there, If you need to use and try a good and simple hash function algorithm for any purpose especially for string query. I hope that your answer be in this article.   Hash function data structure consists of: Chaining node Table of nodes Hash function   Chaining node: Node is a container for the value (a word for example), and it links with another node forming a chain of nodes.  To define a node in C for example: typedef struct node {     char word[word-length];     struct node *next; } node; where  struct node is the name of the node in chain, we shortcut the struct node into simply node in the last line above. Struct is the datatype of the node. char word is the variable that carries the value (a word for example) that we will search for up-next. word-length is an integer (46 for example), and it represents the maximum number of characters that word can carry.   Hash Table (table of

Calculus ninth edition by Ron Larson, Bruce H. Edwards

R ead and download Calculus book by Ron Larson and Bruce H. Edwards If you would like study any of these topics: fitting graphs and models to data, limits, differentiations and applications of differentiation, integrations and applications of integration, logarithmic and exponential  functions, differential equations, infinite series, vectors and geometry of space, multiple integration, vector analysis I recommend reading this fantastic valuable book: Here is a course taught at MIT, through which you can study single variable calculus:   If you ask yourself a question "Why should I learn Calculus?", the answer is that Calculus is a super powerful mathematical tool for scientists and engineers. Through Calculus we can measure quantities that are not very easily to be measured. The greatest human achievements would not be made without the discovery of Calculus. The discovery of Calculus was made by both Newton and Leibniz . Through Calculus Newton could discover the Gene

Use CS50 library in my local machine offline to run codes in C language

M ake your PC ready to run codes in C language How to use CS50 library in your local machine offline Here are three videos presented by someone, they will guide you to make your PC ready to run C files. How to Download and Install Visual Studio Code ( VS Code ) on Windows 10 How to Download and Install C Cpp Toolset ( gcc g++ gdb ) in Windows 10 using mingw-w64 and msys2 How to Set up Visual Studio Code for C and C++ Programming After watching the above videos and following the steps in them, you can apply the following steps in order to use CS50 library for implementing codes written in C language in your local machine offline. Download the zip file from Github Release,  https://github.com/cs50/libcs50/releases Unzip it, locate to libcs50/src/, you can get cs50.h and cs50.c Copy cs50.h and cs50.c in the Workspace Create and save a C file which uses cs50 libraries in the Workspace. We can call it hello.c, hello.c should be with cs50.h and cs50.c in the same folder in

What are Custom Domains and Subdomains?

T he difference between a URL, Domain, Subdomain, Hostname etc. The way to setup Custom Domains and Subdomains. What is a subdomain? Add a subdomain

My activity through 2021-2022

S tudying at HarvardX Hi, everyone. I am Mohamed Moustafa Alkobrosli. I began thinking of studying programming a year ago. It began with me when I started freelancing with the TestIO community. They were teaching me in addition to hiring me. My role there was to report bugs as a user in new apps and websites. After a couple of months, I decided to program apps like those instead of just discovering bugs in them. I surfed the internet trying to find a trusted resource for me as a beginner. Thanks, Heaven. I found the CS50x course on edX. I quickly got enrolled in the course. At first sight, I found full answers to all questions in my head. The fear vanished. Professor David J. Malan encouraged me to make a new correct start. He just inspired me. During the CS50x course, I made my own searching & sorting algorithm. I also made a super quick hash function on my own. I have built my own website: http://kobros-tech.com. I actually wished I have participated in the live shot with Mr