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
public class ErrorMessage { | |
private String fieldName; | |
private String message; | |
public ErrorMessage(String fieldName, String message) { | |
this.fieldName = fieldName; | |
this.message = message; | |
} |
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> | |
<meta charset="UTF-8"> | |
<link type="text/css" rel="stylesheet" href="../CSS/calc-style.css"> | |
<script type="text/javascript" src="../JAVASCRIPT/calc-script.js"></script> | |
<title>Coder Calculator</title> | |
</head> | |
<body> | |
<div class="row"> | |
<p>Calculator<small> made by </small><label>Coder ACJHP</label></p> |
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="style.css"> | |
<title>Login page</title> | |
</head> | |
<body> | |
<section> | |
<form action="" class="container" id="login-form"> |
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
// DateHelper.swift | |
// | |
// Created by Coder ACJHP on 2.08.2018. | |
// Copyright © 2018 Coder ACJHP. All rights reserved. | |
// | |
import Foundation | |
extension Date { | |
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
// | |
// ViewController.swift | |
// CountAnm | |
// | |
// Created by Onur Işık on 19.11.2018. | |
// Copyright © 2018 Onur Işık. All rights reserved. | |
// | |
import UIKit |
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
// | |
// SecondViewController.swift | |
// DrawLines | |
// | |
// Created by Onur Işık on 17.12.2018. | |
// Copyright © 2018 Onur Işık. All rights reserved. | |
// | |
import UIKit |
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
// | |
// CachableImageView.swift | |
// Test | |
// | |
// Created by Coder ACJHP on 26.10.2018. | |
// Copyright © 2018 Coder ACJHP. All rights reserved. | |
// | |
import UIKit |
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
import UIKit | |
protocol VerticalSliderDelegate: class { | |
func sliderValueIsChanged(_ verticalSlider: CCVerticalSlider, value: CGFloat) | |
} | |
@IBDesignable open class CCVerticalSlider: UIView { | |
let shapeLayer = CAShapeLayer() |
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
/* | |
MIT License | |
Copyright (c) 2018 toddheasley | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is | |
furnished to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all |
OlderNewer