Ønsker du at installere Rejsekortscanner uden om Google Play, måske fordi din enhed ved en fejl er blokeret, så kan du til hver en tid hente nyeste version her. Linket vil blive (forsøgt) holdt up-to-date med seneste release.
Oracle SQLDeveloper is one of those tools you just kind of need around, but with its slew of bugs around so once its setup, you try not to touch it. Occasionally, Oracle releases a new version (or an early preview) with some of the bugs fixed and this appears to be the case with version 4 Early Preview . Unfortunately, these early previews are no longer distributed as general gzip archives to work on any Linux/Mac distro, there's only a RedHat RPM installer for the Linux platform. Thankfully, this is easy to fix using the utility we known and love as Alien. Conversion of RPM to DEB Start by ensuring you have the Alien utility installed. ~$ sudo apt-get install alien Then after downloading the RPM package from Oracle, run it through the alien utility. ~$ sudo alien sqldeveloper-4.0.0.12.84-1.noarch.rpm Warning: Skipping conversion of scripts in package sqldeveloper: postinst Warning: Use the --scripts parameter to include the scripts. sqldeveloper_4.0.0.12.84...
Modding Note that the following covers the DS211+ device, which is characterized by being based on the Marvell Kirkwood mv6282 ARM core (1.6Ghz version of 1.2Ghz mv6281). AFAIK the content of this blog entry should be equally applicable to all DS211 variations, but you should consult the Synology wiki for your device to be certain. While quite feature rich out-of-the-box, developer types will likely want to make their NAS do even more, either out of a real need or just to tinker. For instance, I eventually plan to connect my USB weather station and generate live charts. Because of the modding desire, Synology has a faily comprehensive wiki about the subject. To make a long story short, ease of modding is greatly assisted by the possibility of installing Optware package manager. Installing Optware Optware (ipkg) is an online package system a la what you may know from Debian/Ubuntu. This makes it easy to locate, install and uninstall compiled binaries (*.ipk) through the command...
Meta-data and how to associate it has always been a bit of a confusing topic in Java. For instance, the transient modifier is really a kind of marker annotation, as is the @deprecated javadoc tag compilers are also required to process, as is the marker interface Serializable. Then in JDK 1.5, a dedicated annotation facility was added, probably in light of the success of C#'s attributes. One of the first practical uses of annotations appears to be as a way to suppress compiler warnings. @SuppressWarnings This build-in annotation allows the developer to signal a respecting compiler that it should forgo a particular warning. It can be applied in front of a type, a field, a method, a parameter, a constructor as well as a local variable. It is up to the compiler to make sense of whatever you put inside the String, the only value mandated by the JLS is the "unchecked". Compilers as well as IDE's will typically implement each their own set of warning types, the Eclipse IDE d...
Comments