Are you in search of an open source free and offline alternative to #ChatGPT ?
Here comes GTP4all ! Free, open source, with reproducible datas, and offline.
Can run on Windows, Linux, Mac.
https://github.com/nomic-ai/gpt4all

#ChatGPT #GTP4all
Are you in search of an open source free and offline alternative to #ChatGPT ?
Here comes GTP4all ! Free, open source, with reproducible datas, and offline.
Can run on Windows, Linux, Mac.
https://github.com/nomic-ai/gpt4all
#ChatGPT #GTP4all
The level app is as simple as possible and allow you to monitor available level meters in a single view.
There is a live graph of each RSSI values and power level.
Link to Documentation
Link to official Nightly build
or click to download compiled version at the time of the post (bin only)
#hackrf #portapack #mayhem #level-app
Edit: it’s the hundredth post of that blog, yay !
KAFKA is in all mouths these days. So I share here, also as a reminder for me, a couple of #KAFKA ressources that looked helpful to me.
TLDR:
Do not use KAFKA for:
-“Little” Data flows (overkill)
-Streaming ETL (handling transformation is a hassle)
-Store and process large files (images, videos, proprietary files, etc.)
https://www.kai-waehner.de/blog/2020/08/07/apache-kafka-handling-large-messages-and-files-for-image-video-audio-processing/
https://www.upsolver.com/blog/apache-kafka-use-cases-when-to-use-not
https://kafka.apache.org/intro
https://docs.confluent.io/kafka-clients/librdkafka/current/overview.html
https://docs.confluent.io/platform/current/clients/librdkafka/html/md_INTRODUCTION.html
I was reading a changelog from a library I love (unrelated but here is the link: https://liballeg.org/ ) and I stumble upon that change:
“Use clock_gettime with CLOCK_MONOTONIC instead of gettimeofday (check-switch-26)”
Then I did a bit of research on the topic, and found a good explanation here:
https://blog.habets.se/2010/09/gettimeofday-should-never-be-used-to-measure-time.html
TLDR: if you use gettimeofday to time things then your program may be affected by time shift, because gettimeofday is not monotonic. if you do not care about the date and only about elapsed time, use clock_gettime.
See https://www.nilorea.net/hackrf-portapack/ for latest version
On top of the existing ‘search and stay X seconds after a match’ the SearchApp have been updated with a ‘search and stay’ mode: stay while matching, leave after X seconds of inactivity, reset counters on activity during the wait. mode,
To use it just specify a negative value in the ‘wait’ field using the rotary encoder.
As some have some problems getting the bin back from discord, here you are:
The documentation is on the wiki, here:
A lot of us already know the excellent https://openclassrooms.com/fr/
There is also, in a more game dev oriented way, https://www.codingame.com/start or https://codecombat.com/
Learning is fun, but it it even funnier if you’re learning while gaming 😉
Tip: use a regexp so the grep is not matching the line where is sits in ps list:
ps -aef | grep "[m]atchingexp"
will match anything starting with letter ‘m’ and followed by ‘atchingexp
‘ , which will not be in the ps list as it will contain the [] around the first letter of your match
By default grep -color
is not producing color symbols if it detects that the output is not a terminal.grep -color=auto
is doing the same, that is not producing color symbols if it detects that the output is not a terminal.
The solution is to use “grep -color=always“ in the place that need it.
Do not put it in an alias of grep as it would break some code somewhere else. Color symbols are strings like “ESC[35m” and they will be inserted in the text.
f=468000000 f=468000000,d=Single Freq f=468000000,m=AM,d=Single Freq AM f=468000000,m=NFM,d=Single Freq NFM f=468000000,m=WFM,d=Single Freq WFM f=468000000,m=AM,b=DSB,d=Single Freq AM DSB f=468000000,m=AM,b=USB,d=Single Freq AM USB f=468000000,m=AM,b=LSB,d=Single Freq AM LSB a=87000000,b=110000000 a=87000000,b=110000000,m=AM,s=100KHz,d=AM radio search a=87000000,b=110000000,m=AM,b=DSB,s=250KHz,d=AM radio search LSB a=87000000,b=110000000,m=WFM,b=16k,s=50KHz,d=WFM radio search s=50KHz r=430150000,t=430550000 r=430150000,t=430550000,d=HAM radio r=430150000,t=430550000,m=AM,b=DSB,d=HAM radio
When enabling SAST in a gitlab project you can have that kind of error at the tests part:
The yaml provided is not containing the needed part:
artifacts:
name: sast
paths:
- gl-sast-report.json
reports:
sast: gl-sast-report.json
when: always
Source:
https://gitlab.com/gitlab-org/gitlab/-/issues/345696#note_737150614
I did it using the JQ command line tool from https://stedolan.github.io/jq/
Exemple: list all json files from current directory and print the difference with updated jsons from updated/ directory
for user in `ls updated-users`
do
# print file name
echo $user
# simple
diff <(jq -S . users/$user) <(jq -S . updated-users/$user)
# or full on one side and the diff on the other side
# diff -y --left-column <(jq -S . users/$user) <(jq -S . updated-users/$user)
# or full on one side and the diff on the other side, colored
# diff -y --left-column --color <(jq -S . users/$user) <(jq -S . updated-users/$user)
done
#shell #diff #json #script
I made a Zelda II alike world with a big map on top view and some dungeons in side view. Permanent world, only the monsters are reset between dungeons / starts.
The limit was way overdue before I could do all I wanted so I’m linking both version here, the entry for the compo and the updated / finalised one.
Compo rules: https://tins.amarillion.org/krampu21/rules/
Tins log : https://tins.amarillion.org/krampu21/log/entrant/4277
git repo: https://framagit.org/GullRaDriel/krampushack2021-kheldaii
Click here for full pack with datas, sources and binaries
Screens:
Gameplay demo :
=============================================
How to play:
Keys:
Items to be collected:
Obtain: the kiss of the princess one the Ogre is dead !
Tips:
==============================================
Options:
==============================================
How to build: need gcc on linux and gcc + msys / cygwin on windows
mkdir -p KheldaII mkdir -p KheldaII/LIB mkdir -p KheldaII/Src/ cd KheldaII/LIB git clone https://framagit.org/GullRaDriel/nilorea-library.git . cd ../Src/ git clone https://framagit.org/GullRaDriel/krampushack2021-kheldaii.git cd https://framagit.org/GullRaDriel/krampushack2021-kheldaii.git make
The KrampusHack is waiting for contestants ! Click the links to get informations on how to join and register for it !
https://tins.amarillion.org/news/
https://tins.amarillion.org/krampu21/rules/
#Code #GameJam #Hack #Christmas