I hereby claim:
- I am khazbs on github.
- I am p3ps1m4n (https://keybase.io/p3ps1m4n) on keybase.
- I have a public key ASAUBaKV6niYKZh8QnyvAaNFraJXC6eL7stJIiStEmFFsQo
To claim this, I am signing this object:
| group: Hotel_Adam | |
| RoomType = { | |
| tid:number, rtName:string, nightPrice:number | |
| 1, "Standard single room", 40 | |
| 2, "Standard double room", 50 | |
| 3, "Luxury double room", 60 | |
| 4, "Family of four room", 100 | |
| } |
| group: Hotel_Adam | |
| RoomType = { | |
| tid:number, rtName:string, nightPrice:number | |
| 1, "Standard single room", 40 | |
| 2, "Standard double room", 50 | |
| 3, "Luxury double room", 60 | |
| 4, "Family of four room", 100 | |
| } |
| server { | |
| # Listen for http: | |
| listen [::]:80; | |
| listen 80; | |
| # Handle . and www. | |
| server_name example.com www.example.com; | |
| # Redirect to https: | |
| return 301 https://$host$request_uri; |
| column = [line.strip().split()[1] for line in open('file.txt', 'r', encoding='utf-8')] |
I hereby claim:
To claim this, I am signing this object:
| using System; | |
| namespace MyNamespace | |
| { | |
| public static class DateTimeExtensions | |
| { | |
| public static DateTime GetLast(this DateTime date, DayOfWeek day) => | |
| date.AddDays(-(DaysInWeek - (int) day + (int) date.DayOfWeek) % DaysInWeek); | |
| public static DateTime GetNext(this DateTime date, DayOfWeek day) => |
| # Alias definitions. | |
| # You may want to put all your additions into a separate file like | |
| # ~/.bash_aliases, instead of adding them here directly. | |
| # See /usr/share/doc/bash-doc/examples in the bash-doc package. | |
| if [ -f ~/.bash_aliases ]; then | |
| . ~/.bash_aliases | |
| fi | |
| # Write new alias to ~/.bash_aliases |