<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel rdf:about="https://community.wolfram.com">
    <title>Community RSS Feed</title>
    <link>https://community.wolfram.com</link>
    <description>RSS Feed for Wolfram Community showing questions tagged with Jobs &amp; More Exchange sorted by most likes.</description>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/943059" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/796831" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2837169" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/500141" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2159329" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2931798" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3156766" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1427111" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2111005" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/3644908" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2968310" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2991439" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2486769" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/853930" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2109591" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1793261" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/2266597" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1703796" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1575766" />
        <rdf:li rdf:resource="https://community.wolfram.com/groups/-/m/t/1266493" />
      </rdf:Seq>
    </items>
  </channel>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/943059">
    <title>[Cash] $100 bounty: design a chat bot of chained responses</title>
    <link>https://community.wolfram.com/groups/-/m/t/943059</link>
    <description>I need a function written and don&amp;#039;t have time to do it so I am offering $100 to whoever can write the shortest and most simple example code that accomplishes my goals.&#xD;
&#xD;
I use regular expressions (regex) a lot in my NLP projects. There is a bastardization of regex called spintax.&#xD;
&#xD;
It is basically just {content|other content} chained to other {alternatives|strings}.&#xD;
&#xD;
It usually comes nested as well. so it could be {phrases|some {other|similar} content} chained to similar {alternative {synonyms|strings}|parts of speach}&#xD;
&#xD;
In real life, it looks like this:&#xD;
&#xD;
    &amp;#034;{{I need|I want|I would like} |}{help|support|assistance|help support|{customer support|customer care|customer service|support service|support services|consumer support|client care|client service|service}}{ {please|if possible|if you please|bear in mind|pls}|}&amp;#034;&#xD;
&#xD;
This outputs variations of the sentence such as:&#xD;
&#xD;
 - I want help if possible&#xD;
 - I need support please&#xD;
 - I want help if you please&#xD;
 - I need assistance&#xD;
