<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: zoharasulin</title>
    <description>The latest articles on DEV Community by zoharasulin (@zoharasulin).</description>
    <link>https://dev.to/zoharasulin</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1045343%2Fe9256566-fcf9-4f4a-be61-f50274a675a3.jpg</url>
      <title>DEV Community: zoharasulin</title>
      <link>https://dev.to/zoharasulin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/zoharasulin"/>
    <language>en</language>
    <item>
      <title>OSDC-2023-OPEN SOURCE PROJECT</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Tue, 27 Jun 2023 20:50:40 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-2023-open-source-project-3ok8</link>
      <guid>https://dev.to/zoharasulin/osdc-2023-open-source-project-3ok8</guid>
      <description>&lt;p&gt;Hi everyone,&lt;br&gt;
As part of the &lt;a href="https://github.com/OSDC-Code-Maven/osdc-2023-03-azrieli"&gt;OSCD course&lt;/a&gt;,&lt;br&gt;
Today I want to update you on an open source project I built called &lt;a href="https://github.com/zoharasulin/string-matching-app-service/tree/main"&gt;stringmatching&lt;/a&gt;&lt;br&gt;
I would love for you to use it, I needed it in order to identify between 2 names that are accepted in my system and to assess whether the names are the same and what is the percentage of closeness between them.&lt;br&gt;
I found a library that uses the &lt;a href="https://he.wikipedia.org/wiki/%D7%9E%D7%A8%D7%97%D7%A7_%D7%9C%D7%95%D7%99%D7%A0%D7%A9%D7%98%D7%99%D7%99%D7%9F"&gt;Lewinstein distance algorithm&lt;/a&gt; and its name is &lt;a href="https://github.com/seatgeek/thefuzz"&gt;FuzzyWuzzy&lt;/a&gt;&lt;br&gt;
And in addition I added tests and used the &lt;a href="https://pypi.org/project/Flask/"&gt;Flask library&lt;/a&gt; to get 2 inputs and the ability to calculate the percentage of proximity of the strings in the html view.&lt;br&gt;
It seems like something small but when I wanted such a thing for my work I couldn't find it and it took me some time to find the libraries and prepare a service.&lt;br&gt;
That's why I want to offer you my project and reveal it so that if you ever need something like this you can use it.&lt;br&gt;
You can change the function and add data that is intended for your specific project.&lt;br&gt;
I added a test and CI file, I hope I helped you and look again at the &lt;a href="https://github.com/zoharasulin/string-matching-app-service/blob/main/README.md"&gt;README file&lt;/a&gt; in the project.&lt;/p&gt;

&lt;p&gt;For any question, comment or clarification, I would appreciate it if you could contact me and I will answer as soon as possible.&lt;br&gt;
Successfully,&lt;br&gt;
Zohar.&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>python</category>
      <category>github</category>
      <category>git</category>
    </item>
    <item>
      <title>osdc-assigment11-unittest</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Mon, 12 Jun 2023 20:58:51 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-assigment11-unittest-3poj</link>
      <guid>https://dev.to/zoharasulin/osdc-assigment11-unittest-3poj</guid>
      <description>&lt;p&gt;In last session we learned about Unit test on process and function code we build.&lt;/p&gt;

&lt;p&gt;Unit testing is a critical aspect of software development as it helps identify and fix bugs early in the development process. By writing unit tests, we can verify the behavior and functionality of individual units of code, such as functions or methods, in isolation.&lt;/p&gt;

&lt;p&gt;we over on many important examples and syntax code in presentation : &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;a href="https://code-maven.com/slides/python/testing-demo"&gt;Testing Demo&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://code-maven.com/slides/python/pytest"&gt;Testing with PyTest&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I chose to do a unit test on a repo that I had already built CI on&lt;br&gt;
But because it's just an API&lt;br&gt;
There was meaningful to build a test on.&lt;br&gt;
So I chose code that this API is based on from another repo.&lt;br&gt;
My repo that i build on PR is &lt;a href="https://github.com/Hipo/university-domains-list"&gt;university-domains-list&lt;/a&gt;&lt;br&gt;
One example of my test- Testing with Multiple Country Scopes:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;def test_multiple_country_scopes(self):
    source_data = [...]  # Sample source data
    filtered_output = country_filter(source_data, ["China", "France"])
    expected_output = [...]  # Expected filtered output for China and France
    self.assertEqual(filtered_output, expected_output)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;my PR that I send to author:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;HI .&lt;br&gt;
