Tinkernut Labs



  • How To Get A Super Cheap Windows 8 Tablet

    November 30, 2012 // davisde // Software Tips Tags: 8, android, apple, cheap, eight, ios, ipad, iphone, ipod, nook, rt, screen, super, swipe, tablet, touch, windows 5 Responses


    Want to try out the Windows 8 tablet functionality, but don’t want to dish out hundreds of bucks for the Microsoft Surface Tablet? Use this simple hack to turn any Android or iOS touchscreen device into a functional Windows 8 tablet.

     

    Links used in the video:

    http://goo.gl/PxPY0

    http://goo.gl/BIpZl

  • Make A Media Center For Less Than $40

    October 6, 2012 // davisde // Computer Hardware Tags: android, apple, center, cheap, computer, device, games, ios, ipad, iphone, media, movies, music, pi, portable, raspberry, server, smartphone, stream, television, tv, xbmc 6 Responses


    Learn how to make a Media Server using a $35 raspberry pi device and XBMC.

     

    http://wiki.xbmc.org/index.php?title=Raspberry_Pi

     

  • Make A Simple Responsive Website

    April 20, 2012 // davisde // Programming Tips Tags: android, browser, coding, devices, html, ipad, iphone, mobile, programming, resize, website 14 Responses


    [vc_row][vc_column width=”2/3″][vc_separator][venera_framed_image content_type=”video” css_animation=”appear” frame_type=”browser” slider_engine=”flexslider” video_link=”https://www.youtube.com/watch?v=RSoWg29wPVc” browser_url=”https://www.youtube.com/watch?v=RSoWg29wPVc”][vc_separator][/vc_column][vc_column width=”1/3″][/vc_column][/vc_row][vc_row][vc_column width=”2/3″][vc_tabs][vc_tab title=”About This Project” tab_id=”1402713028-1-39e9a4-2f88123b-77946048-92947b1b-34c3″][vc_column_text]

    A responsive website is a website that changes it’s size and shape so that it can be viewed properly on any device. This is a tutorial that shows you the steps on how to make your own responsive website. Before jumping in, it’s best to watch my beginners guide to HTML and CSS at the links below.

    • Part 1 – HTML
    • Part 2 – CSS

    [/vc_column_text][/vc_tab][vc_tab title=”Code” tab_id=”1402753910272-3-8123b-77946048-92947b1b-34c3″][vc_button title=”View sample Site” target=”_blank” icon=”none” size=”btn-huge” href=”http://tinkernut.com/demos/315_responsive/index_responsive.html”][vc_column_text]

    How Does A Responsive Website Work?

    A new addition to CSS3 is an element called a Media query, so if you haven’t already, take a look at my CSS tutorial before continuing. A media query allows CSS code to be executed only when certain constraints are met. For instance, you can set the media query to turn the background color of the webpage blue only when the browser size is 480px. So using media queries, you can have several different sets of CSS for your website that can be activated for many different devices or any browser sizes.

     

    How To Create Media Queries

    Media Queries are elements of CSS3, so they go in the CSS portion of your webpage. Normally the CSS is located in the header using style tags. To create a media query, just add the code below to your CSS:

    <style>
    @media {
    }
    </style>
    

    Then after the @media declaration, you can set the parameters you want to target, such as browser size or device size. For browsers, you can use the max-width attribute. For devices, you can use the max-device-width attribute. To set the media parameters in between a maximum value and a minimum value, you can use both the max-width and min-width attributes within the same parameter.

    <style>
    @media screen and (max-width:480px){
    }
    </style>
    

    This is an example of a max and min parameter:

    <style>
    @media screen and (max-width:800px) and (min-width: 480px){
    }
    </style>
    

    The only thing left to do now is to add your own custom CSS code in between the curly brackets. The CSS can be minimal changes, or you can completely change the design and makeup of the entire site. How much or how little is completely up to you.

    <style>
    @media screen and (max-width:480px) {
         div.main{
    	width:300px;
         }
         div.row2col1{
    	font-size:0.5em;
         }
         img{
    	width: 250px;
         }
         p.welcome {
    	font-size:0.8em;
         }
         p.content {
    	font-size:0.7em;
         }
    					
    }
    </style>
    

     

     

    Sample Website Code

    Below is a finished copy of the webpage code used in the video:

    <html>
    	<head>
    		<title>My Data</title>
    		<style>
    			b{
    			color:#000000;
    			}
    			a{
    			text-decoration:none;
    			color:grey;
    			}
    			img{
    			display:block;
    			margin:auto;
    			}
    			p.welcome {
    				text-align:center;
    				font-family: “verdana”;
    				font-size:1.875em;
    				color:white;
    				font-style:bold;				
    			}
    			p.content {
    				font-family: “verdana”;
    				font-size:1em;
    				color:white;
    				font-style:italic;				
    			}
    			div.main{
    				width:50%;
    				margin:auto;
    				background:#251111;
    			}
    			div.row1{
    			width:100%;
    			}
    			div.row2{
    			width:100%;
    			}
    			div.row2col1{
    				float:left;
    				margin:0;
    				padding:1em;
    				color:white;
    			}
    			div.row2col2{
    				margin-left:25%;
    				background-color:#0A1616;
    				padding:1em;
    				border:15px solid #251111;
    			}
    			body{
    				background-color:#393635;
    				color:white;
    			}
    			@media screen and (max-width:480px) {
    					div.main{
    						width:300px;
    					}
    					div.row2col1{
    						font-size:0.5em;
    					}
    					img{
    						width: 250px;
    					}
    					p.welcome {
    						font-size:0.8em;
    					}
    					p.content {
    						font-size:0.7em;
    					}
    					
    			}
    			@media screen and (max-width:800px) and (min-width: 480px) {
    					div.main{
    						width:600px;
    					}
    					div.row2col1{
    						font-size:0.7em;
    					}
    					img{
    						width: 400px;
    					}
    					p.welcome {
    						font-size:1em;
    					}
    					p.content {
    						font-size:0.8em;
    					}
    					
    			}
    		</style>
    	</head>
    	<body>		
    		<div class="main">
    			<div class="row1">
    				<img src="logo.jpg"/>
    			</div>
    			<div class="row2">
    				<div class="row2col1">
    					Navigation
    					<hr align="left" width=75%>						
    						<ul>
    							<li><a href="about.html">About Me</a></li>
    							<li><a href="http://www.google.com">Google</a></li>
    						</ul>
    				</div>
    				<div class="row2col2"><p class="welcome" >Welcome to my data page!</p><p class="content" >This page is a work in progress that will eventually show places for data input, as well as data recall. Check back here for updates and more information! Thanks for visiting!</p>
    				</div>
    			</div>
    
    		</div>
    		
    	</body>
    </html>
    
    
    

     

    [/vc_column_text][/vc_tab][vc_tab title=”Important Links” tab_id=”1402753981900-3-10123b-77946048-92947b1b-34c3″][vc_column_text]

    Important Links:

    • Part 1 – HTML
    • Part 2 – CSS
    • Browser Sizing Utility
    • Browser Testing Tool

    Help support my channel:

    • http://www.patreon.com/tinkernut
    • Follow Tinkernut! Google +
    • Facebook
    • Twitter

    [/vc_column_text][/vc_tab][/vc_tabs][/vc_column][vc_column width=”1/3″][/vc_column][/vc_row]

  • Install Smartphone Apps In Windows

    April 14, 2012 // davisde // Software Tips Tags: android, apps, backup, computer, droid, emulator, friends, games, google, iphone, pc, play, run, smartphone, technology, windows 17 Responses




    Play, use and backup your apps to your PC using the Bluestacks android emulator. This video shows you how to set up and use it as well as some simple hacks to get the most out of Bluestacks.

    Links used in this video:
    Bluestacks – http://bluestacks.com
    Android Market apk – http://forum.xda-developers.com/showthread.php?t=1298332
    Increase storage size – http://forum.xda-developers.com/showpost.php?p=18432723&postcount=33

  • New Features for 2012!

    January 6, 2012 // davisde // Video Blog Tags: android, app, contest, forum, free, iphone, mobile, partner, promotion, update, videos 9 Responses


    Here’s what’s new with Tinkernut for 2012:
    Forums – http://www.tinkernut.com/forums
    Mobile App – http://tinkernutmobile.mobapp.at
    Chat – http://www.tinkernut.com/chat
    Tinkernerdz Points – http://www.tinkernut.com/register
    New tutorials will resume next Friday!
  • Partner Project 13: Mobile Apps

    January 5, 2012 // davisde // Partner Project Tags: ads, android, apps, become, cell, earn, famous, follow, gigafide, guide, how, ios, ipad, iphone, ipod, learn, mobile, money, names, partner, phone, popular, project, revenue, secrets, smartphone, statistics, stats, steps, tablet, tinkernut, to, Video, youtube 5 Responses


    In part 13 of the Partner Project, we discuss different options for making your website or Youtube channel mobile by showing you paid and free options for making mobile apps for your content.

    For those interested in coding your own apps from scratch, here’s the links to the individual developer portals for each phone:

    For Apple: http://developer.apple.com/ ($99)
    For Android: https://market.android.com/publish ($25)
    For Windows Phone 7: http://create.msdn.com/en-US/ ($99)
    For Blackberry: http://us.blackberry.com/developers/ ($0)
    And forJava Phones (which is essentially all dumb phones): http://www.oracle.com/technetwork/java/index-jsp-135888.html ($0)
    And here’s the free App creator programs available:
    AppInventor (Android): http://info.appinventor.mit.edu
    Andromo (Android): http://www.andromo.com – splits add revenue with you 50/50
    AppMakr (Android, iOS, WP7): http://www.appmakr.com
    Conduit (All Smartphone Platforms): http://mobile.conduit.com – splits add revenue with you after your app becomes popular
    If you’re using the app for a Youtube channel, here’s an extra tips to help you along:
    To embed your Youtube Channel as an RSS feed, use this format:
    feed://gdata.youtube.com/feeds/users/YOUR_CHANNEL/uploads
    Where YOUR_CHANNEL is the name of your Youtube channel.
  • Beginners Guide to Google Plus

    July 7, 2011 // davisde // Cool Websites, Web Tips Tags: app, basic, beginner, beta, droid, facebook, google, guide, iphone, media, networking, new, peek, plus, smartphone, sneak, social, ultimate 14 Responses





    Find out how to use Google Plus, Google’s new social networking service. This will guide you through ins and outs of how to get started.

  • How To Fake Twitter, Facebook and iPhone Conversations

    April 5, 2011 // davisde // Cool Websites, Featured Articles Tags: facebook, fake, funny, iphone, text, twitter 11 Responses


    Description:
    You know those sites with the funny iPhone and Facebook conversations? (http://funtweets.com , http://failbook.failblog.org , http://damnyouautocorrect.com) Believe it or not, a majority of them are faked. This video will show you how you can fake your own conversations.:

    http://www.fakeiphonetext.com
    http://faketweetbuilder.com
    http://fakebookquotes.appspot.com
    http://fakeconvos.com

  • How To Jailbreak A Verizon iPhone 4.2.6

    February 14, 2011 // davisde // Featured Articles, Hacks Tags: apple, cell, cellular, green, hack, iphone, jailbreak, phone, verizon 6 Responses


    This video will show you how to jailbreak your Verizon iPhone 4.2.6 using Greenpois0n 5.4

    Links:
    GreenPois0n – http://www.greenpois0n.com/
    Library of Congress Ruling – http://www.copyright.gov/1201/2010/Librarian-of-Congress-1201-Statement.html

  • How To Always Know What Song You are Hearing

    November 29, 2010 // davisde // Multimedia Tips Tags: android, cell, find, free, iphone, lost, music, name, phone, search, tutorial 27 Responses


    Ever heard a song and wanted to find out what the name of it is or who sings it? This video will show you several different resources for tracking down that song.

    Link Resources:
    http://www.google.com
    http://www.midomi.com
    http://www.bored.com/songtapper
    http://www.musipedia.org
    http://www.melodycatcher.com
    http://www.watzatsong.com
    http://www.shazam.com
    http://www.audiotag.info

← Older posts