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
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.
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
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 |
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
/** | |
* 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; |
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
console.log('Hello World!'); |
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
#sidebar { | |
min-width: 250px; | |
max-width: 250px; | |
} |
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
### 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 ### |
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
import java.util.*; | |
//Define the class decryption. | |
public class decryption | |
{ | |
//Define the main() method. |
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
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 | |
} |
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
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 | |
} |
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
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({ |
NewerOlder