Questions tagged [mu]

Mu is a small, simple editor for beginner Python programmers. Written in Python and Qt5.

Mu is a simple code editor for beginner programmers based on extensive feedback from teachers and learners. Having said that, Mu is for anyone who wants to use a simple “no frills” editor. It is available on pypi.

69 questions
5
votes
1 answer

mu4e does not list all messages in INBOX

I have installed and configured mu and mu4e as explained in the manual (newest version on emacs 24.3.1). My mu4e config contains: (setq mu4e-maildir "~/Maildir/mail_user_de") (setq mu4e-drafts-folder "/Drafts") (setq mu4e-sent-folder …
elemakil
  • 3,681
  • 28
  • 53
4
votes
1 answer

Mu2 vs Mustache.js? Should I use the Mu2 module or the Mustache.js module for nodejs templating

I've decided that I will be using Mustache for our templating engine for our nodejs project but I don't see what the differences between the Mu2 ( https://github.com/raycmorgan/Mu ) and the mustache.js ( https://github.com/janl/mustache.js ) modules…
real_ate
  • 10,861
  • 3
  • 27
  • 48
4
votes
1 answer

Error using Google two factor auth with mu4e & Gmail

I have been using Google 2 factor auth for a while, and have several applications configured. One of them is offlineimap (where I download the mail), but when I use mu4e to compose a message, I get the following error: Sending failed: 534-5.7.9…
Tim S.
  • 2,187
  • 1
  • 25
  • 40
4
votes
1 answer

Maildir is much larger than expected

I'm retrieving my email using offlineimap to a local maildir which I am indexing with mu (reading/writing is done using mu4e in emacs). After loading all emails from the server my Maildir folder is about 1.1GB in size. However, the very same…
elemakil
  • 3,681
  • 28
  • 53
3
votes
1 answer

Synchronise and read Gmail offline, using isync OR offlineimap

My goal is to sync my emails from a Gmail account and index them to search and read within Emacs. The latter is not yet relevant as I cannot get the emails to sync to my laptop. I am running Mavericks and so working in Mac Terminal. I have followed…
n1k31t4
  • 2,745
  • 2
  • 24
  • 38
3
votes
0 answers

mu4e with org-mode: LaTeX and R in emails

I'm trying to reproduce this awesome email from this blog post for the fun of it. Emacs, mu4e, org-mode Rich-text HTML email. He sends an email from Emacs with mu4e, with LaTeX formulas and R plots, relying on org-mode to export the message to HTML…
Gambhiro
  • 223
  • 1
  • 6
2
votes
0 answers

Wordpress mu table wp_blogs corrupt after MySql upgrade

i have an old Wordpress Mu (2.8.4) installation running on a hosted webspace. Now my Provider suddenly upgraded PHP and MySQL. Now my Wordpress Mu installation doesn't work anymore, seems the reason is that the table WP_BLOGS is corrupt. The error:…
rag
  • 971
  • 1
  • 10
  • 15
2
votes
1 answer

How can I make music play in the background of my py game?

import random time = 120 WIDTH = 800 HEIGHT = 500 background = Actor("background") player = Actor("player") enemy = Actor("enemy") money = Actor("money", pos=(300, 300)) player2 = Actor("alien") score = 0 player.x = 200 player.y = 200 player2.x =…
2
votes
1 answer

"Player2" is unable to do the same things as "player"

import random WIDTH = 800 HEIGHT = 500 background = Actor('background') player = Actor('player') enemy = Actor('enemy') money = Actor('money', pos=(300, 300)) player2 = Actor('alien') score = 0 score2 = 0 player.x = 200 player.y = 200 def…
1
vote
0 answers

mu editor won't compile any code that uses pygame (ubuntu 22.04)

Currently running Ubuntu 22.04.1 LTS x86_64. When running code that utilizes pygame on mu editor, I get this error. pygame 2.1.2 (SDL 2.0.16, Python 3.8.12) Hello from the pygame community. https://www.pygame.org/contribute.html [xcb] Extra reply…
lilsolar
  • 59
  • 7
1
vote
0 answers

mu4e is not working with Doom Emacs; Symbol’s value as variable is void

recently I've switched to Doom Emacs from a vanilla one, and mu4e stopped working for me. First, when I open mu4e it gives me an error: Symbol’s value as variable is void: mu4e--server-props And then I cannot see my email folders: command-execute:…
vprsnc
  • 11
  • 1
1
vote
0 answers

Microcontroller serial stops working when mu serial is closed

I am trying to control some NeoPixel lights, and because the Raspberry Pi can only control one light at any given time, I decided I would just get a microcontroller to do it, specifically the Adafruit ItsyBitsy M4 Express, and just send serial data…
Lazuli
  • 31
  • 5
1
vote
0 answers

python can not import docx

I will state that my goal was simply to write to a docx file for the following reasons: I am building a study guide and I thought have a little automation to do so in the labeling process would be easier I like to challenge myself to make my code…
RyanB2021
  • 11
  • 1
1
vote
0 answers

No module named 'PySide' when using Mu

I've read all the other questions referencing this issue and tried the solutions but can't seem to get pyperclip working in Mu. When I try running: >import pyperclip >pyperclip.copy('Hello, world') >pyperclip.paste() I get the following…
Andy Choy
  • 11
  • 1
1
vote
3 answers

ModuleNotFoundError: No module named 'PIL', ImageTk

I am on Windows 10 and my python 3 code is as follows: from tkinter import * from PIL import ImageTk, Image root = Tk() root.title("Images") root.iconbitmap("C:/Users/[name]/mu_code/GUI Practice/icon.ico") # my_img =…
1
2 3 4 5