search for: psuedocod

Displaying 10 results from an estimated 10 matches for "psuedocod".

Did you mean: psuedocode
2017 Oct 25
11
[OT] Bash help
...com 20 me at example.com 40 you at domain.com 100 you at domain.com 30 I need to get the total number of messages for each email address.? This type of code has always been the hardest for me for whatever reason, and honestly, I don't write many scripts these days. I'm struggling to get psuedocode that works, much less a working script. I know this is off topic, and if it gets modded out, that's fine.? I just can't wrap my brain around it. -- Mark Haney Network Engineer at NeoNova 919-460-3330 option 1 mark.haney at neonova.net www.neonova.net
2007 May 21
3
defining client/server configs
...rney { include basenode include ntpserver ... } I''d probably prefer to just get the ntp class determine which file to use. Ideally I''d like to be able to just say "these boxes are the ntp servers" and then watch all the boxes get the correct config files :-) Some psuedocode like: if ($ntp_server in thisbox.aliases) { use ntp_server template else use ntp_client template fi This then leads onto where to store "details" for want of a better term. I see there has been some discussion about this: (http://mail.madstop.com/pipermail/puppet-users/2007-May/00...
2005 Aug 29
9
can a class find out it''s instance name?
Hi friends - a javascript question.... Does the prototype object add some way for a class to find out the variable name of its instance variable? Or does javascript have some built in way to do this? This is confusing to describe - but if I define a variable as some object: var myVariable= new Widget(''fdfa''); can some built-in method inside the Widget class be
2017 Oct 25
0
[OT] Bash help
...; you at domain.com 100 > you at domain.com 30 > > I need to get the total number of messages for each email address. This > type of code has always been the hardest for me for whatever reason, and > honestly, I don't write many scripts these days. I'm struggling to get > psuedocode that works, much less a working script. I know this is off topic, > and if it gets modded out, that's fine. I just can't wrap my brain around > it. > here is a python solution #!/usr/bin/python #python 2 (did not check if it works) f=open('yourfilename') D={} for line i...
2018 Mar 23
3
GSoC aspirant - guruprasad hegde
Hi, I plan to propose 'Math Aware search' project. After the literature review on the topic, I found Tangent or MIaS system would be a good start. With that, I studied both of the systems well. I plan to pick Tangent because it performs better. Also, it has a good literature(thesis report and few papers available) and reference code available. I keep the summary of both the system, I
2012 Sep 20
1
XMPP sendtodialplan
I've been working on an interactive XMPP interface so users at my office can interact with the timeclock and queues by XMPP (in addition to IVR menu, which has been running just fine for quite a while before the XMPP interface). I'm using sendtodialplan=yes to handling the incoming unsolicited messages, and typically will have at least one point of interaction where Asterisk requests
2012 Oct 10
5
Theora integration question
Hello, I am programmer working on a product which integrates Theora. I have a question regarding the memory use on some of the internals of Theora. Is this the right forum for this question, and if not, does anyone know where an appropriate place to ask is? Thanks Sam -------------- next part -------------- An HTML attachment was scrubbed... URL:
2008 Jan 29
8
Sending file from mobile phone to Rails app
Hi guys, So I''m trying to add the ability to send files (pictures) from mobile phones to my Rails app using an SMS number, NOT an email address. Can anyone share how this is done? Thanks, Adeel -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails:
2006 Jun 23
10
Don''t un-admin the last administrator
I have a User class with a field called admin which is a boolean that determines if the user is or is not an administrator. I want to make it impossible for the last administrator for an account to be removed from the system. I need to protect against this both when deleting a user and when editing a user as you can revoke a user''s administrator privileges via a form. User
2018 Jan 17
14
[PATCH 0/9] Add filters to nbdkit.
The first three patches are identical to: https://www.redhat.com/archives/libguestfs/2018-January/msg00079.html "[PATCH nbdkit v2 0/3] Refactor plugin_* functions into a backend" The rest of the patches add filters using the new filter API previously described here: https://www.redhat.com/archives/libguestfs/2018-January/msg00073.html This needs a lot more testing -- and tests --