RPS ํจ์น ๋ด์ฉ: https://github.com/torvalds/linux/commit/0a9627f2649a02bea165cfd529d7bcb625c2fcad
RFS ํจ์น ๋ด์ฉ: https://github.com/torvalds/linux/commit/fec5e652e58fa6017b2c9e06466cb2a6538de5b4
/*| import java.util.Enumeration; | |
| import java.util.Vector; | |
| public class Customer | |
| { | |
| private String _name; | |
| private Vector _rentals = new Vector(); | |
| public Customer(String name) | |
| { |
| class ChildrensPrice extends Price | |
| { | |
| int getPriceCode() | |
| { | |
| return Movie.CHILDRENS; | |
| } | |
| double getCharge(int daysRented) | |
| { | |
| double result = 1.5; |
| set ai | |
| set si | |
| set sm | |
| set nu | |
| set title | |
| set expandtab | |
| set tabstop=4 | |
| set cursorline | |
| set shiftwidth=4 |
| import UIKit | |
| import Foundation | |
| import Alamofire | |
| class MyFriendsController: UITableViewController { | |
| var refresher: UIRefreshControl! | |
| var myFriendsInfo: [PersonInfo] = [] | |
| @IBOutlet weak var navigationBar: UINavigationItem! | |
| var myActivityIndicator = UIActivityIndicatorView(activityIndicatorStyle:UIActivityIndicatorViewStyle.gray) |
| import time | |
| import RPi.GPIO as GPIO | |
| GPIO.setmode(GPIO.BCM) | |
| GPIO.setup(27, GPIO.OUT) | |
| GPIO.setup(23, GPIO.IN, pull_up_down=GPIO.PUD_UP) | |
| print('Press the button') | |
| try: |
RPS ํจ์น ๋ด์ฉ: https://github.com/torvalds/linux/commit/0a9627f2649a02bea165cfd529d7bcb625c2fcad
RFS ํจ์น ๋ด์ฉ: https://github.com/torvalds/linux/commit/fec5e652e58fa6017b2c9e06466cb2a6538de5b4
/*| #canvas-wrapper { | |
| background: #d3d3d3; | |
| height: 500px; | |
| width: 300px; | |
| } | |
| h1 { | |
| margin: 10px 0; | |
| } |
| import click | |
| import os | |
| from glob import glob | |
| from pydub import AudioSegment | |
| @click.command() | |
| @click.argument('src') | |
| @click.argument('dst') |
| import java.time.LocalDate | |
| import java.time.LocalTime | |
| import java.time.ZoneId | |
| fun main() { | |
| val nowDate = LocalDate.now() | |
| val nowTime = LocalTime.now() | |
| val zoneId = ZoneId.of("Asia/Seoul") | |
| val instant = nowDate |