Skip to content
Menu
Open World News Open World News
  • Privacy Policy
Open World News Open World News

Category: Open Source

(Ep89) Zhe Tian Ep 89 Sub Indo Eng (遮天) (天国を巡る)(천국을 뒤덮다)(Shrouding the Heavens) (Den Himmel…

Posted on December 24, 2024 by Michael G
Shrouding the Heavens, 遮天,89,Zhe Tian,
At the edge of the dark and frozen universe, nine giant dragon corpses were bound in ancient bronze coffins. It seemed they had been there since the birth of the universe.This amazing view was captured by a spacecraft hovering in outer space.
The nine dragons and the mysterious bronze coffin made people wonder whether they went back to ancient times or had just reached another shore in the universe. A giant mythical world opens up, where immortality gradually emerges and paranormal events continue to occur.
Many people began to find their own traces (Dao) in these mythical realms. Their passion was like the turbulent and unrelenting waves of the sea. The heat in their blood was like an erupting volcano. Their desire for power and immortality drags them into the abyss without realizing it.
#ShroudingtheHeaven
#遮天
#89
#ShroundingtheHeavens
#Zhetian

Thom O’Leary: Broken Bread, Open Hearts: A Pastor’s Insight on Connecting with Christ

Posted on December 24, 2024 by Michael G
When Thom O’Leary speaks about the power of sharing meals and faith, one is treated to a man who knows his material inside out, having devoted his life to spiritual leadership. “Broken Bread, Open Hearts” is a metaphor for an exercise that deepens one’s relationship with Christ in the simplest manner. A practice that opens our hearts and builds bridges to a world so fragmented and disconnected.

#thomoleary #faith #god #spirituality

Talking Drupal: Talking Drupal #481 – Drupal Marketing & Drupal CMS

Posted on December 24, 2024 by Michael G

Today we are talking about Drupal Marketing, how it applies to Drupal CMS, and what a Drupal and Drupal CMS Marketing Future look like with guest Suzanne Dergacheva. We’ll also cover Drupal 11.1 as our module of the week.

For show notes visit: https://www.talkingDrupal.com/481

Topics

  • Drupal marketing moves
  • New brand
  • Marketing people at the DA
  • Goal of marketing
  • How does this impact Drupal CMS
  • Drupal CMS marketing
  • How will you educate people about the differences between core and CMS
  • Any challenges
  • How do you like the new homepage
  • Next steps to move the brand forward
  • Case studies
  • Why did you volunteer
  • If someone wants to get involved how can they

Resources

  • Brand Portal
  • Drupal.org homepage
    • https://new.drupal.org/home
    • https://www.drupal.org/project/drupalorg/issues/3475832
  • Case study guidelines
  • Webinar with Suzanne and Rosie Gladden about Key Strategies for Expanding Drupal’s Reach
  • Advent Calendar – Freelock.com – 24 days of Drupal automations

Hosts

Nic Laflin – nLighteneddevelopment.com nicxvan John Picozzi – epam.com johnpicozzi Suzanne Dergacheva – evolvingweb.com pixelite

MOTW Correspondent

Martin Anderson-Clutz – mandclu.com mandclu

  • Brief description:
    • Have you been wanting a version of Drupal with improvements to the recipes system, the ability to write hooks as classes, and an icon management API? The new Drupal 11.1 release has all of that and more.
  • Module name/project name:
    • Drupal 11.1
  • Brief history
    • How old: created on Dec 16 by catch of Tag1 and Third & Grove
  • Module features and usage
    • We’ve talked a number times on this show about the recipes system, particularly because it’s at the heart of Drupal CMS. In Drupal 11.1 recipes can define whether or not to use strict comparison for provided configuration, and there are a ton of new config actions. These allow your recipe to place blocks, take user input, enable layout builder for content types, clone configuration entities and more. It’s a huge leap forward, and I think you’ll quickly see a number of recipes that require Drupal 11.1 or newer.
    • Hooks have long been a powerful Drupalism that allow for deep customization of how your website functions. These hooks can now be written as classes, thanks to the new Hook attribute on methods. This will bring many of the object-oriented benefits of modern Drupal to the hooks system, and should also make it easier for developers new to Drupal to understand the code to create these customizations.
    • A new Icon Management API allows themes and modules to define icon packs, with unique identifiers for each included icon.
    • Drupal 11.1 also includes PHP 8.4 support. I haven’t been able to find any data on speed improvements compared to PHP 8.3, but there are interesting new features like property hooks, asymmetric visibility, new functions for finding array items, and more
    • There are plans to use Workspaces for content moderation, so the UI for Workspaces is now in a separate module. For new site builds if you want your editors to be able to use Workspaces, you’ll need to remember to enable this new UI module as well
    • New installs of Drupal 11.1 will also see improvements to the initial experience. These include defaulting to admin-created user accounts only, not adding the body field by default when creating new content types, and more.
    • Drupal 11.1 also includes a new views entity reference filter, opt-in render caching for forms, and improved browser and CDN caching for Javascript and CSS, among a host of other improvements.
    • A number of these improvements will also find their way into the upcoming 10.4 release, ensuring, for example, that recipes built to use the new config actions can be used with Long-Term Support (LTS) versions of Drupal, that will be supported until the stable release of Drupal 12 in mid- to late-2026

3 Ways to build a Rails API

Posted on December 24, 2024 by Michael G
In this tutorial, I cover three different ways of building an API with Ruby on Rails – a new API-only app, an API inside a normal Rails app and converting a Rails app to an API.

parallel @ Savannah: GNU Parallel 20241222 (‘Bashar’) released [stable]

Posted on December 24, 2024 by Michael G

GNU Parallel 20241222 (‘Bashar’) has been released. It is available for download at: lbry://@GnuParallel:4

Quote of the month:

  “Do this with gnu parallel” is the Copilot hack of the day

    — Chase Clark @chasingmicrobes.bsky.social

 

New in this release:

  • No new features. This is a candidate for a stable release.
  • Bug fixes and man page updates.


GNU Parallel – For people who live life in the parallel lane.

If you like GNU Parallel record a video testimonial: Say who you are, what you use GNU Parallel for, how it helps you, and what you like most about it. Include a command that uses GNU Parallel if you feel like it.

About GNU Parallel


GNU Parallel is a shell tool for executing jobs in parallel using one or more computers. A job can be a single command or a small script that has to be run for each of the lines in the input. The typical input is a list of files, a list of hosts, a list of users, a list of URLs, or a list of tables. A job can also be a command that reads from a pipe. GNU Parallel can then split the input and pipe it into commands in parallel.

If you use xargs and tee today you will find GNU Parallel very easy to use as GNU Parallel is written to have the same options as xargs. If you write loops in shell, you will find GNU Parallel may be able to replace most of the loops and make them run faster by running several jobs in parallel. GNU Parallel can even replace nested loops.

GNU Parallel makes sure output from the commands is the same output as you would get had you run the commands sequentially. This makes it possible to use output from GNU Parallel as input for other programs.

For example you can run this to convert all jpeg files into png and gif files and have a progress bar:

  parallel –bar convert {1} {1.}.{2} ::: *.jpg ::: png gif

Or you can generate big, medium, and small thumbnails of all jpeg files in sub dirs:

  find . -name ‘*.jpg’ |

    parallel convert -geometry {2} {1} {1//}/thumb{2}_{1/} :::: – ::: 50 100 200

You can find more about GNU Parallel at: http://www.gnu.org/s/parallel/

You can install GNU Parallel in just 10 seconds with:

    $ (wget -O – pi.dk/3 || lynx -source pi.dk/3 || curl pi.dk/3/ ||

       fetch -o – http://pi.dk/3 ) > install.sh

    $ sha1sum install.sh | grep 883c667e01eed62f975ad28b6d50e22a

    12345678 883c667e 01eed62f 975ad28b 6d50e22a

    $ md5sum install.sh | grep cc21b4c943fd03e93ae1ae49e28573c0

    cc21b4c9 43fd03e9 3ae1ae49 e28573c0

    $ sha512sum install.sh | grep ec113b49a54e705f86d51e784ebced224fdff3f52

    79945d9d 250b42a4 2067bb00 99da012e c113b49a 54e705f8 6d51e784 ebced224

    fdff3f52 ca588d64 e75f6033 61bd543f d631f592 2f87ceb2 ab034149 6df84a35

    $ bash install.sh

Watch the intro video on http://www.youtube.com/playlist?list=PL284C9FF2488BC6D1

Walk through the tutorial (man parallel_tutorial). Your command line will love you for it.

When using programs that use GNU Parallel to process data for publication please cite:

O. Tange (2018): GNU Parallel 2018, March 2018, https://doi.org/10.5281/zenodo.1146014.

If you like GNU Parallel:

  • Give a demo at your local user group/team/colleagues
  • Post the intro videos on Reddit/Diaspora*/forums/blogs/ Identi.ca/Google+/Twitter/Facebook/Linkedin/mailing lists
  • Get the merchandise https://gnuparallel.threadless.com/designs/gnu-parallel
  • Request or write a review for your favourite blog or magazine
  • Request or build a package for your favourite distribution (if it is not already there)
  • Invite me for your next conference


If you use programs that use GNU Parallel for research:

  • Please cite GNU Parallel in you publications (use –citation)


If GNU Parallel saves you money:

  • (Have your company) donate to FSF https://my.fsf.org/donate/

About GNU SQL


GNU sql aims to give a simple, unified interface for accessing databases through all the different databases’ command line clients. So far the focus has been on giving a common way to specify login information (protocol, username, password, hostname, and port number), size (database and table size), and running queries.

The database is addressed using a DBURL. If commands are left out you will get that database’s interactive shell.

When using GNU SQL for a publication please cite:

O. Tange (2011): GNU SQL – A Command Line Tool for Accessing Different Databases Using DBURLs, ;login: The USENIX Magazine, April 2011:29-32.

About GNU Niceload


GNU niceload slows down a program when the computer load average (or other system activity) is above a certain limit. When the limit is reached the program will be suspended for some time. If the limit is a soft limit the program will be allowed to run for short amounts of time before being suspended again. If the limit is a hard limit the program will only be allowed to run when the system is below the limit.

Top Open Source licenses in 2024

Posted on December 24, 2024 by Michael G
The top 20 OSI-Approved licenses most frequently sought out by our community in 2024 based on number of pageviews.

https://youtu.be/bV4xYUiZ2FQ?si=c2_RPqyVeNs53So6#video जानेमन आई लव यू #sonurajbhar #grapes…

Posted on December 23, 2024 by Michael G

Video by via Dailymotion Source #जानेमन आई लव यू #janeman I love u #meri chamiya bolo raja #grapes comedy#video #iloveyou #firangibudhwa #sonurajbhar#janemaniloveyou #video #entertainment #sonurajbharkagana#youtubevideo #grapescomedy #comedy#music #sonurajbhar #video #vines #funny #viral #firangi budhwa #bhojpuri #bhojpurimusic #bhojpurisong #funnyviral #funnyvideos #funnysong #funnyvideo #funnyshorts #funnycomedy #I love u gana#sonurajbhar archna raj #archna #archana #firangi #firingibudhwa #grapes comedy…

Donald Trump diz que classificará cartéis mexicanos como terroristas

Posted on December 23, 2024 by Michael G

Video by via Dailymotion Source O presidente eleito dos Estados Unidos, Donald Trump, anunciou, neste domingo (22), que classificará os cartéis do narcotráfico mexicanos como organizações terroristas estrangeiras logo após sua posse, em 20 de janeiro. Assista ao Jornal da Manhã completo: https://youtube.com/live/_GzjZx9ryvM Baixe o app Panflix: https://www.panflix.com.br/ Inscreva-se no nosso canal:https://www.youtube.com/c/jovempannews Siga o canal…

Laravel 11 – How to integrate Google reCaptcha v2 in laravel | Step by step tutorial | (English)

Posted on December 23, 2024 by Michael G

Video by via Dailymotion Source Code and blog post available here : https://codeshotcut.com/blog/laravel-11-how-to-integrate-google-recaptcha-v2 Laravel 11In this tutorial, we’ll see how to integrate Google reCAPTCHA V2 in Laravel 11 to protect your forms from spam while ensuring a smooth user experience. Recent Tutorials in English Laravel 11 – How to Add Google Recaptcha V3 in Laravel…

Cermati Saham Pilihan: HEAL, ESSA, GOTO, INDF

Posted on December 23, 2024 by Michael G

Video by via Dailymotion Source “Saksikan tayangan kami Official Youtube IDX Channel di Program 2nd Session Closing, Senin (23/12/2024) dengan Tema Cermati Saham Pilihan: HEAL, ESSA, GOTO, INDF.” Go to Source

  • Previous
  • 1
  • …
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • …
  • 1,528
  • Next

Recent Posts

  • [TUT] LoRa & LoRaWAN – MikroTik wAP LR8 kit mit The Things Network verbinden [4K | DE]
  • Mercado aguarda Powell e olha Trump, dados e Haddad | MINUTO TOURO DE OURO – 11/02/25
  • Dan Levy Gets Candid About Learning How To Act Differently After Schitt’s Creek: ‘It’s Physically…
  • Building a Rock Shelter & Overnight Stay in Heavy Snow 🏕️⛰️
  • Les milliardaires Elon Musk et Xavier Niel s’insultent copieusement

Categories

  • Android
  • Linux
  • News
  • Open Source
©2025 Open World News | Powered by Superb Themes
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT