Hi everyone, I just remembered the existence of this thing (though I often hop on to tilde.club), and I hope y'all will forgive a shameless plug:
A simple cross-platform IDE for programming little apps: https://love2d.org/forums/viewtopic.php?t=94852
To install:
1. Go to https://love2d.org and install LÖVE. It's open source, been around 10+ years, super reputable, just a few clicks to install. (Caveat: Installing on iOS is harder, but we'll try to help you with it.)
2. Download MiniIDE from https://love2d.org/forums/viewtopic.php?p=256497#p256497
I've always kinda assumed mobile devices are difficult to program on, but my partner who is not a programmer exclusively uses an iPad, and has slowly cobbled this together and convinced me along the way that it's doable. And it's a blast. I'm basically spending each morning with my kids in a microcomputer-like environment where I can draw on the same window I write code on. I'm currently learning LÖVE's audio APIs for the first time, and trying to build a little musical instrument using the multitouch controls on my Android tablet.
No programming experience required, just curiosity and some patience to learn. Operator (i.e. me) standing by to help any way I can. (I promise I'll remember to check my mail here more often.)
Sincerely,
Kartik
https://akkartik.name/freewheelinghttps://akkartik.name/freewheeling/
Hello.
I was wondering if anybody has GLFW3 knowledge, I can't figure out how
to make the window floating.
I tried defining GLFW_FLOATING to GLFW_TRUE but still nothing.
Thank you
~mutex
~~~
#define GLFW_FLOATING GLFW_TRUE
#include <GLFW/glfw3.h>
#include <stdio.h>
void error_callback(int error, const char* description)
{
fprintf(stderr, "Error: %s\n", description);
}
int main(void) {
glfwSetErrorCallback(error_callback);
GLFWwindow* window;
if (!glfwInit())
return -1;
window = glfwCreateWindow(SCRW, SCRH, "redacted", NULL, NULL);
if (!window)
{
glfwTerminate();
return -1;
}
/* Make the window's context current */
glfwMakeContextCurrent(window);
/* Loop until the user closes the window */
while (!glfwWindowShouldClose(window))
{
/* Render here */
glClear(GL_COLOR_BUFFER_BIT);
/* Swap front and back buffers */
glfwSwapBuffers(window);
/* Poll for and process events */
glfwPollEvents();
}
glfwTerminate();
return 0;
}
~~~
In case it's news, there doesn't seem to be any spam checking on club
mail. Just received a spam with no X-Spamd- headers. Not a great
bother for me but maybe something's broken?
--
barnold
Weather at 07:50 PYT ► 14.7°C ◆ Clouds ◆ 9Km/h SSE ◆ 100% RH
Founded in 2014, It is a nonprofit organization that advocates the protection of consumers' rights and access to Kratom. It has made it its mission to provide accurate information and promote safety, advocacy, and education regarding Kratom. They also provide educational resources to consumers, lawmakers, and law makers. It is dedicated to Kratom globally.
This organization has created the Kratom Consumer Council, which is a national grassroots movement. The council has made it its goal to educate consumers, growers, and manufacturers about the benefits of kratom. Its mission is to ensure that the United States of America does not ban kratom or other natural products that promote health and wellness. It also has a mailing list to provide the latest information on Kratom to its members. It also provides an online form to contact a congressional representative. The organization accepts donations via PayPal or wire transfer. It also has an online store where consumers can purchase Kratom.
It is a non-profit organization that is made up of individuals and organizations. Its board of directors sets the goals for the organization, while Peter Candland, its executive director, is responsible for day-to-day operations. It has also adopted a code of conduct to ensure that the organization remains professional. Its members have a responsibility to follow the code of conduct in order to maintain a positive image of Kratom. It has also established a website where consumers can learn more about Kratom and how to best use it.
The organization also works with reputable vendors to ensure that consumers have safe and reliable kratom products. It ensures that its vendors adhere to the good manufacturing process standards. It also ensures that manufacturers undergo an official audit.
It also educates consumers, law makers, and manufacturers about the benefits of Kratom. It believes that consumers are often overlooked by the United States government. It also believes that private parties do not prioritize the needs of their consumers. It hopes to change this mindset and empower consumers. The organization also works to restore consumer rights in the United States. It believes that by providing education, the attitudes of consumers, growers, and manufacturers will change. It hopes to protect the rights of consumers in the United States and to become a model for other countries.
The organization has created an email newsletter, which is available on their website. You can sign up for the newsletter on their website or by sending a pre-written letter. It offers a variety of ways to contribute, including donating money, joining their mailing list, or attending their events. It is also seeking captains for each congressional district to help with the organization's events. Those captains are expected to adhere to the code of conduct and agree to promote the meetings.
It hopes to establish a positive kratom policy across the globe. The organization believes that kratom can help alleviate pain, improve sleep, and improve mood. It also believes that consumers can make better choices about the products they purchase.
Website: https://kratom.org/
I got this email last night. It is **not** from our noble tilde hosts.
Don't fall for it!
> **Incoming Email Notification: elb(a)tilde.club
>
> **Five (5) Encryped Messages Received!.
>
> [Check Encrypted Messages]
>
> These notifications can be turned off by logging into your account and
> disabling the daily notification setting.
>
> Encrypted message notifications are newly added to mailserver for
> additional protection for sensitive emails.
>
> Note that unread messages will be deleted automatically.
>
> Best regards,
>
> The tilde.club Mail Team
--
**Eric Beavers**
Any spelling or grammatical errors found in the above post are
deliberate and included to boost the self‑esteem of those who spot
them.
Hello All,
Just a quick announcement that I have disabled the ability for users to
use port forwarding over SSH. It keeps being abused to run things like
VPN's and such that I have to turn it off.
If you have a valid reason to still need this service please email
root(at)tilde.club and we can discuss its need on a case by case basis.
Thanks
~deepend
Fellow tilde.club users,
Since joining tilde.club, I have found it's a fun community that is
old-school-tech oriented (not going to find gopher sites on modern
social media, lol). What do most people do with their tilde? Web
development, email, learning Linux, or just hang out on IRC? I was just
curious :) Plus if there's something I haven't tried I figure this will
provide hints!
-redsun