├── .DS_Store ├── IntegracaoTwitter ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── lib │ ├── twitter4j-async-4.0.4.jar │ ├── twitter4j-core-4.0.4.jar │ ├── twitter4j-media-support-4.0.4.jar │ └── twitter4j-stream-4.0.4.jar └── src │ └── Main.java ├── IntroducaoSelenium ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── bin │ ├── .gitignore │ ├── firefox │ │ └── Main.class │ └── ie │ │ └── Main.class ├── drivers │ └── IEDriverServer.exe ├── lib │ ├── apache-mime4j-0.6.jar │ ├── bsh-2.0b4.jar │ ├── cglib-nodep-2.1_3.jar │ ├── commons-codec-1.10.jar │ ├── commons-collections-3.2.2.jar │ ├── commons-el-1.0.jar │ ├── commons-exec-1.3.jar │ ├── commons-io-2.4.jar │ ├── commons-lang3-3.4.jar │ ├── commons-logging-1.2.jar │ ├── cssparser-0.9.16.jar │ ├── gson-2.3.1.jar │ ├── guava-19.0.jar │ ├── hamcrest-core-1.3.jar │ ├── hamcrest-library-1.3.jar │ ├── htmlunit-2.18.jar │ ├── htmlunit-core-js-2.17.jar │ ├── httpclient-4.5.1.jar │ ├── httpcore-4.4.3.jar │ ├── httpmime-4.5.jar │ ├── jasper-compiler-5.5.15.jar │ ├── jasper-compiler-jdt-5.5.15.jar │ ├── jasper-runtime-5.5.15.jar │ ├── javax.servlet-api-3.1.0.jar │ ├── jcommander-1.48.jar │ ├── jetty-continuation-9.2.13.v20150730.jar │ ├── jetty-http-9.2.13.v20150730.jar │ ├── jetty-io-9.2.13.v20150730.jar │ ├── jetty-jmx-9.2.13.v20150730.jar │ ├── jetty-security-9.2.13.v20150730.jar │ ├── jetty-server-9.2.13.v20150730.jar │ ├── jetty-servlet-9.2.13.v20150730.jar │ ├── jetty-servlets-9.2.13.v20150730.jar │ ├── jetty-util-9.2.13.v20150730.jar │ ├── jna-4.1.0.jar │ ├── jna-platform-4.1.0.jar │ ├── jsp-api-2.0.jar │ ├── junit-4.12.jar │ ├── nekohtml-1.9.22.jar │ ├── netty-3.5.7.Final.jar │ ├── phantomjsdriver-1.2.1.jar │ ├── sac-1.3.jar │ ├── selenium-java-2.52.0.jar │ ├── serializer-2.7.2.jar │ ├── testng-6.9.9.jar │ ├── websocket-api-9.2.13.v20150730.jar │ ├── websocket-client-9.2.13.v20150730.jar │ ├── websocket-common-9.2.13.v20150730.jar │ ├── xalan-2.7.2.jar │ ├── xercesImpl-2.11.0.jar │ └── xml-apis-1.4.01.jar └── src │ ├── firefox │ └── Main.java │ └── ie │ └── Main.java ├── JavaBlog Telegram Bot ├── .classpath ├── .gitignore ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── lib │ ├── gson-2.7.jar │ ├── java-telegram-bot-api-2.1.2.jar │ ├── okhttp-3.4.1.jar │ └── okio-1.10.0.jar └── src │ └── Main.java └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/.DS_Store -------------------------------------------------------------------------------- /IntegracaoTwitter/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntegracaoTwitter/.classpath -------------------------------------------------------------------------------- /IntegracaoTwitter/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /IntegracaoTwitter/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntegracaoTwitter/.project -------------------------------------------------------------------------------- /IntegracaoTwitter/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntegracaoTwitter/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /IntegracaoTwitter/lib/twitter4j-async-4.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntegracaoTwitter/lib/twitter4j-async-4.0.4.jar -------------------------------------------------------------------------------- /IntegracaoTwitter/lib/twitter4j-core-4.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntegracaoTwitter/lib/twitter4j-core-4.0.4.jar -------------------------------------------------------------------------------- /IntegracaoTwitter/lib/twitter4j-media-support-4.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntegracaoTwitter/lib/twitter4j-media-support-4.0.4.jar -------------------------------------------------------------------------------- /IntegracaoTwitter/lib/twitter4j-stream-4.0.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntegracaoTwitter/lib/twitter4j-stream-4.0.4.jar -------------------------------------------------------------------------------- /IntegracaoTwitter/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntegracaoTwitter/src/Main.java -------------------------------------------------------------------------------- /IntroducaoSelenium/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/.classpath -------------------------------------------------------------------------------- /IntroducaoSelenium/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/.project -------------------------------------------------------------------------------- /IntroducaoSelenium/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /IntroducaoSelenium/bin/.gitignore: -------------------------------------------------------------------------------- 1 | /firefox/ 2 | /ie/ 3 | -------------------------------------------------------------------------------- /IntroducaoSelenium/bin/firefox/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/bin/firefox/Main.class -------------------------------------------------------------------------------- /IntroducaoSelenium/bin/ie/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/bin/ie/Main.class -------------------------------------------------------------------------------- /IntroducaoSelenium/drivers/IEDriverServer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/drivers/IEDriverServer.exe -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/apache-mime4j-0.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/apache-mime4j-0.6.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/bsh-2.0b4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/bsh-2.0b4.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/cglib-nodep-2.1_3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/cglib-nodep-2.1_3.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/commons-codec-1.10.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/commons-codec-1.10.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/commons-collections-3.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/commons-collections-3.2.2.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/commons-el-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/commons-el-1.0.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/commons-exec-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/commons-exec-1.3.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/commons-io-2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/commons-io-2.4.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/commons-lang3-3.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/commons-lang3-3.4.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/commons-logging-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/commons-logging-1.2.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/cssparser-0.9.16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/cssparser-0.9.16.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/gson-2.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/gson-2.3.1.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/guava-19.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/guava-19.0.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/hamcrest-core-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/hamcrest-core-1.3.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/hamcrest-library-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/hamcrest-library-1.3.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/htmlunit-2.18.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/htmlunit-2.18.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/htmlunit-core-js-2.17.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/htmlunit-core-js-2.17.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/httpclient-4.5.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/httpclient-4.5.1.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/httpcore-4.4.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/httpcore-4.4.3.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/httpmime-4.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/httpmime-4.5.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jasper-compiler-5.5.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jasper-compiler-5.5.15.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jasper-compiler-jdt-5.5.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jasper-compiler-jdt-5.5.15.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jasper-runtime-5.5.15.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jasper-runtime-5.5.15.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/javax.servlet-api-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/javax.servlet-api-3.1.0.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jcommander-1.48.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jcommander-1.48.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-continuation-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-continuation-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-http-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-http-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-io-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-io-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-jmx-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-jmx-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-security-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-security-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-server-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-server-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-servlet-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-servlet-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-servlets-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-servlets-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jetty-util-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jetty-util-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jna-4.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jna-4.1.0.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jna-platform-4.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jna-platform-4.1.0.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/jsp-api-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/jsp-api-2.0.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/junit-4.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/junit-4.12.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/nekohtml-1.9.22.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/nekohtml-1.9.22.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/netty-3.5.7.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/netty-3.5.7.Final.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/phantomjsdriver-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/phantomjsdriver-1.2.1.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/sac-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/sac-1.3.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/selenium-java-2.52.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/selenium-java-2.52.0.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/serializer-2.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/serializer-2.7.2.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/testng-6.9.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/testng-6.9.9.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/websocket-api-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/websocket-api-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/websocket-client-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/websocket-client-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/websocket-common-9.2.13.v20150730.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/websocket-common-9.2.13.v20150730.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/xalan-2.7.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/xalan-2.7.2.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/xercesImpl-2.11.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/xercesImpl-2.11.0.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/lib/xml-apis-1.4.01.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/lib/xml-apis-1.4.01.jar -------------------------------------------------------------------------------- /IntroducaoSelenium/src/firefox/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/src/firefox/Main.java -------------------------------------------------------------------------------- /IntroducaoSelenium/src/ie/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/IntroducaoSelenium/src/ie/Main.java -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/JavaBlog Telegram Bot/.classpath -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/JavaBlog Telegram Bot/.project -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/JavaBlog Telegram Bot/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/lib/gson-2.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/JavaBlog Telegram Bot/lib/gson-2.7.jar -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/lib/java-telegram-bot-api-2.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/JavaBlog Telegram Bot/lib/java-telegram-bot-api-2.1.2.jar -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/lib/okhttp-3.4.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/JavaBlog Telegram Bot/lib/okhttp-3.4.1.jar -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/lib/okio-1.10.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/JavaBlog Telegram Bot/lib/okio-1.10.0.jar -------------------------------------------------------------------------------- /JavaBlog Telegram Bot/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/JavaBlog Telegram Bot/src/Main.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelpf/blog-samples/HEAD/README.md --------------------------------------------------------------------------------