Proposal to easily show the maintenance status of a project.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be
| #!/bin/bash | |
| # Copyright © 2020 rusty-snake | |
| # | |
| # 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: |
| #!/bin/bash | |
| # Copyright © 2020,2021 rusty-snake | |
| # | |
| # 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: |
| --- a/src/firecfg/main.c | |
| +++ b/src/firecfg/main.c | |
| @@ -486,8 +486,5 @@ int main(int argc, char **argv) { | |
| if (arg_debug) | |
| printf("%s %d %d %d %d\n", user, getuid(), getgid(), geteuid(), getegid()); | |
| - // fix .desktop files in ~/.local/share/applications directory | |
| - fix_desktop_files(home); | |
| - | |
| return 0; |
| #!/usr/bin/env bash | |
| # Copyright © 2019,2020 rusty-snake | |
| # | |
| # Permission to use, copy, modify, and distribute this software for any | |
| # purpose with or without fee is hereby granted, provided that the above | |
| # copyright notice and this permission notice appear in all copies. | |
| # | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| #!/usr/bin/env bash | |
| # Copyright © 2019,2020 rusty-snake | |
| # | |
| # Permission to use, copy, modify, and distribute this software for any | |
| # purpose with or without fee is hereby granted, provided that the above | |
| # copyright notice and this permission notice appear in all copies. | |
| # | |
| # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
| /* | |
| * Copyright © 2019 rusty-snake <print_hello_world+License@protonmail.com> | |
| * | |
| * Permission to use, copy, modify, and distribute this software for any | |
| * purpose with or without fee is hereby granted, provided that the above | |
| * copyright notice and this permission notice appear in all copies. | |
| * | |
| * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | |
| * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | |
| * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
| public class Auto { | |
| private String marke; | |
| private String farbe; | |
| private int ps; | |
| public Auto(String marke, String farbe, int ps) { | |
| this.marke = marke; | |
| this.farbe = farbe; | |
| this.ps = ps; | |
| } |