This PR was sent as part of course OSDC taught by: &lt;a class="mentioned-user" href="https://dev.to/szabgab"&gt;@szabgab&lt;/a&gt;.&lt;br&gt;
I add file test to your code filter.py.&lt;br&gt;
I think this tests can help your project when in further- you change the code or maybe add more features.&lt;br&gt;
I see your project and project API that base on your code and it very intersting.&lt;br&gt;
I wonder that was in your list json universities and colleges from Israel(my country :))&lt;br&gt;
Nice job!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Conclusion&lt;br&gt;
In this unit test, I have explored the process of writing unit tests for Project &lt;a href="https://github.com/Hipo/university-domains-list"&gt;university-domains-list&lt;/a&gt; country_filter function. I have covered different scenarios, including single country scopes, multiple country scopes, non-existent country scopes, empty source data, and empty country scopes. By writing these tests, I can ensure the correctness and robustness of the function, catching any potential bugs or issues early on.&lt;/p&gt;

&lt;p&gt;Unit testing is an essential practice in software development, enabling us to build reliable and maintainable code. By investing time and effort into writing comprehensive unit tests, we can increase confidence in our codebase and streamline the development process.&lt;/p&gt;

&lt;p&gt;I hope I have convinced you why you should test your next project&lt;br&gt;
A little secret - it's very easy but much more important.&lt;/p&gt;

&lt;p&gt;Hope to hear soon&lt;br&gt;
Zohar.&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>python</category>
      <category>github</category>
      <category>git</category>
    </item>
    <item>
      <title>OSDC-Assigment9-GithubActions(CI)</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Wed, 31 May 2023 20:38:04 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-assigment9-githubactionsci-57np</link>
      <guid>https://dev.to/zoharasulin/osdc-assigment9-githubactionsci-57np</guid>
      <description>&lt;p&gt;In lesson 9 we learned about "Continuous Integration(CI) for GitHub projects" We learned GitHub Actions and provided examples of how to use them. The presentation included a demonstration of a simple workflow and implementation, examples of how to trigger jobs, and an overview of environment variables and repositories from &lt;a class="mentioned-user" href="https://dev.to/szabgab"&gt;@szabgab&lt;/a&gt;.&lt;br&gt;
This links can help learn the subject:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://code-maven.com/github-actions"&gt;repositories with sample GitHub Action&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/actions"&gt;collection of github actions&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The assignment was to find a project with tests but without continuous integration and set up a GitHub Action to run the tests. &lt;br&gt;
I find intresting project &lt;a href="https://github.com/jremes-foss/universities-api-wrapper"&gt;universities-api-wrapper&lt;/a&gt; from &lt;a href="https://pydigger.com/"&gt;pydigger&lt;/a&gt;&lt;br&gt;
This steps of my work in here assigment:&lt;br&gt;
1) Fork the project to be able edit it.&lt;/p&gt;

&lt;p&gt;2) Add GitHub Actions Workflow to ci.yml. in folders i create .github/workflow.&lt;/p&gt;

&lt;p&gt;3) Create ci.yml - this my code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;name: CI

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v2

      - name: Set up Python
        uses: actions/setup-python@v2
        with:
          python-version: 3.9  

      - name: Install dependencies
        run: pip install -r requirements.txt

      - name: Run tests
        run: pytest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;4) Validate my code yaml in &lt;a href="https://codebeautify.org/yaml-validator"&gt;yaml-validator&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;5) send &lt;a href="https://github.com/jremes-foss/universities-api-wrapper/pull/5"&gt;PR&lt;/a&gt; that i explain to author why i create the file ci.yml.&lt;/p&gt;

&lt;p&gt;6) To activate the workflow, you need to select it from the Actions menu and run it manually.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Update: my PR is merged:Hi &lt;a class="mentioned-user" href="https://dev.to/zoharasulin"&gt;@zoharasulin&lt;/a&gt;. Thank you! I was intending to create this at some point, so it was very helpful you to create this pull request. Much appreciated.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;that's it!!&lt;br&gt;
Thank you for listening,&lt;br&gt;
Zohar.&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>yaml</category>
      <category>git</category>
      <category>github</category>
    </item>
    <item>
      <title>osdc-2023-assigment8-gitbash</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Thu, 18 May 2023 22:58:32 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-2023-assigment8-33fp</link>
      <guid>https://dev.to/zoharasulin/osdc-2023-assigment8-33fp</guid>
      <description>&lt;p&gt;At lesson 8 we learned how to configure &lt;a href="https://git-scm.com/"&gt;git-scm&lt;/a&gt; on Windows, including setting the default editor and configuring global and local repository settings*&lt;em&gt;(one thing that help me that is to choice notepad instead vim)&lt;/em&gt;* &lt;br&gt;
