From aliexpress, but it is noisy and you cannot use it as a quiet server. Older, Rpi was cooled with a diy like this one. But it was also too loud.
Month: April 2017
notifications
notes Notifications //what to do at tap Intent intent = new Intent(getApplicationContext(), MainActivity.class); PendingIntent pendingIntent = PendingIntent.getActivity(getApplicationContext(), 1, intent, 0); Notification notification = new Notification.Builder(getApplicationContext()) .setContentTitle(“Lunch is ready!”) .setContentText(“It’s getting cold…”) .setContentIntent(pendingIntent) .addAction(android.R.drawable.sym_action_chat, “Chat”, pendingIntent) .setSmallIcon(android.R.drawable.sym_def_app_icon) .build(); NotificationManager notificationManager = READ MORE
Benchmarking i5-4690k and G3258
votage R15 openGL R15 cpu usersbemchmark cpu gpu watt gpu watt cpu watt standby g3258 4.5 +HD6700 44.2 301 63.4 14 130 107 62 g3258 3.2 +HD6700 31 211 45 12.3 120 70 g3258+4.5 22 299 63.3 3 89 45 READ MORE
String Manipulation
String fruit = “Banana”; String[] splitFruit = fruit.split(“a”); System.out.println(Arrays.toString(splitFruit)); /* String river = “Mississippi”; String[] splitRiver = river.split(“s”); System.out.println(Arrays.toString(splitRiver)); String river = “Mississippi”; String riverPart = river.substring(4, 8); System.out.println(riverPart); */ String html = “<div class=\”image\”><img src=\”http://cdn.posh24.com/images/:profile/18779183022145d9ce7229d752f4c116f\” alt=\”Caitlyn Jenner\”/></div>”; Pattern p READ MORE