Category: Uncategorized

  • Don’t trust AI when coding!

    Coding is evolving quickly. Tasks that can be described are now easily converted into code by LLM models. But is it safe to trust external tools that might lack awareness of syntax, best practices, and the pros & cons of different solutions? Key Advice:“Always test, write comprehensive unit tests, find errors, and suggest improvements.” Let’s…

  • How to read API and pass data to Chart.js

    How to read API and pass data to Chart.js

    Reading data from Json API, processing it and displaying on the page is one of the most popular solutions on the web.Can we do this with pure Typescript and frontend only? Let’s ask AI…. Then we need to compile ts into javascript, create js code snippet and make sure our && is not replaced with…

  • Too lazy to solve labyrinths

    Too lazy to solve labyrinths

    One of my colleagues created script generating labyrinths. An idea was to proactice js and canvas and to generate some fun for his kids.But what if some kids are bored and don’t like labyrinths? I created simple solution (pure html/js) which is able to find correct way in that labyrinth. It is iterative, brute force…

  • Bluetooth: not available – Macbook OX Sierra – solved

    Working solution. Fast and easy. “Bluetooth not available” may happen after upgrade or when one of devices fails. I was able to solve issue on on El Capitan and also on latest Sierra. It requires quick NVRAM reset. No settings are deleted. In my case, one, hanging bluetooth device was removed from config. 1. Shutdown…

  • Jak odczytać UUID urządzenia do instalacji w trybie AdHoc

    How to get iPad/iPhone UUID required for AdHoc installation? 1) Start iTunes and connect your iPad/iPhone. Click on device name on left navigation. PL: Uruchom iTUnes i podłącz iPad/iPhone. Kliknij na nazwę urzadzenia w lewym menu 2) On the Summary page for your iPhone, click on the word “Serial Number” text PL: Na zakładce Podsumowanie,…

  • First steps in iOS app development (as of 2010)

    Taking it “step by step” is a great approach. Apple has done a fantastic job of providing developers with well-written documentation, podcasts, and tutorials. The only challenge might be time. Getting Started: Purchase a Mac: Unlike Symbian and Android applications, iOS development requires a Mac computer running macOS. Install Xcode and SDK: Xcode is the…