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
| # Install oh-my-posh and add executable permission. | |
| sudo wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh | |
| sudo chmod +x /usr/local/bin/oh-my-posh | |
| # Setup themes and set permission. | |
| mkdir ~/.poshthemes | |
| wget https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/themes.zip -O ~/.poshthemes/themes.zip | |
| unzip ~/.poshthemes/themes.zip -d ~/.poshthemes | |
| chmod u+rw ~/.poshthemes/*.json |
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
| { | |
| "$help": "https://aka.ms/terminal-documentation", | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "actions": | |
| [ | |
| { | |
| "command": | |
| { | |
| "action": "copy", | |
| "singleLine": false |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| <header class="border-b md:flex md:items-center md:justify-between p-4 pb-0 shadow-lg md:pb-4"> | |
| <!-- Logo text or image --> | |
| <div class="flex items-center justify-between mb-4 md:mb-0"> | |
| <h1 class="leading-none text-2xl text-grey-darkest"> | |
| <a class="no-underline text-grey-darkest hover:text-black" href="#"> | |
| Site Title | |
| </a> | |
| </h1> |
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
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
| "profiles": | |
| [ | |
| { | |
| "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", |
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
| { | |
| "globals" : | |
| { | |
| "alwaysShowTabs" : true, | |
| "defaultProfile" : "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
| "initialCols" : 120, | |
| "initialRows" : 30, | |
| "keybindings" : | |
| [ | |
| { |
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
| package com.example.ljcnavarro.navarro; | |
| import android.os.CountDownTimer; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.os.Bundle; | |
| import android.view.View; | |
| import android.view.Window; | |
| import android.view.WindowManager; | |
| import android.widget.Button; | |
| import android.widget.TextView; |
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> | |
| <head> | |
| <title>jQuery Validation</title> | |
| <script type="text/javascript" src="jquery.js"></script> | |
| <script type="text/javascript" src="jquery-ui.js"></script> | |
| <link rel="stylesheet" type="text/css" href="bootstrap.css"> | |
| <link href="jquery-ui.css" rel="stylesheet"> | |
| <style type="text/css"> | |
| body{ |
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
| <?php | |
| $host="localhost"; // Host name | |
| $username="root"; // Mysql username | |
| $password=""; // Mysql password | |
| $db_name="website"; // Database name | |
| $tbl_name="members"; // Table name | |
| // Connect to server and select databse. | |
| mysql_connect("$host", "$username", "$password")or die("cannot connect"); |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Diagnostics; | |
| using System.Windows.Forms; | |
| namespace Jar_Starter | |
| { | |
| class Program |
NewerOlder