How to add Google Map Embed API for websites
Embed and set up a Google maps window into your website or blog post which comes with unlimited free usage
What are the types of Proofs methods, Rules of inference, Propositional equivalence
By:
David
On:
Sat 05 September 2015
Confusing terminology aside, this is a summary of the most important stuff needed for doing proof problems in Discrete Mathematics
How to fix JavaScript 'e.pageX' returning 'nan' on Android
If your JavaScript touch code works perfectly on ios but does nothing on Android, "e.pageX" might be the problem. "e.pageX" simple does not work on Android and returns "not a number", though it works fine both on desktop browsers and ios Safari. Use "e.targetTouches[0].pageX" for Android to fix this problem.
How to increase Blogger post text font size
Blogger's default html font size for posts is a bit small. To increase the size of the body of your posts, the most intuitive way for many is to change the text size in the tool bar when writing a post. This comes with many inconveniences. A better approach is to add a CSS rule.
What are the diffrent ways of saying proposition p → q
Category: Math
Tag:
Discrete Math
By:
David
On:
Sat 29 August 2015
The simple statement p → q in discrete mathematics gets confusing when put into English.
Here is a table of the common ways of saying p → q:
How to use MathJax to format HTML math expressions
By:
David
On:
Thu 27 August 2015
formatting math expressions with HTML and CSS alone is possible yet pretty frustrating,
a simpler and more beautiful alternative is to use MathJax, which is a JS display engine.
What are cloud computing service models SaaS, PaaS, IaaS
The meanings of SaaS, PaaS, IaaS cloud service models
How to easily create HTML floating clouds using marquee
By:
David
On:
Thu 20 August 2015
The easiest way to create floating clouds is simply using HTMLs marquee tag and a cloud icon from font awesome.
No complicated animation needed.
How to use GDAL Python to transform geotiff pixels to lat lon real-word coordinates
GDAL gdaltransform is a easy way to transform a pixel of a tiff image to its corresponding lat/lon coordinate.
How to check all files and find a file type in all directories in Python
Going through all the directories to find the path of a specific type of file is easy in Python. This helps with mass processing files.