Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Карямин Андрей, 497, Reverser #96

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
ae0a6ec
TwitterStreamer
feezboom Oct 2, 2015
0eb5dd1
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-2015
feezboom Oct 2, 2015
5399c89
Some corrected mistakes
feezboom Oct 3, 2015
735479d
Added russian ending and some mistakes fixed
feezboom Oct 4, 2015
b39d50b
Added nearby geolocation
feezboom Oct 4, 2015
bf64963
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-2015
feezboom Oct 4, 2015
ed952b5
.gitignore
feezboom Oct 7, 2015
6df3ec0
tried to remake geolocation
feezboom Oct 8, 2015
66eea2f
Delete twitter4j.properties
feezboom Oct 8, 2015
50ee6ac
hz
feezboom Oct 9, 2015
32597f0
hz2
feezboom Oct 9, 2015
66e0574
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-2015
feezboom Oct 10, 2015
5e9ff32
string utils created
feezboom Oct 10, 2015
872616b
some corrections
feezboom Oct 10, 2015
9adee3f
corrections, nearby works
feezboom Oct 10, 2015
d05518d
colorful nicks
feezboom Oct 10, 2015
e23f5f9
corrections
feezboom Oct 10, 2015
be7b313
Now I'm using JCommander.
feezboom Oct 18, 2015
d9f3c13
Now I'm using JCommander.
feezboom Oct 18, 2015
19ff8c4
Checkstyle fixes
feezboom Oct 18, 2015
f36dda4
Checkstyle fixes
feezboom Oct 19, 2015
296afff
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-2015
feezboom Oct 19, 2015
5a66b7b
Merge branch 'master' of https://github.com/feezboom/fizteh-java-2015
feezboom Oct 19, 2015
9530cef
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-2015
feezboom Oct 26, 2015
d8ae282
merge?
feezboom Oct 31, 2015
04f0954
something
feezboom Nov 5, 2015
de7c0bf
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-2015
feezboom Nov 15, 2015
35bf82e
corrected
feezboom Nov 15, 2015
c4e3b37
Поправил вроде бы всё.
feezboom Nov 15, 2015
8cb69c9
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-2015
feezboom Dec 5, 2015
57aaa7d
update
feezboom Dec 5, 2015
e7eff0a
Lessons
feezboom Dec 5, 2015
300c514
Merge branch 'master' of https://github.com/feezboom/fizteh-java-2015
feezboom Dec 6, 2015
76bed3f
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-201…
feezboom Dec 18, 2015
3df1746
Merge branch 'master' of https://github.com/KhurtinDN/fizteh-java-2015
feezboom Dec 18, 2015
9f9e9f6
Merge branch 'master' of https://github.com/feezboom/fizteh-java-2015
feezboom Dec 18, 2015
d32d3fe
module tests commit
feezboom Dec 19, 2015
b57c6fa
Merge branch 'moduletests'
feezboom Dec 19, 2015
8ac1c69
Reverser task
feezboom Dec 19, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ workbench.xmi
*.swp
.settings
.checkstyle
twitter4j.properties
twitter4j.properties~
api.db-ip.com.txt
71 changes: 71 additions & 0 deletions projects/feezboom/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>parent</artifactId>
<groupId>ru.mipt.diht.students</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>ru.mipt.diht.students</groupId>
<artifactId>feezboom</artifactId>
<version>1.0-SNAPSHOT</version>
<name>feezboom</name>
<url>http://maven.apache.org</url>
<dependencies>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-stream</artifactId>
<version>4.0.4</version>
</dependency>

<dependency>
<groupId>org.twitter4j</groupId>
<artifactId>twitter4j-core</artifactId>
<version>4.0.4</version>
</dependency>

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.190</version>
</dependency>

<dependency>
<groupId>com.beust</groupId>
<artifactId>jcommander</artifactId>
<version>1.48</version>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.6</version>
<type>jar</type>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.5.6</version>
</dependency>

</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package ru.mipt.diht.students.feezboom.Reverser;

/**
* * Created by avk on 19.12.15.
**/
public class Reverser {
public static void main(String[] args) {
for (int i = args.length - 1; i >= 0; i--) {
String input[] = args[i].split("\\D++");
for (int j = input.length - 1; j >= 0 ; j--) {
System.out.println(input[j]);
}
}
}
}
Loading