&#xD;
I need a function where I can just paste this spintax code into a variable and have it spit out these variations.&#xD;
&#xD;
I imagine it could be something like:&#xD;
&#xD;
    spinTax = &#xD;
      &amp;#034;{{I need|I want|I would like} |}{help|support|assistance|help support|{customer support|customer care|customer service|support service|support services|consumer support|client care|client service|service}}{ {please|if possible|if you please|bear in mind|pls}|}&amp;#034;;&#xD;
    &#xD;
    variationCount = 4;&#xD;
    &#xD;
    spinFunc = (*Some cool function that spits out variations*)&#xD;
    &#xD;
    spinClean = Union[spinFunc]; (*Clean up the list, remove duplicates, etc. Run function again until desired count of unique variations is reached*)&#xD;
    &#xD;
    Out[10] = {&amp;#034;I want help if possible&amp;#034;, &amp;#034;I need support please&amp;#034;, &amp;#034;I want help if you please&amp;#034;, &amp;#034;I need assistance&amp;#034;}&#xD;
&#xD;
&#xD;
Here is my code in PHP that outputs in json. Maybe this can help. &#xD;
&#xD;
      # Show results.&#xD;
    &#xD;
      if($output[&amp;#039;success&amp;#039;]==&amp;#039;true&amp;#039;){&#xD;
    &#xD;
    class Spintax&#xD;
    {&#xD;
        public function process($text)&#xD;
        {&#xD;
            return preg_replace_callback(&#xD;
                &amp;#039;/\{(((?&amp;gt;[^\{\}]+)|(?R))*)\}/x&amp;#039;,&#xD;
                array($this, &amp;#039;replace&amp;#039;),&#xD;
                $text&#xD;
            );&#xD;
        }&#xD;
    &#xD;
        public function replace($text)&#xD;
        {&#xD;
            $text = $this-&amp;gt;process($text[1]);&#xD;
            $parts = explode(&amp;#039;|&amp;#039;, $text);&#xD;
            return $parts[array_rand($parts)];&#xD;
        }&#xD;
    }&#xD;
    &#xD;
    $spintax = new Spintax();&#xD;
    $string = $output[&amp;#039;output&amp;#039;];&#xD;
    &#xD;
    $spunVariations = array();&#xD;
    for ($x = 0; $x &amp;lt;= $variationCount; $x++) {&#xD;
    $spunVariations[] = $spintax-&amp;gt;process($string);&#xD;
    }&#xD;
    $spunVariations= array_keys(array_count_values($spunVariations));&#xD;
    $x = count($spunVariations, COUNT_RECURSIVE);&#xD;
    &#xD;
    $spunVariations= array_keys(array_count_values($spunVariations));&#xD;
     $arr = $output[&amp;#039;output&amp;#039;];&#xD;
        //echo json_encode($arr);&#xD;
    	echo json_encode($spunVariations);&#xD;
    &#xD;
      }&#xD;
      else{&#xD;
        echo json_encode(&amp;#034;Error:&amp;#034;. $output[error]);&#xD;
      }&#xD;
    }&#xD;
    else{&#xD;
      # There were errors.&#xD;
        echo json_encode(&amp;#034;Error:&amp;#034;. $output[error]);&#xD;
    }&#xD;
&#xD;
&#xD;
This PHP example doesn&amp;#039;t have the function of ensuring that the resulting list has only unique values in it. It also doesn&amp;#039;t have any checks to make sure the resulting sentences are greatly different from each other.</description>
    <dc:creator>David Johnston</dc:creator>
    <dc:date>2016-10-14T07:18:28Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/796831">
    <title>[Call] for talks at Oxford&amp;#039;s Digital Humanities Summer School [Oxford]</title>
    <link>https://community.wolfram.com/groups/-/m/t/796831</link>
    <description>[Martin Hadley][1] and I are organizing a 5-day Wolfram Language workshop at Oxfords [Digital Humanities Summer School][2] Analysing Humanities Data: An Introduction to Knowledge-Based Computing with the Wolfram Language. Heres a brief overview from the course description:&#xD;
&#xD;
&amp;gt; This example-led workshop will provide a comprehensive introduction to techniques for analysing a wide range of humanities data with the Wolfram Language; from text analysis, image processing, and visualization, to network analysis, time-related and geographic computation, and machine learning. The course assumes no prior knowledge of any programming language. Participants will learn the concepts needed to import, manipulate, and analyse humanities data using both the natural-language input and scripted interfaces to the Wolfram Language and to share their data and applications in the cloud. Part of the material in the course will be drawn from William Turkels open-access textbook, *[Digital Research Methods with Mathematica][3]* &#xD;
&#xD;
Were looking for one or two experienced WL users who would be interested in coming to Oxford between July 4th and 8th (at our expense, naturally) to give a c. 3/4 or hour long presentation/talk on some aspect of the WL relevant to the humanities. This need not be text related! Yes, we do more than just read old books :^) Potential topics for your presentation might include geodata &amp;amp; geocomputation, network analysis, general graphing &amp;amp; plotting, time series analysis, an intro. to machine learning, sound analysis &amp;amp; sonification, using MMA with R-Link etc. &#xD;
 &#xD;
Martin (who is a data scientist for Oxford University IT Services, and previously worked as a consultant for Wolfram Research,([https://uk.linkedin.com/in/martinjohnhadley][4]) will be teaching the course. My research background is in the humanities (Im digital project manager for [http://culturesofknowledge.org][5]) and I am still a WL beginner, so I&amp;#039;m collaborating with Martin to make our examples and data as relevant as possible to our predominantly &amp;#039;newbie&amp;#039; humanities/social sciences audience. &#xD;
&#xD;
If youre at all interested or curious to learn more, please let us know sooner rather than later, as wed like to firm up the syllabus quite soon. We can host you for one or two nights in Oxford (including travel) if youd like to give one presentation, or for as long as 5 days if youd like to stay longer and give two talks (or perhaps even assist us with running the class itself). &#xD;
&#xD;
Although we didnt plan this, this is a particularly auspicious time to be learning the WL for the first time, with lots of new resources newly available from WR and elsewhere, and huge potential for applying it in the humanities. &#xD;
&#xD;
&#xD;
  [1]: https://uk.linkedin.com/in/martinjohnhadley&#xD;
  [2]: http://digital.humanities.ox.ac.uk/dhoxss/2016&#xD;
  [3]: http://williamjturkel.net/digital-research-methods-with-mathematica&#xD;
  [4]: https://uk.linkedin.com/in/martinjohnhadley&#xD;
  [5]: http://culturesofknowledge.org</description>
    <dc:creator>Arno Bosse</dc:creator>
    <dc:date>2016-02-19T20:05:22Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2837169">
    <title>Nonlinear Partial Differential Equation paid collaboration needed</title>
    <link>https://community.wolfram.com/groups/-/m/t/2837169</link>
    <description>I will pay $200 for the solution of the following nonlinear Partial Differential Equation using Wolfram Technologies:  &#xD;
![email:gotallcn@gmail.com][1]&#xD;
&#xD;
&#xD;
  [1]: https://community.wolfram.com//c/portal/getImageAttachment?filename=IMG_7083.jpg&amp;amp;userId=2673010</description>
    <dc:creator>Tao Guo</dc:creator>
    <dc:date>2023-02-24T06:36:59Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/500141">
    <title>[Project] Sorting/shuffling machine for trading cards [Collecting Concepts]</title>
    <link>https://community.wolfram.com/groups/-/m/t/500141</link>
    <description>Our company buys and sells millions of trading cards (sports, Magic, Pokemon, etc.) every year but the majority of these are sold for fractions of a penny if they&amp;#039;re sold at all. From what I can see there are two options for us to get more out of these cards, both of which are incredibly time-consuming and not worth the effort without the process being automated. I&amp;#039;m hoping someone here can help direct me towards a solution for either option that I&amp;#039;ll detail below.&#xD;
&#xD;
1. Often times the cards are purchased in large lots where boxes may contain cards primarily from the same year/set, i.e. 10,000 2012 Topps baseball cards, 20,000 2015 Upper Deck baseball cards, etc. The idea would be to take cards from various sources and shuffle them in a way that there is little or no consecutive duplication, basically creating &amp;#034;grab bags&amp;#034; of X number of cards per package. Think of shuffling 10 decks of playing cards simultaneously then dealing 10-card &amp;#034;hands&amp;#034; that are individually packaged. The trick is making sure those 10-card hands have a variety of cards instead of all from the same set.&#xD;
&#xD;
2. This one is much more difficult but I can&amp;#039;t imagine it wouldn&amp;#039;t be possible given advances in OCR technology...same as option #1 but have the cards sorted by teams and then randomized.&#xD;
&#xD;
Potential issue is handling/shuffling of the cards as they can&amp;#039;t be damaged, so that needs to be addressed in any possible solution.&#xD;
&#xD;
Any ideas feel free to contact me directly, whether individual engineer or corporate.</description>
    <dc:creator>abc def</dc:creator>
    <dc:date>2015-05-19T22:38:20Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2159329">
    <title>Tutoring sessions in Wolfram/Jupyter</title>
    <link>https://community.wolfram.com/groups/-/m/t/2159329</link>
    <description>Hi there folks,&#xD;
&#xD;
I&amp;#039;m new to programming and to Wolfram.&#xD;
I&amp;#039;m looking for some tutoring to get up and running using the Wolfram language generally, but also in Jupyter notebooks (ideally for rudimentary applications in data science). Sessions over zoom, or similar.&#xD;
&#xD;
To restate; the main thing I would need from a prospective tutor would be good knowledge of how to run the language from Python/Jupyter. And English speaking.&#xD;
&#xD;
Cheers,&#xD;
&#xD;
Mike</description>
    <dc:creator>mike douglas</dc:creator>
    <dc:date>2021-01-11T15:27:57Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2931798">
    <title>Modest Job Offer: Converting a published paper into a Mathematica Notebook</title>
    <link>https://community.wolfram.com/groups/-/m/t/2931798</link>
    <description>My objective is to convert a 1970s published paper -- &amp;#034;[Inferential statistical methods for estimating and comparing cosinor parameters][1]&amp;#034; into a Mathematica notebook ... that is as close as possible to the original paper format *and* is computationally live, meaning it is possible for those who download the notebook to change input data, tweak implementations, etc and see the results.  A follow-on project is to publish sub-segments of the methods to Wolfram&amp;#039;s Function Repository.&#xD;
&#xD;
I am seeking a mentor to guide me with the initial part of the conversion for Section 1 of the paper -- so that I may learn by example and continue on to complete the conversion of the remainder of the work.  At the conclusion, I&amp;#039;d like to meet again to review the entire Mathematica document from top to bottom to ensure it is a faithful recreation of the original paper.&#xD;
&#xD;
This is entirely a self-funded project -- I have a very modest and humble budget.  If interested, please send me an example of a Mathematica notebook you&amp;#039;ve published that would be &amp;#034;similar&amp;#034; to the format of the cited paper (above) -- and let me know of your consulting rate and availability to partner with me for 10 hours of work (with some zoom based paired Mathematica programming) to translate Section 1 of the paper into a Mathematica notebook.  NOTE: I don&amp;#039;t know that 10 hours is too much or too little, but I do recognize your time is valuable and that 10 hours of undivided attention is helpful to gain momentum on the work.&#xD;
&#xD;
&#xD;
  [1]: https://www.researchgate.net/publication/232440656_Inferential_statistical_methods_for_estimating_and_comparing_cosinor_parameters</description>
    <dc:creator>Chase Turner</dc:creator>
    <dc:date>2023-06-07T14:02:39Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3156766">
    <title>Help needed --- Every Japanese to be called SATO by 2531&amp;#034;</title>
    <link>https://community.wolfram.com/groups/-/m/t/3156766</link>
    <description>Hello!&#xD;
&#xD;
I&amp;#039;m a teacher of journalism at the international EDJ school in Nice FR&#xD;
&#xD;
My students have access to Mathematica 14 (but they mainly use chat-driven notebooks as the wolfram language is sort of complicated to them).&#xD;
&#xD;
Anyway. As part of the &amp;#034;Data Journalism&amp;#034; course I want to give them the assignment to read this article  https://www.dailymail.co.uk/news/article-13266707/Everyone-Japan-called-Sato-year-2531-countrys-marriage-laws.html&#xD;
&#xD;
It tells the story of a Tohoku University economics professor that concluded that, given how married couples in jpn  drop one of their family names in favour of both individuals taking the same one everyone will be called &amp;#034;SATO&amp;#034; by 2531.&#xD;
&#xD;
I&amp;#039;d like the students to perform  the same simulation for their own country (after finding out the candidate family name -- for Italy that would probably be &amp;#034;Rossi&amp;#034;)&#xD;
&#xD;
Now, after some digging I&amp;#039;ve found in this PDF https://think-name.jp/assets/pdf/Sato_estimation_yoshida_hiroshi.pdf&#xD;
&#xD;
the method used to perform the calculation for Japan:&#xD;
&#xD;
Handling of Past Data&#xD;
&#xD;
First, we obtained the number of people with the Sato surname in Japan from the data provided and published by &amp;#034;Myoji-yurai.net&amp;#034; (https://myoji-yurai.net/), which covers more than 99.04% of Japanese surnames.&#xD;
&#xD;
Next, we divided the number of people with the Sato surname by the total population of Japan for each year (estimated by the Ministry of Internal Affairs and Communications) * 99.04% to obtain the &amp;#034;ratio of the Sato surname in a given year t&amp;#034;: x(t).&#xD;
&#xD;
From the change in the Sato surname between the latest years of 2022 and 2023, we calculated the one-year growth rate \[Rho] in the Sato surname ratio.&#xD;
Estimation Results (1) Growth Rate \[Rho] of the Sato Surname It is found that the ratio of the Sato surname x(t) increased from 1.480% in 2013 to 1.530% in 2023, an increase of 0.05 percentage points over more than 10 years. Calculating from the data for the most recent points of 2022 and 2023, the growth rate \[Rho] of the Sato surname ratio is (1+\[Rho]) = 1.0083.&#xD;
&#xD;
(2) Future Simulation&#xD;
Assuming that the ratio of the Sato surname to the Japanese population will grow at a rate of 1.0083 each year, starting from 1.530% as of March 2023, and repeating the calculation of x(t+1) = (1+\[Rho]) x(t), it was calculated that the ratio will reach 100% in approximately 500 years, in 2531.&#xD;
&#xD;
-----&#xD;
&#xD;
**And the question is : Is anyone kind enough to write me the Wolfram Language generic code to perform the same**  ? Ideally, students could get their own country basic data (if possible directly with WolfrmaLanguage functions, if not possible from outside sources) and have the system perform the simulation for them (of course, forcing the Japanese role &amp;#034;select one family name&amp;#034;  even if not the case for the specific country)&#xD;
&#xD;
&#xD;
&#xD;
It is also possible that it will not converge and we will never have a &amp;#034;Rossi only&amp;#034; country not even in year 3500...or maybe yes. But that&amp;#039;s also the point of the simulation.&#xD;
&#xD;
Thanks!!</description>
    <dc:creator>Marco Barsotti</dc:creator>
    <dc:date>2024-04-11T09:01:38Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1427111">
    <title>Connect Mathematica to IB TWS</title>
    <link>https://community.wolfram.com/groups/-/m/t/1427111</link>
    <description>I&amp;#039;m looking for a programmer who can create an interface between Mathematica (11.3) and Interactive Brokers TWS application using one of the IB api&amp;#039;s (C++, Java).  The basic idea is to be able to retrieve data (stock prices, position information, etc) and send orders in a MMA Notebook.&#xD;
&#xD;
There are some hints [here][1]&#xD;
&#xD;
This kind of functionality has been [available in Matlab][2] for some time:  &#xD;
&#xD;
&#xD;
If anyone can recommend a programmer with the requisite skill set it would be much appreciated.&#xD;
&#xD;
&#xD;
  [1]: https://mathematica.stackexchange.com/questions/64831/how-can-i-connect-to-the-ib-tws-platform-from-mathematica&#xD;
  [2]: https://undocumentedmatlab.com/ib-matlab</description>
    <dc:creator>Jonathan Kinlay</dc:creator>
    <dc:date>2018-08-28T08:55:32Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2111005">
    <title>Collaboration needed: Program Human Bio Machine Interfaces</title>
    <link>https://community.wolfram.com/groups/-/m/t/2111005</link>
    <description>I believe I have a enough biological data to make accurate high-quality immune system compatible synthetic human body limbs and organs to help injured American Patriots.  I need a high-quality Mathematica coder to help me program the bio-mechanical drivers &amp;amp; interfaces software components needed. The work will be done in Northern Colorado.</description>
    <dc:creator>John Remillard</dc:creator>
    <dc:date>2020-11-09T05:57:28Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/3644908">
    <title>Looking for help cleaning up a Mathematica notebook into a reference implementation</title>
    <link>https://community.wolfram.com/groups/-/m/t/3644908</link>
    <description>**TL;DR** I&amp;#039;m looking for someone to refactor a Mathematica notebook I&amp;#039;ve got from a fellow researcher so I can use it as a reliable reference implementation. I expect it&amp;#039;s a few hours of work for the right person. I can offer financial compensation and/or my own technical expertise.&#xD;
&#xD;
Hello Wolfram community!&#xD;
&#xD;
I hope this is the right place for this kind of request. If not, my apologies!&#xD;
&#xD;
I&amp;#039;m a PhD student in the final stage of my project, an attempt at closed-loop control of water jets from firefighting robots using UAV imagery as feedback. The controller design is based on the Smith predictor architecture, which requires a predictive model to compensate for the long dead time of the system. Accurately predicting the trajectory of water jets is far from trivial. One of the most promising models I could find is described in https://link.springer.com/article/10.1007/s10694-021-01175-1. The model is formulated as a system of ordinary differential equations.   &#xD;
  &#xD;
I tried implementing it in Python so I can integrate it with my other components. It&amp;#039;s almost complete, but despite several months of debugging I haven&amp;#039;t been able to resolve the remaining issues. So I contacted the corresponding author. They confirmed some errors I found in the printed versions of the equations, and kindly provided their original Mathematica implementation. This helped, but my own implementation is still incomplete. The issues could stem from additional errors in the printed equations I/we haven&amp;#039;t found yet, mistakes in my implementation, or differences in solver behavior (Mathematica&amp;#039;s vs. SciPy&amp;#039;s solve_ivp() function). &#xD;
&#xD;
Unfortunately, the notebook is hard for me to follow and differs quite a bit from the published paper (structure, variable naming, angle conventions, etc.). I&amp;#039;ve never worked with Mathematica and don&amp;#039;t have the time nor patience to properly learn it before my deadline. &#xD;
&#xD;
The author is currently unable to provide further support, but since I&amp;#039;m getting more and more desperate to finish this subproject, I&amp;#039;m now seeking third-party help. I&amp;#039;m looking for someone to refactor the notebook into a clean, well-structured reference implementation. Specifically, I&amp;#039;d like them to&#xD;
&#xD;
 - remove unused and redundant code (many expressions are duplicated)&#xD;
 - improve structure&#xD;
 - improve documentation&#xD;
 - add small quality-of-life improvements if appropriate&#xD;
 - flag any noticeable discrepancies&#xD;
&#xD;
The refactored version must reproduce the original results, in particular the figures shown in the paper. Ideally, it should make it easy to experiment with the equations and parameters. One specific goal is to verify whether the rearranged equation forms I use in Python (to match SciPy&amp;#039;s solver interface) produce the same results as the original formulation.&#xD;
  &#xD;
If you&amp;#039;re interested, I&amp;#039;ll obtain the author&amp;#039;s permission and share the notebook privately so you can assess the scope before we discuss compensation. Bonus points if you have experience with physics-based simulations and are open to occasional follow-up questions :)&#xD;
&#xD;
Many thanks and regards!</description>
    <dc:creator>Merlin Stampa</dc:creator>
    <dc:date>2026-02-24T20:34:23Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2968310">
    <title>Looking for a teacher for help me for Wolfram Mathematica in private course</title>
    <link>https://community.wolfram.com/groups/-/m/t/2968310</link>
    <description>I am looking for a supervisor in mathematical epideùiology to help me solve the problems to move forward with my thesis. How can I have a private course?</description>
    <dc:creator>AZO MAT</dc:creator>
    <dc:date>2023-07-15T18:14:50Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2991439">
    <title>Seeking Paid Technical Reviewer for Mathematica/Wolfram Book</title>
    <link>https://community.wolfram.com/groups/-/m/t/2991439</link>
    <description>Hi Wolfram community,&#xD;
&#xD;
I have an opportunity for a Wolfram subject matter expert to provide a paid technical review of the revision of Apress’ upcoming book, “Beginning Mathematica and Wolfram for Data Science.&amp;#034; This revised edition aims to provide readers with a comprehensive understanding of data science using Mathematica and the Wolfram Language, delving into new features, advanced techniques, and real-world applications.&#xD;
&#xD;
**Book Overview:** &#xD;
The revised book will cover a wide range of topics including Wolfram Cloud Integration, in-depth exploration of data types in Mathematica, essential programming concepts, advanced code performance and debugging techniques, and the incorporation of Notebook styles. We have also incorporated the latest functionalities from code version 13 for imported and exported data. The content has been reorganized for improved context, ensuring a smoother learning experience for our readers. For more information, please see the book description here: https://link.springer.com/book/10.1007/978-1-4842-6594-9 &#xD;
&#xD;
**Opportunity Details:**&#xD;
We are seeking a Wolfram expert who can provide a technical review of the manuscript. Your role will involve conducting an overall assessment of each chapter, identifying any potential technical errors, and offering valuable feedback to enhance the quality and accuracy of the content. We expect the reviewer to have the necessary software and resources to test the provided code under various operating systems and languages mentioned in the text.&#xD;
&#xD;
**Compensation and Recognition:** &#xD;
For this project, we offer a standard rate of $1.00 per manuscript page (page count is expected to be 430 pages). Additionally, your expertise will be recognized with a dedicated &amp;#034;About the Reviewer&amp;#034; section in the front matter of the book, allowing you to showcase your biography and accomplishments. You will also receive a complimentary copy of the book as a token of our appreciation for your contribution.&#xD;
&#xD;
**Schedule:** &#xD;
The review will begin in mid-November after the author submits the first three chapters. From there, the author will submit the remaining chapters through March 1st. It’s expected the reviewer will be able to supply feedback incrementally as new chapters become available. We are hoping to have the full review completed by the end of March. &#xD;
&#xD;
**How to Express Interest:**&#xD;
If you are passionate about the Wolfram Language and possess a strong command of its intricacies, we invite you to express your interest in this opportunity. Please send your CV to melissa.duffy@apress.com, as well as any additional relevant experience, qualifications, and your familiarity with the Wolfram Language.</description>
    <dc:creator>Melissa Duffy</dc:creator>
    <dc:date>2023-08-15T19:12:12Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2486769">
    <title>Collaboration needed: optical flow for videos</title>
    <link>https://community.wolfram.com/groups/-/m/t/2486769</link>
    <description>We are a team studying on water flow of a river, we want to measure the velocity of the river flow using the optical flow method. for this purpose, we have prepared a video of the river. Now we need someone who has code writing skills. (Preferably in Mathematica).&#xD;
&#xD;
If you have able and would like to know us and our idea, please let me know.&#xD;
also, the fee for coding can be paid.</description>
    <dc:creator>Shabnam Naghshara</dc:creator>
    <dc:date>2022-03-08T09:54:36Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/853930">
    <title>[Job] Mathematica Programmers in Finance, Asset Management [LongTail Alpha]</title>
    <link>https://community.wolfram.com/groups/-/m/t/853930</link>
    <description>[LongTail Alpha, LLC][1], a new asset management firm in beautiful Newport Beach California is looking for experienced Mathematica programmers for developing investment, trading and risk analytics.  &#xD;
&#xD;
Responsibilities:&#xD;
-----------------&#xD;
&#xD;
Demonstrated experience with Mathematica and other programming languages (C/C++, Python,Perl etc.).  Strong knowledge of finance and finance libraries, especially derivatives pricing, algorithms, database management etc..  Ability to understand technical finance documents and translate them to code. Desire to excel and good social and interpersonal skills.&#xD;
&#xD;
Bachelors or higher degree in computer science, physics, finance, economics etc.&#xD;
&#xD;
Location: Newport Beach, CA.&#xD;
&#xD;
Apply online at [LongTailAlpha.com][2].&#xD;
&#xD;
[![enter image description here][3]][1]&#xD;
&#xD;
&#xD;
  [1]: http://www.longtailalpha.com&#xD;
  [2]: http://www.longtailalpha.com&#xD;
  [3]: http://community.wolfram.com//c/portal/getImageAttachment?filename=longtail-alpha-logo.png&amp;amp;userId=11733</description>
    <dc:creator>Vineer Bhansali</dc:creator>
    <dc:date>2016-05-09T21:07:05Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2109591">
    <title>Connecting to the Shopify API</title>
    <link>https://community.wolfram.com/groups/-/m/t/2109591</link>
    <description>I&amp;#039;ve got a project that I&amp;#039;m going to start on next week.  Before I try to recreate the wheel, I wanted to ask the community if anyone else has connected Wolfram to Shopify.&#xD;
&#xD;
Also, this is a project that I could use a collaborator if anyone is interested.&#xD;
&#xD;
Thanks.  Have a great weekend.</description>
    <dc:creator>Mike Besso</dc:creator>
    <dc:date>2020-11-06T23:53:35Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1793261">
    <title>Hyperlink</title>
    <link>https://community.wolfram.com/groups/-/m/t/1793261</link>
    <description>Mathematica offers the Hyperlink function to insert a link into a document. Is there something similar or a way to insert a button into a document (file) so that I can open another document from the current document?&#xD;
Regards&#xD;
Sinval</description>
    <dc:creator>Sinval Santos</dc:creator>
    <dc:date>2019-09-21T12:42:37Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/2266597">
    <title>Computational chemist - full time job opportunity</title>
    <link>https://community.wolfram.com/groups/-/m/t/2266597</link>
    <description>Hello!  I am hiring for a full time Computational Chemistry for one of my companies, SmarterSorting.  Very much a WolframLang, WolframAlpha opportunity.  Company is based in Austin, TX, but this role can work anywhere.&#xD;
&#xD;
If you love Wolfram, chemistry, computational thinking and fast growing startups that have lots of fun data, apply or message me.&#xD;
&#xD;
https://boards.greenhouse.io/smartersorting/jobs/4005347004&amp;amp;dep=4004121004</description>
    <dc:creator>Russell Foltz-Smith</dc:creator>
    <dc:date>2021-05-12T14:09:51Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1703796">
    <title>Urgent: Temporary Consulting Services Needed</title>
    <link>https://community.wolfram.com/groups/-/m/t/1703796</link>
    <description>Consulting is needed for small sized company providing actuarial and data science consulting services to insurance companies in the GCC and Pakistan.&#xD;
&#xD;
The company has an old code base which is written in Wolfram language by a former employee. The primary role is to do ETL data to an SQL Server. The data cleaning and transformation is performed in Wolfram language and then loaded into SQL Server using &amp;amp;quot;DatabaseLink`&amp;amp;quot;. The code also perform several analysis tasks by automating the generation of some very large queries in SQL and visualization. The queries are generated in Wolfram language then send to SQL Server for execution and results returned back and analysed.&#xD;
&#xD;
The code seems to be working correctly but the company&amp;#039;s client has recently changed the data structure and thus the code requires modification to work again. Unfortunately there is no one currently on the company&amp;#039;s team with sufficient Wolfram language expertise.&#xD;
&#xD;
The code base contains few pages of Wolfram language code together with dynamic SQL mixed. In addition, there are several StringExpression and RegularExpression in the ETL portion of the code.&#xD;
&#xD;
The company is looking for a temporary consultant with Wolfram language and SQL expertise that can help them modify the code to make it work on the current dataset. The consultant will have the necessary expertise to move the company from this temporary phase of disruption.&#xD;
&#xD;
If anyone is interested please reply back on my email. Please state how much will you charge for the service? The company doesn&amp;#039;t need a full code rewrite but somebody to understand the code and make necessary changes to make it work on the new dataset.&#xD;
&#xD;
Do you have consultants who can be available in Pakistan (preferable) or UAE to provide the service on site? Also what will be the difference in charges if the company go for remote consulting instead of on site. Will you charge on hourly bases or lump sum for the project?&#xD;
&#xD;
You can answer privately on my email: xxx</description>
    <dc:creator>Muhammad Ali</dc:creator>
    <dc:date>2019-06-13T03:47:16Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1575766">
    <title>Collaboration Request: Checker-like 2D Simulation following rules.</title>
    <link>https://community.wolfram.com/groups/-/m/t/1575766</link>
    <description>I&amp;#039;d like to build a framework, where self-growing simulations can be done on a checkerboard that allows for element sizes different from 1. Been building it for 1 month now (more visually oriented guy here), but the complexity of the algorythms I come up with always gets to me.&#xD;
&#xD;
I&amp;#039;d like it to work in Mathematica Home Desktop. I own a license.&#xD;
&#xD;
Abilities to set are: size of the board, list of different sizes of elements to use. The elements should be placed such that they only touch corners and never overlap.&#xD;
&#xD;
It has proven so hard for me to come up with an elegant and fast, scaleable approach that I would welcome any hints or aid. I have a brute-force solution that does what I want I can share on request.&#xD;
&#xD;
Hope you find the time to write back and see if we can cook something up.&#xD;
&#xD;
All the best, Mark</description>
    <dc:creator>Mark Florquin</dc:creator>
    <dc:date>2018-12-20T15:35:52Z</dc:date>
  </item>
  <item rdf:about="https://community.wolfram.com/groups/-/m/t/1266493">
    <title>Calling WL users in Charleston, ATL, DC, Raleigh-Durham, Baltimore, Chicago</title>
    <link>https://community.wolfram.com/groups/-/m/t/1266493</link>
    <description>Hi all -- &#xD;
&#xD;
I&amp;#039;m looking to connect with some Wolfram language power-users located near the following areas:&#xD;
&#xD;
 - Charleston, SC&#xD;
 - Atlanta, GA&#xD;
 - Washington, DC&#xD;
 - Raleigh, NC&#xD;
 - Baltimore, MD&#xD;
 - Chicago, IL&#xD;
&#xD;
I work with our Commercial team to establish and support licensing in these major cities, and I think it&amp;#039;d be really beneficial to work with some of our more passionate users there. Obviously, being located in Champaign, I have some limitations to my knowledge of as well as my access to these areas, so I think collaborating with you all to either get a better idea of the tech landscape or even working to raise awareness could be a worthwhile effort.&#xD;
&#xD;
Curious in connecting to some of you. Any level of interest from &amp;#034;I can help you learn more about this city&amp;#039;s tech landscape and its networking opportunites&amp;#034; to &amp;#034;here&amp;#039;s some connections I have in the area&amp;#034; to &amp;#034;let ME be your Wolfram Language evangelist for my city&amp;#034; is appreciated. Feel free to comment on here or shoot me a quick email at samt@wolfram.com if you&amp;#039;re interested. Excited to connect!</description>
    <dc:creator>Sam Tone</dc:creator>
    <dc:date>2018-01-16T23:31:20Z</dc:date>
  </item>
</rdf:RDF>

