Jump to content

FFY00

Member
  • Posts

    28
  • Joined

  • Last visited

Reputation Activity

  1. Informative
    FFY00 got a reaction from tikker in Telling python to use an operator   
    You can use the operator module.
     
    operator_actions = { '+': operator.add, '-': operator.sub, '*': operator.mul, '/': operator.truediv, '%': operator.mod, } num1 = input('num1: ') operator = input('operator: ') num2 = input('num2: ') print(operator_actions[operator](num1, num2))  
  2. Agree
    FFY00 got a reaction from icub3d in Corsair fan control on Linux   
    I am one of the maintainers of libratbag, I have contacted @Corsair Nick to see if they would be able to provide documentation for me to implement drivers for Corsair devices but haven't heard anything back. Adding the drivers is super easy but I don't have hardware, hence the need for the documentation.
  3. Agree
    FFY00 got a reaction from Joveice in Networking with libvirt and two physical network ports   
    Sound like you want to setup a bridge.
     
    https://wiki.archlinux.org/index.php/Libvirt#Networks
  4. Agree
    FFY00 got a reaction from Fourthdwarf in Creating a Compiler   
    Just use LLVM.
  5. Like
    FFY00 got a reaction from TechyBen in Trying to not hate Linux   
    Actually their new beta apparently adds support for it. I have not tried it yet though.
  6. Agree
    FFY00 got a reaction from elsandosgrande in Which Linux Distro qualifies my needs?   
    No, just don't. You don't manually install thing on linux. You'll likely just break your distribution if you don't understand what the installer is doing and where it is installing to. Use the repos instead.
  7. Funny
    FFY00 got a reaction from Ithanul in Which Linux Distro qualifies my needs?   
    No, just don't. You don't manually install thing on linux. You'll likely just break your distribution if you don't understand what the installer is doing and where it is installing to. Use the repos instead.
  8. Agree
    FFY00 got a reaction from Koeshi in Corsair fan control on Linux   
    Would you be open to provide some documentation for the protocol used so that we could implement it ourselves? Usually you don't really need to support Linux, just providing us with the means to do it ourselves is enough.
×