JAVA 2D FIGURE OPERATIONAL PERFORMANCE (PART 2: FIGURE)

February 8, 2019 [Java, Performance, Programming, Rabbit Escape] Series: Operations, Images, Opacity In my previous post, I checked the performance of various drawing operations in 2D Java rendering. Here I see some specifics around giving images, with eyes to find optimization that I can apply to my rabbit game. You can find the code here:…

Mini-Rust in Rust 047: Updating Types When we get more information

If we know that y is an f64When we see x *= ywe can guess that x is an f64 Also. You can find the source code at codeberg.org/andybalaam/milk and more of my items in artificialworlds.net News Berita News Flash Blog Technology Sports Sport Football Tips Finance Berita Terkini Berita Terbaru Berita Kekinian News Berita…

JAVA 2D FIGURE OPERATIONAL PERFORMANCE (Part 3: Image Opacity)

11 February 2019 [Java, Performance, Programming] Series: Operations, Images, Opacity Not because I enjoyed it, I seemed to be encouraged to continue my search to understand the performance of various JAVA 2D drawing operations. I hope to make my rabbit rabbit run away faster, especially in Raspberry Pi, so you might see other posts sometimes…

Keybase chat bot in 10 lines of parties

February 14, 2019 [bash, JSON, Keybase, Programming] I became very excited about the new keybase.io, at least because it offers a safe conversation, and you can have a bot. I wrote a quick bot to simulate Arnold Schwarzenegger that I thought I shared to show how easy it was. This is based on the keybase…

BASIC VIDEO -Basics of Python Async (100 Million Requests Http)

I found something difficult on Python, which was a little first, so I wrote the whole blog series about it, and now the entire video: Slide: python async basics slide Blog Post: Basic -Basic Asyncio, the number in http parallel request, parallel, adding to stdlib News Berita News Flash Blog Technology Sports Sport Football Tips…

GRADLE: What is a task, and how can I make a task depending on other tasks?

27 February 2019 [Gradle, Groovy, Java] In a crazy world, the gradle sometimes looks like the best choice to build a Java or Kotlin project. But what is the real meaning of all the items in the build. And when will my code run? And how do you make a task? And how do you…

Video conversion becomes gif with a reasonable color

March 5, 2019 [bash, Programming, Tech] The following is a small script that I write to avoid copy-practice FFMPEG commands from Superuser every time I need it. This converted the video to the GIF file with a good pre-calculating palette, then using the palette. Use: ./to_gif input.mp4 output.gif File to_gif (which must be executed): #!/bin/bash…

Rabbits come out 0.12 now, with water

March 5, 2019 [Android, Games, Rabbit Escape, Tech] The latest features of rabbit escapes, water, have long appeared, but we are now thinking ready: Water can flow, can extinguish fire, and can sink rabbits. Rabbot seems immune again … See 20 new levels that we have released! (This makes a total of 180 levels.) This…

Jez and Andy wrote Parser

September 26, 2025 [Programming, Programming Languages, Rust, Tech, Videos] My friend Jez returned, and we started a parser for cell language (of course, rust). You can find Jez at jezuk.co.uk and follow him at @jezhiggins @mastodon.me.uk. As soon as we finished recording, Jez reported to me that he got it through all the tests, and…

Schedule tasks in Java in Futable Future

April 5, 2019 [Java, Programming] When we want to do something later in our Java code, we often turn to the Executorservice schedule. This class has a method called schedule (), and we can continue some code to run later like this: ScheduledExecutorService executor = Executors.newScheduledThreadPool(4); executor.schedule( () -> {System.out.println(“..later”);}, 1, TimeUnit.SECONDS ); System.out.println(“do…”); //…