We also learned about the process of cloning, forking, and pulling repositories, as well as creating and pushing repositories to GitHub.&lt;br&gt;
 Additionally, we were introduced to basic git workflows, including branching, adding, committing, and pushing changes to a repository. Finally, we learned about advanced git commands, such as rebasing and force pushing, to manage changes to a repository.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I'm Highly recommend if you want to know git from basic to listen 2 videos:&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://www.youtube.com/watch?v=aheLynn8QI8"&gt;Here learn how to upload new project from cmd git to github&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.youtube.com/watch?v=Opa8_QL3GV0"&gt;and here learn how to fork exist reposotory and push with changes&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;something that help me from this lesson:&lt;br&gt;
Take link from ssh when you want to send changes to project in github via git-bash and not from https.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;This week's assigment was to take one project, set up the local development environment, and send a PR.&lt;br&gt;
I chose the &lt;a href="https://github.com/OSDC-Code-Maven/OSDC-Code-Maven.github.io/tree/main"&gt;OSDC - Open Source Development Course&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I found course in india that very same to this course and add him to &lt;a href="https://github.com/OSDC-Code-Maven/OSDC-Code-Maven.github.io/blob/main/docs/courses.md"&gt;courses.md&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The very most thing when you work on project that is not your, change the main branch to other branch by:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git checkout -b zoharasulin/add
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To work on project that is not yourself,you need add new fork in github,after copy ssh(not http!)&lt;br&gt;
and write:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git remote add fork git@github.com:zoharasulin/OSDC-Code-Maven.github.io.git

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;now you can see you have 2 remotes when you write:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git remote -v
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I hope I help you,if you need help feel free to contact me here.&lt;/p&gt;

&lt;p&gt;Zohar&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>github</category>
      <category>git</category>
    </item>
    <item>
      <title>OSDC-2023-assignment6&amp;7 -Docker</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Mon, 15 May 2023 22:28:12 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-2023-assignment6-docker-90i</link>
      <guid>https://dev.to/zoharasulin/osdc-2023-assignment6-docker-90i</guid>
      <description>&lt;p&gt;In lessons 6 and 7, we learn about &lt;a href="https://www.docker.com/get-started/"&gt;docker&lt;/a&gt;.&lt;br&gt;
We reviewed what a "Docker" image is and saw how to set up a development environment with its help.&lt;br&gt;
We went over the slides of &lt;a href="https://code-maven.com/slides/linux-docker/"&gt;Learning Linux in a Docker container&lt;/a&gt; up before the slide about CentOS.&lt;br&gt;
and also we saw examples of &lt;a href="https://code-maven.com/slides/docker/open-source"&gt;Open source project in Docker&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;my favorite language is python, so I develop with it.&lt;/p&gt;

&lt;p&gt;All package that I fix something i chose from &lt;a href="https://pydigger.com/"&gt;pydigger&lt;/a&gt; this site Leads to libraries where things need to be fixed, for example they lack author,vcs or ci.&lt;/p&gt;

&lt;p&gt;Setting up a development environment via Docker :&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Make sure you have Docker installed on your machine:&lt;br&gt;
&lt;a href="https://docs.docker.com/get-docker/"&gt;Docker&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;for package &lt;a href="https://github.com/KerkhoffTechnologies/django-autotask"&gt;django-autotask&lt;/a&gt;:&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; git clone git@github.com:KerkhoffTechnologies/django-autotask.git
    cd django-autotask
    docker build -t django-autotask .
    docker run -it --name my-django-autotask-container django-autotask /bin/bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;link to my &lt;a href="https://github.com/KerkhoffTechnologies/django-autotask/pull/206/files"&gt;PR&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;for package &lt;a href="https://github.com/zerex290/sankaku"&gt;sankaku&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/zerex290/sankaku.git
cd sankaku
docker run -it --name sankaku -w /opt -v$(pwd):/opt python:3.11 bash
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;link to my &lt;a href="https://github.com/zerex290/sankaku/pull/1"&gt;PR&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;some of packages I add fix of installs that was missing like here Or missing code that is will me more clearly:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;a href="https://github.com/edx/edx-arch-experiments"&gt;edx-arch-experiments&lt;/a&gt;
My &lt;a href="https://github.com/edx/edx-arch-experiments/pull/296/files"&gt;PR&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/CognitiveScale/cortex-python"&gt;cortex-python&lt;/a&gt;
My &lt;a href="https://github.com/CognitiveScale/cortex-python/pull/174"&gt;PR&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/Cranfield-GDP3/deep_sort_realtime"&gt;deep_sort_realtime&lt;/a&gt;
My &lt;a href="https://github.com/Cranfield-GDP3/deep_sort_realtime/pull/1"&gt;PR&lt;/a&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I learned a lot from the lessons:&lt;br&gt;
1.Run containers in Docker&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;You don't have to be afraid to send PR, in the worst case you don't receive them.
3.perform tests on scripts&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Thanks to &lt;a href="https://he.code-maven.com/"&gt;Gabor&lt;/a&gt; that makes the world a better place.&lt;/p&gt;

