search for: appdirs

Displaying 20 results from an estimated 22 matches for "appdirs".

Did you mean: appdir
2008 Sep 06
1
application.menu... need a little hint :)
hi everyone, first of all i'm using ubuntu. i had the wine menu in the top of all other menus (inside Applications menu), and i dragged it on the bottom of the list under Applications menu (in the "Main Menu" editor), just where it was before deleting it involuntary, but it finished inside the Universal Access menu. then i opened application.menu file where i tried to take this
2012 Feb 01
5
Wine Executes Locally, But Not With Absolute Path
I have an uninstalled portable Windows .exe. When I type the absolute path, it doesn't work: > wine /home/ubuntu/appDir/myApp.exe but, if I cd to the application directory and execute it locally, it works: Code: cd /home/ubuntu/appDir/ wine myApp.exe I'm trying to include it in my Docky dock via a .desktop shortcut I've made in /usr/share/applications/. I don't mind
2011 Aug 11
2
difference between '%u' and '%U'?
I realized in looking at my smb.conf, I'm not using these in a consistent manner, and .... well I just don't understand what the differences are between them. Sure I can read the smb.conf page: %U session username (the username that the client wanted, not necessarily the same as the one they got). vs. %u username of the current service, if any. ---
2009 Mar 22
2
wineboot not working as expected
I'm trying to install "Microsoft Digital Image 9", and the very first thing it does is configures a few files then immediately prompts the user it's going to reboot. I press "Ok", and it then does what it just did, and pops up the same message. This can continue forever. So, I decided to try to press "Ok", then immediately enter in "wineboot".
2015 Mar 18
2
Need help for write rpm spec
Hi I am try to write rpm spec for install tomcat on a linux machine.But while build the rpm i found following error + /usr/lib/rpm/find-debuginfo.sh --strict-build-id /home/rpmbuild/BUILD/Install_tomcat-1.0 extracting debug info from /home/rpmbuild/BUILDROOT/Install_tomcat-1.0-1.el6.x86_64/usr/local/jdk1.7.0_13/lib/visualvm/profiler/lib/deployed/jdk16/linux-amd64/libprofilerinterface.so ***
2017 Sep 21
3
Add wrapper to Shiny in R package
Dear List, I'm trying to add a function that calls a Shiny App in my R package. The issue is that within my function, I'm creating objects that I'd like to pass to the app. For instance, from the example below, I'm getting "Error: object 'xs' not found". How can I pass "xs" explicitly to shinyApp()? *Under R directory:* myApp <- function(x, ...) {
2012 Jul 25
1
Rconfig.h & unsupported architectures
Hi all, Recently, when compiling R packages containing C code, I've started getting the following error: * installing to library ?/Users/hadley/R? * installing *source* package ?appdirs? ... ** Creating default NAMESPACE file ** libs *** arch - i386 gcc -arch i386 -std=gnu99 -I/Library/Frameworks/R.framework/Resources/include -I/Library/Frameworks/R.framework/Resources/include/i386 -DNDEBUG -I/usr/local/include -fPIC -g -O2 -c win-path.c -o win-path.o In file included from /L...
2017 Sep 21
0
Add wrapper to Shiny in R package
Dear Axel, I've used environment for such problems. assign("xs", xs, envir = my.env) in the myApp function get("xs", envir = my.env) in the server function Best regards, ir. Thierry Onkelinx Statisticus/ Statiscian Vlaamse Overheid / Government of Flanders INSTITUUT VOOR NATUUR- EN BOSONDERZOEK / RESEARCH INSTITUTE FOR NATURE AND FOREST Team Biometrie &
2006 Jul 08
0
[tip] running games on a dedicated display
Hi all, Here's a small mechanism I have built to run games in a dedicated display. The main reasons for doing that were: - to avoid desktop stuff to pop over my games display - to run games in a display matching the game resolution - to avoid manually switching my main resolution back and forth - to avoid problems where quitting a games leaves my desktop in the wrong resolution The idea is
2017 Sep 21
1
Add wrapper to Shiny in R package
Thank you Thierry. I'm trying to following your suggestion in the example below, but getting: Error in get("xs", envir = my.env) : object 'my.env' not found. library(shiny) library(shinydashboard) myApp <- function(x, ...) { xs <- scale(x) my.env <- new.env() assign("xs", xs, envir = my.env) shiny::runApp(app) } app = shinyApp( ui =
2019 Jan 15
0
AIX issue
On Tue, 15 Jan 2019 17:09:00 +0000 Howard Coles <hcoles at dollargeneral.com> wrote: > Here is the smb.conf made generic to pass on. The share I’m > concerned with at the moment is the "appprt" share, it's simple > enough but it's not recognizing that primary local group.: > > # Samba config file created using SWAT > # Date: 2007/09/26 11:03:44 >
2008 Oct 29
1
winedoors and starmenu
...ated(submenu) File "/var/lib/python-support/python2.5/xdg/Menu.py", line 856, in __genmenuNotOnlyAllocated __genmenuNotOnlyAllocated(submenu) File "/var/lib/python-support/python2.5/xdg/Menu.py", line 859, in __genmenuNotOnlyAllocated tmp["cache"].addMenuEntries(menu.AppDirs) This has happent twice now! How could I fix this problem? last time I reinstall my computer.
2012 Mar 01
1
Wine doesn't fix resolution changes.
When I play various games that change the display, in most cases it doesn't return back to normal after the program exits. This can be a pain when it makes the images to huge I can't click the apply button to fix the resolution problem. My idea is to implement a check/revert to previous resolution to the wine project.
2007 Jul 02
0
How to use MS Word features from Rails app running as servic
Hi, I am using features of MS Word 2003 on Win XP in my rails application. The server has Win XP installed. I am able to open a document, save as HTML etc. if I run the app using mongrel_rails start ... on command prompt. I use the Win32OLE support for Ruby: doc = WIN32OLE.new(''Word.Application'') However, at the deployment site, I have configured the app to run as a Windows
2007 Apr 10
2
What does the end user need to run wxruby apps ?
Hi ! I''m new to this mailing list ! I''m just beginning to learn ruby programmation, ( so far mainly coded php web apps, and math algorithms with Caml ), so i''m a noob about libraries, toolkits, etc .... I wondered what does the end user need to run wxruby applications ? _ On Windows, he''ll need the ruby interpreter ( such as the one click ruby installer ), and
2008 Feb 03
4
Extract vowels and consonants using Ruby Regex
Hello, I am trying to build a regex to extract vowels and consonants from a string. So far, I am able to extract the basic a-e-i-o-u sequence using the following extension to the String class: class String def vowels scan(/[aeiou]/i) end def consonants scan(/[^aeiou]/i) end end examples: >> "Mary had a little lamb".vowels => aaaiea >> "Mary had a
2017 Sep 17
2
Shiny App inside R Package
Dear List, I have a wrapper function that creates a Shiny App, as illustrated below. I'd like to include the function myApp() inside a package. I'd appreciate your guidance here, as I could not find good instructions on this online. myApp <- function(x) { require(shiny) shinyApp( ui = fluidPage( sidebarLayout( sidebarPanel(sliderInput("n",
2019 Jan 15
3
AIX issue
Hello, new to this list, but not lists generally speaking. Been around since '93 in IT so kinda thinking this shouldn't be stumping me, but it is. I have Samba 4.6.4-2 installed via IBM's Linux toolbox, on an AIX 7.1 server. Everything is working fairly well, except Kerberos, but it's not really needed for what I'm doing. The problem is that if a member has a primary group
2015 Aug 13
2
Clunky Xorg with latest 6.7 upgrade?
Is it just me or does Xorg/Gnome seem slow and clunky to any other desktop users once the 6.7 upgrade is done? $ uname -a Linux CentOS501.homegroannetwork 2.6.32-573.1.1.el6.x86_64 #1 SMP Sat Jul 25 17:05:50 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux $ cat /etc/centos-release CentOS release 6.7 (Final) Top shows PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 32160 root
2015 Aug 14
2
Clunky Xorg with latest 6.7 upgrade?
On Thu, 2015-08-13 at 23:51 -0700, Gordon Messmer wrote: > On 08/13/2015 02:44 PM, Bill Maltby (C4B) wrote: > > Top shows > > PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND > > 32160 root 20 0 259m 104m 22m R 76.5 1.3 559:07.79 Xorg > > 23391 hardtolo 20 0 6293m 215m 26m S 16.9 2.7 21:49.86 java > > Well, what's process