Tinkernut Labs



  • How To Make Your Own Encryption

    December 10, 2011 // davisde // Programming Tips Tags: decode, decrypt, encode, encrypt, hacking, privacy, programming, script, Scripting, security, vb 62 Responses


    ****UPDATE: DOWNLOAD THE PROJECT FILES****

    This video lays out the steps for creating a very simple encryption and decryption program using free tools. The programming language we will be using is VB Script.  See if you can decrypt this text:

    wkjlue#vnrro#huxwxi#uxr\

     

    The code below is for the encrypting program:

    <—–Start copying below this line—–>
    ‘SIMPLE VB ENCRYPTION PROGRAM
    ‘Create a dialogue box that asks for the text to encode
    set x = WScript.CreateObject(“WScript.Shell”)
    mySecret = inputbox(“Enter text to be encoded”)
    ‘Reverse the submitted text
    mySecret = StrReverse(mySecret)
    ‘Open up an instance of Notepad to print the results after waiting for 1 second
    x.Run “%windir%\notepad”
    wscript.sleep 1000
    x.sendkeys encode(mySecret)’This function encodes the text by advancing each character 3 letters
    function encode(s)
    For i = 1 To Len(s)
    newtxt = Mid(s, i, 1)
    newtxt = Chr(Asc(newtxt)+3)
    coded = coded & newtxt
    Next
    encode = coded
    End Function
    <—-Stop copying above this line——>
    <—–Start copying below this line—–>
    ‘SIMPLE VB DECRYPTION PROGRAM
    ‘Create a dialogue box that asks for the text to encode
    set x = WScript.CreateObject(“WScript.Shell”)
    mySecret = inputbox(“Enter text to be encoded”)
    ‘Reverse the submitted text
    mySecret = StrReverse(mySecret)
    ‘Open up an instance of Notepad to print the results after waiting for 1 second
    x.Run “%windir%\notepad”
    wscript.sleep 1000
    x.sendkeys encode(mySecret)’This function encodes the text by advancing each character 3 letters
    function encode(s)
    For i = 1 To Len(s)
    newtxt = Mid(s, i, 1)
    newtxt = Chr(Asc(newtxt)-3)
    coded = coded & newtxt
    Next
    encode = coded
    End Function
    <—-Stop copying above this line——>
    <—–Start copying below this line—–>
    –Applescript encryption program
    set words_to_encrypt to “I want to encrypt sentences. Not just words!”
    set multiplier to 5
    set charList to {“a”, “b”, “c”, “d”, “e”, “f”, “g”, “h”, “i”, “j”, “k”, “l”, “m”, “n”, “o”, “p”, “q”, “r”, “s”, “t”, “u”, “v”, “w”, “x”, “y”, “z”,”A”, “B”, “C”, “D”, “E”, “F”, “G”, “H”, “I”, “J”, “K”, “L”, “M”, “N”, “O”, “P”, “Q”, “R”, “S”, “T”, “U”, “V”, “W”, “X”, “Y”, “Z”, “1”, “2”, “3”,”4″, “5”, “6”, “7”, “8”, “9”, “0”, ” “, “~”, “!”, “@”, “#”, “$”, “%”, “^”, “&”, “*”, “(“, “)”, “_”, “+”, “{“, “}”, “|”, “:”, “\””, “<“, “>”, “?”, “`”, “-“,”=”, “[“, “]”, “\\”, “;”, “‘”, “,”, “.”, “/”, “a”}considering case
    –get a list of numbers for the words corresponding to the item numbers of the characters in charList
    set p_letter_list to text items of words_to_encrypt
    set p_num_list to {}
    repeat with i from 1 to (count of p_letter_list)
    set this_letter to item i of p_letter_list
    repeat with j from 1 to count of charList
    set this_char to item j of charList
    if this_letter is this_char then
    set end of p_num_list to j
    exit repeat
    end if
    end repeat
    end repeat
    –encrypt the numbers
    set modulus to count of charList
    set c_num_list to {}
    repeat with i from 1 to (count of p_num_list)
    set p_num to item i of p_num_list
    set c_num to ((p_num * multiplier) mod modulus)
    set end of c_num_list to c_num
    end repeat
    –get the characters for the encrypted numbers corresponding to the characters in charList
    set c_letter_list to {}
    repeat with i from 1 to (count of c_num_list)
    set this_item to item i of c_num_list
    set end of c_letter_list to (item this_item of charList)
    end repeat
    –coerce the encrypted characters into a string
    set c_string to c_letter_list as string
    end considering
    <—-Stop copying above this line——>
  • How To Hack The Nook Color

    November 8, 2011 // davisde // Computer Hardware, DIY Projects Tags: android, froyo, hack, ipad, mod, nook, tablet, tinkernut, tips, tricks, tutorial 22 Responses


    <center></center>

    Take a Nook Color from Barnes & Nobel and turn it into a super-tablet with some pretty amazing features.

    https://launchpad.net/win32-image-writer
    http://mrm3.net/nook-color-updated-clockwork-recovery-bootable-sd
    http://wiki.cyanogenmod.com/wiki/Latest_Version

  • How To Make Incredible Costume Armor for Halloween

    October 25, 2011 // davisde // DIY Projects Tags: halloween, paper, pepakura, star, wars 10 Responses


     

    Turn your comic, sci-fi and video game memories into a reality by making your own costume armor.

    “Make Your Own Flash Game” winner – http://www.stencyl.com/game/play/8512

    Pepakura Viewer – http://www.tamasoft.co.jp/pepakura-en/download/viewer.html
    Pepakura Tutorial – http://www.youtube.com/watch?v=LsiGgR9HVJQ
    Resing & Fiberglass tutorial – http://www.youtube.com/watch?v=Ln9zVwjezBQ
    http://www.youtube.com/watch?v=Z1WeaZzg6zw
    Bondo Tutorial – http://www.youtube.com/watch?v=gaQWXduHuOQ

  • Make Your Own Flash Game For Free

    October 18, 2011 // davisde // Gaming Tags: actionscript, android, arcade, create, flash, free, fun, game, Gaming, ios, make, shooter, stencyl, tinkernut, tips, tricks, tutorial 9 Responses


    Learn how to make a custom flash game from scratch without any coding knowledge using the free software from Stencyl.

    Important links:
    http://www.glitch.com
    http://www.stencyl.com

    Give my game a try:
    http://www.stencyl.com/game/play/8351

  • Tinkernut Flash Game Contest

    October 11, 2011 // davisde // Gaming Tags: adobe, contest, flash, game, Gaming, online, stencyl, tinkernut, tips, tricks, tutorial, win 8 Responses


    To kick off new episodes of Tinkernut, I’m holding a Flash Game contest to see who can come up with the coolest Flash game. The winner will get a $50 itunes gift card as well as promotion in my video on October 24th. You can find the full set of rules here:

    http://www.tinkernut.com/forums/topic/tinkernut-flash-game-contest

  • How To Download and Install Windows 8

    September 22, 2011 // davisde // Software Tips Tags: 8, download, eight, guide, how, install, microsoft, operating, os, peek, preview, sneak, software, system, tinkernut, tips, to, tricks, tutorial, virtual, virtualbox, windows 22 Responses


    Preview the next version of Windows by downloading it or free and installing it on Virtualbox. This will let you install it and use it without screwing up the rest of your computer.

    Download:
    Windows 8 – http://msdn.microsoft.com/en-us/windows/apps/br229516
    Virtualbox – http://www.virtualbox.org
    MetroController – http://winaero.com/download.php?view.15
    Windows 8 Start Menu Toggle – http://solo-dev.deviantart.com/art/Windows-8-Start-Menu-Toggle-258422929

  • Password Cracking 101

    September 7, 2011 // davisde // Hacks Tags: attack, brute, dictionary, force, hack, hacker, hacking, password, private, science, steal, tinkernut, tips, tricks, tutorial, unlock 43 Responses


    This video is an introduction to the science behind password cracking. If your curious about what it’s all about, then this video is for you!

    500 Worst Passwords of all time:
    http://www.whatsmypass.com/the-top-500-worst-passwords-of-all-time

    Appnimi PDF Unlocker:
    http://www.appnimi.com/file/pdf-unlocker

    Password complexity cracking stats:
    http://www.lockdown.co.uk/?pg=combi

  • What is hacking?

    September 1, 2011 // davisde // Hacks Tags: anonymous, definition, hack, hacker, hacking, how, steve, tinkernut, tips, to, tricks, tutorial, what 27 Responses


    What do you think of when you hear the word “hack”? Do you know what it means to really be a hacker? This video tries to help shed some light on hacking.

    Hacker Manifesto:

    http://www.mithral.com/~beberg/manifesto.html

    How to become a hacker:

    http://catb.org/~esr/faqs/hacker-howto.html

  • Make Free HTML5 Animations

    August 21, 2011 // davisde // Multimedia Tips, Web Tips 16 Responses


    Use Adobe’s new Edge software to create HTML5 animations and say goodbye to Flash!
    Download Adobe Edge here:
    http://labs.adobe.com/technologies/edge/

    View live example and download project files here:
    http://www.tinkernut.com/forum/topic/make-free-html5-animations

  • Save Your Digital Life!

    August 3, 2011 // davisde // Safety & Security Tags: avatar, backup, cloud, digital, download, facebook, flickr, friends, gmail, google, hotmail, life, live, microsoft, photos, picture, restore, rss, save, twitter 8 Responses


    Don’t wait for disaster to strike your web accounts. Be prepared and back them all up using these simple tools.

    Photo Grabber:
    http://code.google.com/p/photograbber/

    Google Takeout:
    https://www.google.com/takeout

    Backup Pop3 e-mail accounts:
    http://www.howtogeek.com/howto/44791/how-to-backup-your-web-based-email-account-using-thunderbird

    Twitter RSS:
    http://search.twitter.com/search.rss?q=Your_Twitter_Name

    Backupify:
    https://www.backupify.com

    View/Add more suggestions:
    http://www.tinkernut.com/groups/videotutorial-extras/forum/topic/backup-your-online-accounts

← Older posts
Newer posts →