Thrasos Website

Sometimes I write about tech and code, and sometimes I don't.

Menu
  • Home
  • About
Menu

java – Create a Dictionary from a text file.

Posted on April 30, 2015March 5, 2016 by thrasos

It takes a text file as input and outputs all the words in that file in alphabetical order, one word per line, ignoring duplicates. [cc lang=”java” tab_size=”2″ lines=”105″] import java.io.*; import java.util.*; public class Dictionary { public static void main(String[] args) { try{ FileReader fr = new FileReader(“words.txt”); BufferedReader br = new BufferedReader(fr); String s;…

Read more

Java – How to add a spell checker to Swing GUI text components JOrtho Library and Wikitionary Dictionaries

Posted on April 29, 2015 by thrasos

This tutorial uses JOrtho, a Java based spell checker, to implement a spell checker in a Swing based application. We are going to use an English dictionary throughout this guide, though other languages are available by downloading your language dictionary from http://www.wiktionary.org/ JOrtho (Java Orthography) is an Open Source spell-checker entirely written in Java. Its…

Read more

Ten Time-Savers in NetBeans

Posted on February 22, 2015 by thrasos

The NetBeans IDE(Integrated Development Environment) has come a very, very long way. Our Java curriculum development group uses this tool everyday in the development of training materials and NetBeans is the default development environment for students. As a result, we have compiled a set of ten time saving features that we thought you ought to…

Read more

How To Edit Your PATH Environment Variables On Mac OS X

Posted on November 18, 2014November 18, 2014 by thrasos

If you are new to Mac OS X, you may need to know how to edit your PATH. The good news is that this is an easy task on Mac OS X. The recommended way is by editing your .bash_profile file. This file is read and the commands in it executed by Bash every time…

Read more

How to dispose of a body like a pro

Posted on November 1, 2014November 1, 2014 by thrasos

If you type 52.376552,5.198303 into Google Maps, you will find a man dragging a body into the lake. [obviously fake] But you shouldn’t get caught like the guys in the foto, so here is an way to do it like a pro I found somewhere on the net. First, be smart from the very beginning….

Read more

Software Development…so true

Posted on September 11, 2014 by thrasos
Read more

NOWHERE (2009) dedicated for Pina BAUSCH

Posted on August 2, 2014August 1, 2014 by thrasos
Read more

Surreal Daliesque Animation

Posted on August 1, 2014August 1, 2014 by thrasos
Read more

Plebiscite

Posted on July 17, 2014March 23, 2015 by thrasos

plebiscite |ˈplɛbɪsʌɪt, -sɪt| noun the direct vote of all the members of an electorate on an important public question such as a change in the constitution. the administration will hold a plebiscite for the approval of constitutional reforms. • Roman History a law enacted by the plebeians’ assembly. DERIVATIVES plebiscitary |-ˈbɪsɪt(ə)ri| adjective ORIGIN mid 16th…

Read more
  • Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • …
  • 11
  • Next
  • GitHub
  • LinkedIn
  • Twitter
  • Telegram
  • Music with the Phone’s Keypad – Tetris – Part 2May 14, 2023
  • Cleaning up VCARD contacts without a phone.January 29, 2023
  • Docker Compose Notes #2December 15, 2022
  • Docker Notes #1December 14, 2022
  • A.I generated poem in GreekDecember 11, 2022
  • A.I. Generated ArtDecember 10, 2022
  • A.I. generated art.December 9, 2022
  • MailCow, simple html in maindomainSeptember 10, 2022
  • CamouflageFebruary 1, 2022
  • Kerkhoffs principleNovember 16, 2020
© 2023 Thrasos Website | Powered by Minimalist Blog WordPress Theme