What is a service
A service is simply code which is running , and this code , does not have a GUI . The code runs , on the main thread of its application (hosted process) , unless the … Read More
A service is simply code which is running , and this code , does not have a GUI . The code runs , on the main thread of its application (hosted process) , unless the … Read More
remote: Invalid username or password. fatal: Authentication failed for 'https://github.com/mohamad-wael/tmp.git/'
A possible solution
The plugin cordova audio recorder , can be used to record audio , on android and iOS . This plugin , provides an api , which is accessible , using the global object cordova.plugins.audioRecorder
.
The api … Read More
The cordova media capture plugin , can be used to capture audios , images , and videos , using a smartphone .
This plugin adds the capture
object , accessible globally , when the deviceready
event is … Read More
Two options for compiling C and C++ , and other kinds of source code files under windows , are : the cygwin-gcc
compiler , and the mingw-gcc
compiler .
For source code , that uses the posix api , … Read More
A character can be a letter , a number , a sign , an emoji , or anything that can be written in any form .
In C++ there is the source character set , … Read More
A form is anything which is to be evaluated .
Lisp is formed of two things : atoms and cons .
An atom
is anything which is not a cons
, a cons
holds two references.
A list
is … Read More
This application uses google reverse image search , in order to try and guess what an image represents . It simply returns the text found in the topstuff
element , returned by google , when submitting an image , … Read More
The bool
type is one of the c++ fundamental data type , a fundamental data type has a cpu hardware mapping .
The bool
type is used for boolean values . A boolean value is the result of a … Read More
A symbol is an atom , an atom is everything which is not a cons . A list is anything which is enclosed by parenthesis .
(1 2 3 ) (defun square(num ) (* num num ) ) ;;;Two… Read More