The idea , is that a word must be readable , and understandable on first eye sight . So each word has a usable meaning on eye sight . For example , imagine that a voice recorder api , … Read More
The idea , is that a word must be readable , and understandable on first eye sight . So each word has a usable meaning on eye sight . For example , imagine that a voice recorder api , … 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
While dumping a mysql database , and if you receive the error :
mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
A possible solution to fix… 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