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
| @ECHO OFF | |
| :: Windows batch program to check three directories for Eclipse | |
| :: and launch it with my workspace, if it exists. | |
| SETLOCAL ENABLEEXTENSIONS | |
| SET me=%~n0 | |
| SET parent=%~dp0 | |
| SET deskEclipse="C:\Users\Public\Desktop\Eclipse\eclipse-java-luna\eclipse" | |
| SET progEclipse="%ProgramFiles:"=%\Eclipse\eclipse-java-luna\eclipse" |
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
| # /etc/hosts | |
| 127.0.0.1 localhost | |
| # Block traffic from these ad sites: | |
| #+ doubleclick domains | |
| 0.0.0.0 doubleclick.net | |
| 0.0.0.0 www.doubleclick.net | |
| 0.0.0.0 cm.g.doubleclick.net | |
| 0.0.0.0 www.cm.g.doubleclick.net |
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
| /* | |
| * To change this license header, choose License Headers in Project Properties. | |
| * To change this template file, choose Tools | Templates | |
| * and open the template in the editor. | |
| */ | |
| package itcs3166_project; | |
| /** | |
| * | |
| * @author Kyle1 |
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
| // int_dll.c | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| // doubly linked list node struct | |
| struct node { | |
| int id; | |
| struct node * prev; | |
| struct node * next; |
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
| """ Includes a few handy JSON types. | |
| ``` | |
| JsonPrimitive = str | int | float | bool | None | |
| Json = JsonPrimitive | dict[str, 'Json'] | list['Json'] | |
| JsonObject = dict[str, Json] | |
| JsonArray = list[Json] | |
| ``` | |
| """ |