Skip to content

Instantly share code, notes, and snippets.

View intelliapps-io's full-sized avatar

Intelliapps intelliapps-io

View GitHub Profile
Basics of Computer Science/Introduction to Programming
Discrete Structures I/Algorithm Analysis
Discrete Structures II/Algorithm Analysis
Discrete Structures II/Computer Organization and Architecture
Introduction to Programming/Computer Organization and Architecture
Introduction to Programming/Data Structures
Introduction to Programming/Unix Systems Programming
Introduction to Programming/Database Design and Applications
Data Structures/Unix Systems Programming
Introduction to Programming/Software Process Management
We can't make this file beautiful and searchable because it's too large.
unix,date,symbol,open,high,low,close,Volume ETH,Volume USDT
1.62337E+12,6/11/2021 0:00,ETH/USDT,2471.01,2472.49,2445.1,2453.92,5473.93898,13462841.89
1.62337E+12,6/10/2021 23:00,ETH/USDT,2488.52,2495.75,2461.75,2471.09,12337.83739,30625273.24
1.62336E+12,6/10/2021 22:00,ETH/USDT,2483.46,2495.15,2474.18,2488.56,12874.56556,31989082.23
1.62336E+12,6/10/2021 21:00,ETH/USDT,2469.18,2486.76,2451.68,2483.54,17326.25179,42789168.85
1.62336E+12,6/10/2021 20:00,ETH/USDT,2458.71,2470,2425.11,2469.18,32918.18443,80467197.96
1.62335E+12,6/10/2021 19:00,ETH/USDT,2473.26,2481.72,2447,2458.69,20214.52342,49800244.58
1.62335E+12,6/10/2021 18:00,ETH/USDT,2465.36,2476.37,2453.95,2473.4,26920.97784,66457356.18
1.62334E+12,6/10/2021 17:00,ETH/USDT,2479.99,2488.95,2447,2465.43,48472.74673,119467767.6
1.62334E+12,6/10/2021 16:00,ETH/USDT,2512.01,2524.4,2472.01,2479.99,38903.62236,96850049.27
@intelliapps-io
intelliapps-io / InputHelpers.java
Last active October 9, 2020 15:27
Java Scanner Input Helpers
/**
* Created: 7/19/2019
* Updated: 10/9/2020
* Uploaded: 10/5/2020
* Author: Jared Moore
* Gist: https://gist.github.com/intelliapps-io/3d9e0773586927b910379ca542a179f8
*/
import java.util.Scanner;
@intelliapps-io
intelliapps-io / rentalandsupply.js
Created July 13, 2020 18:35
Reasonable Rental & Supply Script
console.log('Hello World!');
@intelliapps-io
intelliapps-io / rentalandsupply.css
Created July 9, 2020 20:49
Reasonable Rentals Custom CSS
#sidebar {
min-width: 250px;
max-width: 250px;
}
@intelliapps-io
intelliapps-io / ddclient.conf
Created January 17, 2020 04:05
Namecheap Dynamic DNS ddclient config
### START - DO NOT EDIT ###
daemon=600
ssl=yes
use=web
web=dynamicdns.park-your-domain.com/getip
protocol=namecheap
server=dynamicdns.park-your-domain.com
wildcard=yes
protocol=namecheap
### END - DO NOT EDIT ###
import java.util.*;
//Define the class decryption.
public class decryption
{
//Define the main() method.
@intelliapps-io
intelliapps-io / useForm.tsx
Created August 31, 2019 23:48
React Hook for Forms
import { useState } from "react";
export interface UseFormMethods<FormFields> {
setFieldValue: (key: keyof FormFields, value: any) => void;
setFieldsValue: (values: FormFields) => void;
getFieldValue: (key: keyof FormFields) => any;
fieldsValue: FormFields;
clearForm: () => void
}
@intelliapps-io
intelliapps-io / useForm.tsx
Created August 31, 2019 23:48
React Hook for Forms
import { useState } from "react";
export interface UseFormMethods<FormFields> {
setFieldValue: (key: keyof FormFields, value: any) => void;
setFieldsValue: (values: FormFields) => void;
getFieldValue: (key: keyof FormFields) => any;
fieldsValue: FormFields;
clearForm: () => void
}
import React, { useState } from 'react';
import './App.css';
export function useForm<FormFields>(initalValues: FormFields): [FormFields, (event: React.ChangeEvent<any>) => void] {
const [values, setValues] = useState<FormFields>(initalValues);
return [
values,
event => {
setValues({