&lt;p&gt;Best regards,Zohar.&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>github</category>
      <category>python</category>
      <category>docker</category>
    </item>
    <item>
      <title>OSDC-2023-assignment5</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Sun, 30 Apr 2023 08:09:46 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-2023-assignment5-jao</link>
      <guid>https://dev.to/zoharasulin/osdc-2023-assignment5-jao</guid>
      <description>&lt;p&gt;&lt;strong&gt;my assigment&lt;/strong&gt;&lt;br&gt;
Fix the PR that I was in assigment 4,Find more projects via PyDigger, and create more PR try this time to make it more interesting and more challenging.&lt;br&gt;
Add better projects to our JSON (that are not ours).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Also I want to start write what I learned from our assigment in&lt;/strong&gt; &lt;a href="https://github.com/OSDC-Code-Maven/osdc-2023-03-azrieli#assignment-1"&gt;course ODSC&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;in setup.py I add author as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; setuptools.setup(
    name="name of the project",
    version="1.1.7",
    author="Foo Bar",
    author_email="Foo.Bar.contact@Foo.com",
    license="MIT"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;and in  pyproject.toml I add author as:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  [build-system]
    requires = ["poetry&amp;gt;=0.12"]
    build-backend = "poetry.masonry.api"
    license = "Apache-2.0"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;my PR was accepted or still not get respect from the authors.&lt;/p&gt;

&lt;p&gt;this projects that I now add to following:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/scverse/scanpy"&gt;scanpy&lt;/a&gt;&lt;br&gt;
Scanpy is a scalable toolkit for analyzing single-cell gene expression data built jointly with &lt;a href="https://anndata.readthedocs.io/en/latest/"&gt;anndata&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/satijalab/seurat"&gt;seurat&lt;/a&gt;&lt;br&gt;
Seurat is an R toolkit for single cell genomics, developed and maintained by the Satija Lab at NYGC.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/rorynolan/autothresholdr"&gt;autothresholdr&lt;/a&gt;&lt;br&gt;
Algorithms for automatically finding appropriate thresholds for numerical data, with special functions for thresholding images.&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>github</category>
      <category>pypi</category>
    </item>
    <item>
      <title>OSDC Assigment #4</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Sun, 09 Apr 2023 21:53:18 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-assigment-4-4h2j</link>
      <guid>https://dev.to/zoharasulin/osdc-assigment-4-4h2j</guid>
      <description>&lt;p&gt;IN LESSON #4 in course &lt;a href="https://github.com/OSDC-Code-Maven"&gt;OSDC&lt;/a&gt; We looked at the &lt;a href="https://pydigger.com/"&gt;PyDigger&lt;/a&gt; web site and the &lt;a href="https://pydigger.com/stats"&gt;Stats&lt;/a&gt; page from where we had links to&lt;br&gt;
There are &lt;a href="https://pydigger.com/search/has-vcs-no-license"&gt;projects have link to VCS but no license field&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;, &lt;a href="https://pydigger.com/search/has-vcs-no-author"&gt;projects have link to VCS but no author field&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;, &lt;a href="https://pydigger.com/search/has-vcs-no-summary"&gt;projects have link to VCS but no summary&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;and projects where PyDigger &lt;a href="https://pydigger.com/search/no-vcs"&gt;did not find VCS&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I get focus on &lt;a href="https://pydigger.com/search/has-vcs-no-author"&gt;projects have link to VCS but no author field&lt;/a&gt;&lt;br&gt;
These are projects that I try add authors:&lt;br&gt;
&lt;a href="https://github.com/jinjamator/textfsmplus"&gt;textfsmplus&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/Danguilhen/ipoly"&gt;ipoly&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/wthueb/wi1-bot"&gt;wi1-bot&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/zoharasulin/mlxu"&gt;mlxu&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/BenediktAlkin/KappaData"&gt;KappaData&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I hope your interest my H.W. because I think that is very important to us world!&lt;/p&gt;

&lt;p&gt;HAPPY HOLIDAY MY FRIEND!&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>github</category>
      <category>python</category>
    </item>
    <item>
      <title>OSDC-2023-assignment3</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Mon, 27 Mar 2023 11:51:04 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-2023-assignment3-1b06</link>
      <guid>https://dev.to/zoharasulin/osdc-2023-assignment3-1b06</guid>
      <description>&lt;p&gt;I learned a lot from latest lecture:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;how to Create Github pages use with Markdown.&lt;/li&gt;
&lt;li&gt;how to use with git bash-Setup local git configure, clone, add, commit, etc.
I build page in github that navigate to another page that is my cv.
I very like this course and it important to my Professional life.
Also I Check out what others in &lt;a href="https://osdc.code-maven.com/instances"&gt;other course&lt;/a&gt; did for inspiration.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://github.com/zoharasulin/zoharasulin.github.io/blob/main/docs/index.md"&gt;my page and cv in github&lt;/a&gt;&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>git</category>
      <category>github</category>
    </item>
    <item>
      <title>OSDC-2023-second-assignment</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Sun, 19 Mar 2023 20:16:51 +0000</pubDate>
      <link>https://dev.to/zoharasulin/osdc-2023-second-assignment-5fg5</link>
      <guid>https://dev.to/zoharasulin/osdc-2023-second-assignment-5fg5</guid>
      <description>&lt;p&gt;In second lesson course &lt;a href="https://osdc.code-maven.com/"&gt;osdc&lt;/a&gt; we go over the PRs that we opened and fix issues in PR instead of opening new ones. we saw how to follow interesting projects on GitHub to get notifications. We got a better understanding of the structure of a Github URL, and how to find a git repo of a project. we saw how use in &lt;a href="https://github.com/OSDC-Code-Maven/open-source-by-organizations/tree/main/github"&gt;yaml&lt;/a&gt;  files&lt;br&gt;
and I do assigment in Yaml,I very like it and I think that:&lt;br&gt;
"A small step for man, a giant step for humanity".&lt;/p&gt;

&lt;p&gt;I have selected each person and interesting projects to follow in &lt;a href="https://github.com/"&gt;github&lt;/a&gt; and &lt;a href="https://dev.to/"&gt;devto&lt;/a&gt; :&lt;br&gt;
&lt;a href="https://dev.to/tdaw/osd700-working-with-bullmq-workerqueues-contd-14j9"&gt;TD&lt;/a&gt;&lt;br&gt;
&lt;a href="https://dev.to/setevoy/kubernetes-part-1-architecture-and-main-components-overview-22g6"&gt;Arseny Zinchenko&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/szabgab"&gt;Gabor Szabo&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/FredAdiv"&gt;Freddy Adiv&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/ujjwalkarn/DataSciencePython"&gt;DataSciencePython&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/vubiostat/r-yaml"&gt;yaml_tutorial&lt;/a&gt;&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>github</category>
      <category>git</category>
      <category>yaml</category>
    </item>
    <item>
      <title>Assignment 1 Version Control, Journal, Slack</title>
      <dc:creator>zoharasulin</dc:creator>
      <pubDate>Tue, 14 Mar 2023 20:41:41 +0000</pubDate>
      <link>https://dev.to/zoharasulin/assignment-1-version-control-journal-slack-3924</link>
      <guid>https://dev.to/zoharasulin/assignment-1-version-control-journal-slack-3924</guid>
      <description>&lt;p&gt;I just started OSDC 2023 course with &lt;a class="mentioned-user" href="https://dev.to/szabgab"&gt;@szabgab&lt;/a&gt; OSDC and here is my first assignment:&lt;br&gt;
My name is Zohar and I'm student of MSC. in Azrieli college &lt;a href="https://www.jce.ac.il/"&gt;azrieli site&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This is my &lt;a href="https://github.com/zoharasulin"&gt;github&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I would love to tell you a little about me:&lt;/p&gt;

&lt;p&gt;I am  27 years old, happily married and mother of 3 sweet children.&lt;/p&gt;

&lt;p&gt;For two years I have been working as a data developer and analyst.&lt;/p&gt;

&lt;p&gt;I love what I do and am interested in software and data.&lt;/p&gt;

&lt;p&gt;I expect that &lt;a href="https://github.com/zoharasulin/osdc-2023-03-azrieli"&gt;in this course&lt;/a&gt; I will be able to master github and share public projects to improve the world and help developers like I am helped by web searches.&lt;/p&gt;

</description>
      <category>osdc</category>
      <category>github</category>
    </item>
  </channel>
</rss>
