This file contains hidden or 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
100 REM ESAME DI ASSUNZIONE TRATTO DAL FILM "FANTOZZI VA IN PENSIONE" (1988) | |
110 DEF FNUC$(C$) = CHR$(ASC(C$) - 32 * (ASC(C$) > ASC("a") - 1) * (ASC(C$) < ASC("z") + 1)) : REM UPPERCASE | |
120 ON ERROR GOTO 920 | |
130 SOUND ON : REM SOLO TANDY/PCJR | |
140 ON ERROR GOTO 0 | |
150 KEY OFF | |
160 SCREEN 0 : WIDTH 80 : COLOR 14 | |
170 CLS | |
180 BL$ = " " | |
190 PRINT BL$; |
This file contains hidden or 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
for f in `find . -name '*.sh'`; do (git update-index --chmod=+x "$f") done |
This file contains hidden or 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
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>versions-maven-plugin</artifactId> | |
<version>2.7</version> | |
<executions> | |
<execution> | |
<id>default</id> | |
<phase>verify</phase> | |
<goals> | |
<goal>display-property-updates</goal> |
This file contains hidden or 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
-----BEGIN DH PARAMETERS----- | |
MIIBCAKCAQEA//////////+t+FRYortKmq/cViAnPTzx2LnFg84tNpWp4TZBFGQz | |
+8yTnc4kmz75fS/jY2MMddj2gbICrsRhetPfHtXV/WVhJDP1H18GbtCFY2VVPe0a | |
87VXE15/V8k1mE8McODmi3fipona8+/och3xWKE2rec1MKzKT0g6eXq8CrGCsyT7 | |
YdEIqUuyyOP7uWrat2DX9GgdT0Kj3jlN9K5W7edjcrsZCwenyO4KbXCeAvzhzffi | |
7MA0BM0oNC9hkXL+nOmFg/+OTxIy7vKBg8P+OxtMb61zO7X8vC7CIAXFjvGDfRaD | |
ssbzSibBsu/6iGtCOGEoXJf//////////wIBAg== | |
-----END DH PARAMETERS----- |
This file contains hidden or 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
#!/bin/sh | |
### BEGIN INIT INFO | |
# Provides: artemis | |
# Required-Start: $remote_fs $network $syslog | |
# Required-Stop: $remote_fs $network $syslog | |
# Default-Start: 3 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: Starts ActiveMQ Artemis | |
# Description: Starts ActiveMQ Artemis Message Broker Server |
This file contains hidden or 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
#!/bin/sh | |
# | |
# /etc/init.d/tomcat -- startup script for the Tomcat servlet engine | |
# | |
# Written by Miquel van Smoorenburg <[email protected]>. | |
# Modified for Debian GNU/Linux by Ian Murdock <[email protected]>. | |
# Modified for Tomcat by Stefan Gybas <[email protected]>. | |
# Modified for Tomcat6 by Thierry Carrez <[email protected]>. | |
# Modified for Tomcat7 by Ernesto Hernandez-Novich <[email protected]>. | |
# Additional improvements by Jason Brittain <[email protected]>. |
This file contains hidden or 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
alias=jdk1.8 | |
section=non-free | |
jre servertool /usr/lib/jvm/jdk1.8/jre/bin/servertool | |
jre keytool /usr/lib/jvm/jdk1.8/jre/bin/keytool | |
jre java /usr/lib/jvm/jdk1.8/jre/bin/java | |
jre jcontrol /usr/lib/jvm/jdk1.8/jre/bin/jcontrol | |
jre rmid /usr/lib/jvm/jdk1.8/jre/bin/rmid | |
jre ControlPanel /usr/lib/jvm/jdk1.8/jre/bin/ControlPanel | |
jre rmiregistry /usr/lib/jvm/jdk1.8/jre/bin/rmiregistry | |
jre orbd /usr/lib/jvm/jdk1.8/jre/bin/orbd |
This file contains hidden or 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
final Type type = new TypeToken<Collection<Map<String, Object>>>() {}.getType(); | |
final Collection<Map<String, Object>> releases = new Gson().fromJson(new String(response), type); | |
for (final Map<String, Object> release : releases) { | |
if (Boolean.parseBoolean(String.valueOf(release.get("prerelease")))) { | |
continue; | |
} | |
else { | |
return String.valueOf(release.get("tag_name")); | |
} |
This file contains hidden or 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 java.io.File; | |
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import java.util.Arrays; | |
import java.util.Set; | |
import java.util.TreeSet; | |
public class Renamer { | |
public static void main(final String[] args) throws FileNotFoundException, IOException { |