https://www.technipages.com/android-developer-options-is-missing Open the “Settings” app. Scroll down to the bottom and select “About device“, “About phone” or “About tablet“. On some models, select “General” before this step. Scroll down to the bottom and tap “Build number” repeatedly. A message should appear on the screen that says “You are now * steps away[…]
Creating and using your own Svg icon in react and Material-ui
Material-ui (ratings component) In my case I wanted the custom SVG below to fill well into the material-ui rating component structure Visually this is how that structure should look like my icon should get filled with the right colors. I should’nt have to write custom css to match whats already[…]
Illustrator – Things to know
Slicing through a vector, as simple as it sounds can cause confusing at first. But its actually a problem quite simple to fix. Converting images to svg https://react-svgr.com/playground/ Converting paths/lines to shapes Select all paths you want to convert to shapes
React-Native Borders Only on one side of Text Component
Now I attempt to remove the left and right borders No change Final Code
Capture last command In bash
For whatever reason you may want to save the last command you wrote. Heres a way to do so. this command allows you to only capture commands that through an error
Solving React Hooks’ invalid hook call warning
Invalid hook call. Hooks can only be called inside of the body of a function component After importing a react component called Formik, I started to get the error above. The error gives me three reasons as to why it may be occuring. You might have mismatching versions of React[…]
How to create custom Permalinks for tags in WordPress
Environment Docker wordpress container, AWS Linux based vm server Issue These permalinks end up going to pages I have no use for. I want to change the location these tags direct to. I found a wordpress filter that gives me direct access to the original permalink as they get outputted[…]
Gimp through Mac VNC client
I want to be able to blur out important information from images that i’m using in this blog. In order to do so I must have a image editing program. I could install it on my local comp, but why? The cloud is where its at. Easy Access Installing it[…]
Featured images are getting cropped in WordPress
I have a border of 17 around the image. But as you can see its cut on the right and left side. Below is how the image is supposed to look Its width is supposed to be 945 is the width it is cropping it to. In most cases, the[…]
Adding search field to wordpress site
Wanted to add a search field to my homepage site. Got a great start referencing this article https://wedevs.com/133739/add-search-bar-in-wordpress/ Scroll down to the manual section to see what i referenced Oops!!! When I perform a search, The search bar shows up twice. Good thing wordpress api has a “is_search” method to[…]