This file contains 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
<html> | |
<head> | |
<script | |
src="https://code.jquery.com/jquery-3.6.0.slim.min.js" | |
integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI=" | |
crossorigin="anonymous"> | |
</script> | |
<script src="https://cdn.jsdelivr.net/npm/web3@latest/dist/web3.min.js"></script> | |
<script type="module"> | |
import { ethers } from "https://cdn.ethers.io/lib/ethers-5.2.esm.min.js"; |
This file contains 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
// SPDX-License-Identifier: MIT | |
// Author: Janusz Chudzynski | |
pragma solidity >=0.4.22 <0.9.0; | |
contract Faucet { | |
mapping(address=>uint) lastTransfers; | |
uint amountToWithdraw = 10 ** 18 * 0.01; | |
function requestTokens(address payable requestor) external { |
This file contains 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
// SPDX-License-Identifier: MIT | |
// Author: Janusz Chudzynski | |
pragma solidity >=0.4.22 <0.9.0; | |
contract Faucet { | |
mapping(address=>uint) lastTransfers; | |
uint maxAllowed = 10 ** 18 * 5000; | |
constructor() { |
This file contains 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
<script> | |
"use strict"; | |
</script> | |
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script> | |
<script src="https://use.fontawesome.com/da66ce1fd6.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/rsvp/3.5.0/rsvp.js"></script> | |
<script src="https://www.gstatic.com/firebasejs/3.8.0/firebase.js"></script> | |
<script src="http://atcwebapp.argo.uwf.edu/summerinterns/web/scripts/fire_script.php"></script> | |
<script src="http://atcwebapp.argo.uwf.edu/summerinterns/web/scripts/si_script.php"></script> |
This file contains 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
Daniel | Ley | [email protected] | |
---|---|---|---|
Kyl | Cunn | [email protected] | |
Debah | Gler | [email protected] |
This file contains 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
class ListNode{ | |
var val:Int? | |
var next:ListNode? | |
init(){} | |
init(x:Int){ | |
self.val = x | |
} | |
} |
This file contains 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
// Playground - noun: a place where people can play | |
import UIKit | |
func parseTwitterDate(twitterDate:String, outputDateFormat:String)->String?{ | |
let formatter = NSDateFormatter() | |
formatter.dateFormat = "EEE MMM dd HH:mm:ss Z yyyy" |
This file contains 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
jmc72$ ./adb shell monkey -p com.example.testingandroid -v 500 | |
:Monkey: seed=1397651478340 count=500 | |
:AllowPackage: com.example.testingandroid | |
:IncludeCategory: android.intent.category.LAUNCHER | |
:IncludeCategory: android.intent.category.MONKEY | |
// Event percentages: | |
// 0: 15.0% | |
// 1: 10.0% | |
// 2: 2.0% | |
// 3: 15.0% |
This file contains 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.itenwired.itenconference.model; | |
import android.util.Log; | |
import java.text.ParseException; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
/** | |
* Created by blcooley on 9/10/13. |
This file contains 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
// AlbumListData.m | |
// Created by Janusz Chudzynski on 3/25/13 | |
#import "AlbumListData.h" | |
#import "Album.h" | |
@interface AlbumListData()<UITableViewDelegate, UITableViewDataSource> | |
@property (nonatomic,weak) UITableView * tableView; | |
@property (nonatomic,strong) NSArray * objects; |
NewerOlder