Welcome to my awesome blog. I'm a student at Austin Coding Academy learning how to use APIs with AJAX requests. Check out my other posts!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # https://cymplecy.wordpress.com/2014/02/09/auto-install-x11vnc/ | |
| # To install, run LX Terminal and copy and paste the following code: | |
| # wget http://goo.gl/MbfUEp -O isx11.sh | |
| # and then press enter to download the installer | |
| # Once it has finished downloading, type the following and follow the instructions: | |
| # sudo bash isx11.sh | |
| # A very crude script to setup X11VNC inspired by MrEngmans Realtek RTL8188CUS script and based upon my autosimplesamba |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8" ?> | |
| <!-- SQL XML created by WWW SQL Designer, https://github.com/ondras/wwwsqldesigner/ --> | |
| <!-- Active URL: http://ondras.zarovi.cz/sql/demo/ --> | |
| <sql> | |
| <datatypes db="mysql"> | |
| <group label="Numeric" color="rgb(238,238,170)"> | |
| <type label="Integer" length="0" sql="INTEGER" quote=""/> | |
| <type label="TINYINT" length="0" sql="TINYINT" quote=""/> | |
| <type label="SMALLINT" length="0" sql="SMALLINT" quote=""/> | |
| <type label="MEDIUMINT" length="0" sql="MEDIUMINT" quote=""/> |
A Pen by Kevin Colten on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| $(document).ready(function() { | |
| $('form').on('submit', function (e) { | |
| e.preventDefault(); | |
| var todoText = $(this).find('#todo').val(); | |
| createTodo(todoText); | |
| $(this).find('#todo').val(''); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Front End Intermediate Section 2 Midterm | |
| //Directions: Write your answers in the space provided after the word answer. | |
| //1. What is a data type that can have only the values true or false? Provide an example. | |
| //Answer: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Car(color) { | |
| this.color = color; | |
| this.tires = 4; | |
| this.drive = function() { | |
| console.log("VVRRROOOMMM!!!") | |
| } | |
| } | |
| function Driveway(maxCars) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <!--Let browser know website is optimized for mobile--> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"/> | |
| <title>Laura + Kevin</title> | |
| <!--Import Google Icon Font--> | |
| <link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> |