Welcome to the QChartist blog QChartist Community – Your way to financial freedom

February 21, 2023

Useful shell commands and apps under Ubuntu 12.04 and later

Filed under: Computers — admin @ 2:27 pm

Useful shell commands and apps under Ubuntu 12.04:

“cat /var/log/apache2/access.log” provides information on the latest visitors to your website
For the last lines : “cat /var/log/apache2/access.log | tail”
To search lines containing a specific string use : “cat /var/log/apache2/access.log | grep [my string]”
To know if the user with ip 1.2.3.4 surfed on the page contact.html use : “cat /var/log/apache2/access.log | grep 1.2.3.4 | grep contact.html”
To display all the lines, except those containing my local address : “cat /var/log/apache2/access.log | grep -v 127.0.0.1”

tcpspy allows to log most of tcp connections.
Use “cat /var/log/syslog | grep tcpspy”

slurm : know your bandwidth usage
usage example : “slurm -i eth0”

snort gets all what passes by your Internet cable (useful to see all what is hidden with netstat, like udp connections)
usage example : “sudo snort -i eth0 -X -v”

tcpdump can also help you if you want to optimize your network
example : “sudo tcpdump -i eth0 -n -N”

to know who is currently connected to your server use :
“netstat -taunp”

whois gets informations about the Internet services provider of an ip
usage example : “whois [ip or domain name]”

How to download an entire “Index of /” tree of a website ? : “wget -e robots=off -r —no-parent —reject “index.html*” http://www.mywebsite.com/files/”

Some packages related to “os user statistics” you could remove :
“sudo apt-get remove –purge zeitgeist zeitgeist-core zeitgeist-datahub”
“sudo apt-get remove –purge unity-lens-shopping”
https://www.howtogeek.com/349844/how-to-stop-ubuntu-from-collecting-data-about-your-pc/


display only the last 333 lines of a file:
tail myfile.txt -n 333

display line jumps and line numbers of a file:
cat -A -n myfile.txt

search for the string “my search” in all files of the actual directory and subdirectories and display file path and name for each result:
grep “” * -r | grep “my search”

change the owner of all files, directories and subdirectories of the directory “mydir” to dupont:dupont:
chown dupont:dupont mydir -R

change chmod permissions to 400 for all files, directories and subdirectories of the directory “mydir”:
chmod 400 mydir -R

add chmod execution permission for the user of all files, directories and subdirectories of the directory “mydir”:
chmod u+x mydir -R

change chmod permissions to 400 for files but not directories :
find . -type f – print0 | xargs -0 chmod 400

find for files or directories which name look like “log” in all the tree “/var/log/”:
find /var/log/ | grep log

display the temperature near the cpu:
sensors

display all services with their status (started or not):
service –status-all

Tip to decrease the reactivity of your pc/laptop the way it consumes less energy and heats less:
Install and configure the packages laptop-mode and powernap and then start them with “sudo service myservice start”
You can also know the consumption of each process with the package powertop

how to display a list with the full process names (not truncated):
ps aux | less -+S
or
ps aux | most -w

how to display the list of all documents and files that archive.org has archived for the website http://www.mywebsite.com/ :
https://web.archive.org/web/*/http://www.mywebsite.com/*

List all members of a group using members command:
Install it with “sudo apt-get install members”
use : “members mygroup”

To do integer & float calculations:
type “bc”
enter your calculation: type “1+1” and hit the enter key
type “quit” to quit the program

To list all users you can use:
cut -d: -f1 /etc/passwd

To add a new user you can use:
sudo adduser new_username
or
sudo useradd new_username

To remove/delete a user, first you can use:
sudo userdel username

Then you may want to delete the home directory for the deleted user account :
sudo rm -r /home/username

To modify the username of a user:
usermod -l new_username old_username

To change the password for a user:
sudo passwd username

To change the shell for a user:
sudo chsh username

To change the details for a user (for example real name):
sudo chfn username

To remove a user from a group use:
gpasswd -d user group

display the last (new) lines of a log file live:
tail -f /var/log/apache2/access.log

How do I download a package from apt-get without installing it?
There are a least these apt-get extension packages that can help:
apt-offline – offline apt package manager
apt-zip – Update a non-networked computer using apt and removable media
This is specifically for the case of wanting to download where you have network access but to install on another machine where you do not.
Otherwise, the –download-only option to apt-get is your friend:
-d, –download-only
    Download only; package files are only retrieved, not unpacked or installed.
    Configuration Item: APT::Get::Download-Only.

Close a tcp connection 111.222.333.444 in netstat:
tcpkill -i eth0 host 111.222.333.444
You need the package dsniff

To see realtime usage by IP (rather, by IP and port):
sudo apt install tcptrack
sudo tcptrack -i eth0
To see realtime usage by MAC address, a nice ncurses based tool is iptraf-ng:
sudo apt install iptraf-ng
sudo iptraf-ng
(And then, select “LAN station monitor → eth0”.)
To see daily aggregate data volume by IP, my favourite is ipfm. Install with:
sudo apt install ipfm
Then configure in /etc/ipfm.conf according to man ipfm.conf and start with sudo ipfm

The host command in unix or linux operating system can be used to get the hostname from an IP address. An example is shown below:
> host 4.59.125.171
171.125.59.4.in-addr.arpa is an alias for 171.128-254.125.59.4.in-addr.arpa.
171.128-254.125.59.4.in-addr.arpa domain name pointer 4-59-125-171-hou.servercraft.co.
Another way to get the hostname is to user the nslookup command.
> nslookup 4.59.125.171

Show tcp connections for my Firefox web browser on port 443 but hide ips like 92.223.127. and show only blocked connections
netstat -anlpc |grep ‘Lien vers fire’ | grep 443 | grep -v 92.223.127. | grep SYN_SENT
or
netstat -taunpc |grep ‘Lien vers fir’ | grep 443 | grep -v 92.223.127. | grep SYN_SENT

How to view Hard Disk Activity on Ubuntu:
install packages iotop or htop

Computer hardware info: sudo lshw
Memory info: sudo lshw -C memory

Find previous commands you typed in the terminal (netstat for example):
history | grep netstat

How to delete Mozilla Firefox telemetry trackers (site in french):
https://www.malekal.com/supprimer-telemetrie-mozilla-firefox/

Block certain websites and limit access here’s what you need to know about the /etc/hosts file
By editing the hosts files, you can achieve the following things:
– Block a website
– Handle an attack or resolve a prank
– Create an alias for locations on your local server
– Override addresses that your DNS server provides
– Control access to network traffic
sudo gedit /etc/hosts
For example, if we want to block google.com, we can add the following text to our file:
127.0.0.1 www.google.com
or simply
127.0.0.1 google.com
Save your changes
You don’t need to reboot or restart a service. Changes are instant.

How to manage rc.d and systemd services:
https://www.debuntu.org/how-to-managing-services-with-update-rc-d/
https://superuser.com/questions/513159/how-to-remove-systemd-services
https://linoxide.com/enable-disable-services-ubuntu-systemd-upstart/

In which package can i find a specific file? Useful for C headers for example:
apt-file search pango.h | grep pango.h
result package: libpango1.0-dev: /usr/include/pango-1.0/pango/pango.h

Find packages related to llvm:
apt-cache search llvm

Find a package filename and its description:
apt-cache show llvm

Find a file quickly on your hard drive:
locate gtk.h
or
plocate gtk.h
or
mlocate gtk.h
or
whereis gtk

Run the package manager:
sudo synaptic

Return metainformation about installed libraries:
(useful for the gcc compiler using GTK in your code)
pkg-config gtk+-3.0 –libs

returns: -lgtk-3 -lgdk-3 -lpangocairo-1.0 -lpango-1.0 -lharfbuzz -latk-1.0 -lcairo-gobject -lcairo -lgdk_pixbuf-2.0 -lgio-2.0 -lgobject-2.0 -lglib-2.0

then you can compile your code with:
gcc myapp.c -lgtk-3 -lgobject-2.0 -lgdk_pixbuf-2.0 -lglib-2.0

kill a process by its name:
pkill galculator

List all processes by id # order:
ps -A

configure Wine:
winecfg

Find an application from the Snap software list:
snap find tradingview

then install it with:
snap install tradingview

Text editors:
vi myfile.txt
nano myfile.txt

Remove a directory and all its content (subfolders and subfiles):
sudo rm -r -f myfolder

Don’t type all the characters in the terminal with a wildcard (faster):
(with Wine installed)
cd ~/.win*
cd dr*
then list the files in the windows directory:
ls win*
cd win*s
then list all files with details (file size etc…):
ls -l
then run notepad.exe with wine:
wine notepad.exe

Read the manual of a tool (nano for example):
man nano

Clear the terminal text:
clear

Go to the home folder:
cd ~ (Tilde)

Know the current path folder:
pwd

Determine direct shared object dependencies of a linux binary:
readelf -d myprogram
result:
La section dynamique à l’offset 0x6c40 contient 31 entrées :
 Étiquettes Type                         Nom/Valeur
0x0000000000000001 (NEEDED)             Bibliothèque partagée: [libgtk-3.so.0]
0x0000000000000001 (NEEDED)             Bibliothèque partagée: [libgobject-2.0.so.0]
0x0000000000000001 (NEEDED)             Bibliothèque partagée: [libglib-2.0.so.0]
0x0000000000000001 (NEEDED)             Bibliothèque partagée: [libm.so.6]
0x0000000000000001 (NEEDED)             Bibliothèque partagée: [libc.so.6]
etc…

How to run a Linux terminal under Windows?
– install Cygwin

How to run a Linux terminal under Android?
– install Termux

How to run Windows apps under Linux?
– install Wine
type in the terminal: wineconsole cmd
for the Windows Commands Interpreter (like Windows’s cmd.exe)

How to repair a failed or corrupted media using fsck :

in root type: /usr/sbin/dosfsck -w -r -l -a -v -t /dev/sdc1

where sdc1 is the media

List of keyboard shortcuts

Filed under: Computers — admin @ 2:26 pm

Here are some keyboard shortcuts that i used to use

– in the linux shell, type the beginning of a command that you usually use and press two times on the tab key, the way to let it guess what should follow or to get choices between several possibilities

– shift+fn and key up or down to scroll the text rapidly in the shell

– ctrl+shift and key up or down to scroll the text slowly in the shell

– fn and key up or down in the vi or nano editor to scroll the text faster

– ctrl+d in the web browser to bookmark the page

– alt+tab to switch between opened applications

– ctrl+c to terminate a console program

– under Linux : ctrl+alt+backspace to close the active session (useful in case of blocking)

– under Linux : hold alt+left click on the inside of a Windows and move it

– key “F2” to rename a file in the file explorer

– ctrl+a to select all files or all text

– ctrl+c to copy the selection

– ctrl+v to paste the selection

– ctrl+x to cut the selection

– ctrl+t to open a new tab in the web browser

– alt+f4 to close a window

– key up or down in the shell to recover commands done previously

– backspace in the file explorer to go back to the parent directory or to go back to the previous page in the web browser

– the vi editor under Linux is a bit complicated to use. Here are some tips :
Press the “a” key to begin to type your text and press ecape when you have finished the typing
Type : “/mysearch” and press enter to search for “mysearch” in the file, then press “n” to go to the next occurrence and shift+n to go to the previous occurrence.
Exit the typing (escape) and press two times on “d” to delete an entire line.
Type “:q” and press enter to quit or “:q!” to quit without saving the changes. Type “:wq” to save and quit the file.

– in notepad, gedit, web browsers or all other text editors : ctrl+f to search for a string

– only in notepad, Windows editors and web browsers under Windows or Linux : after a string search press “F3” to go to the next occurrence.

– in majority of editors press ctrl+s to save changes

– Using keyboard shortcuts for copy pasting in the terminal. On Ubuntu and many other Linux distributions, you can use Ctrl+Insert or Ctrl+shift+C for copying text and Shift+Insert or Ctrl+shift+V for pasting text in the terminal.
Ctrl+Insert to copy and shift+insert to paste text in the shell or in vi, nano or in all other shell editor

– in the shell : double click on a word, then right click on it and copy to copy the text

– ctrl+alt+l to lock the current session

– ctrl+alt+t to run the linux terminal

– set focus to the url bar in your webbrowser: alt+d

– exit session from command line: ctrl+alt+t then gnome-session-quit

– shift+page up or shift+page down to scroll the text in the terminal

– Create Symlink in Linux
To create a symlink without a terminal, just hold Shift+Ctrl and drag the file or folder you want to link to to the location where you want the shortcut.

– type “whereis myfile” in the terminal where myfile is the file you are looking for

Utilities

Filed under: Utilities — admin @ 2:24 pm

WinImage – The Disk Image Management Utility :
http://www.winimage.com

Services Optimizer can easily make your Windows faster, for example by stopping certain services that are useless

DocSearcher is a fast search engine for files and their contents on your hard disk

The purpose of TurboShredder is to delete files without leaving traces on your hard disk

Spirituality

Filed under: Spirituality — admin @ 2:23 pm

These web pages are dedicated to the most important aspect of man’s life: seeking and knowing Truth.
http://www.spiritual-knowledge.net

For more than a decade, the Chopra Center for Well being has served as a beautiful, nurturing place where people can come to heal their physical pain, find emotional freedom, empower themselves, and connect to their inner spiritual life.
http://www.chopra.com

Alliance for a new humanity
Creating alliances toward one world that honors life and builds an awareness of humanity’s interconnectedness.
http://www.anhglobal.org

Books that i encourage to read :
– Dr Deepak Chopra – The seven spiritual laws of success
– Dr Deepak Chopra – The book of coincidences
– Richard Feynman – The nature of physics

Fractals and their influence in everyday’s life.

<img1|left>

As it is shown in this animation, we can zoom as much as we want in the pattern, each part of which it is made of (microcosm) is the reflection of the pattern in its wholeness (macrocosm). It’s an universal property of the universe. The whole universe reflects to himself in the biggest galaxy to the smallest particle of our body. One particularity of this principle is that even if you cut a part of a body named A into two parts B and C, these last two parts contain nevertheless all the potential of A (like our cells in our body which divide themselves continually during our life (cf holography)). Certain kinds of animals manifest this property flagrantly. See the following videos :
<doc2|left><doc3|left><doc4|left>
<br>
<br clear=”all”>
Keeping in mind my explanations on fractals above, believing that each of us (microcosm) are separated each other, by the mean of space and time is an illusion. By enlarging our field of spirit, we realize that we all are one (macrocosm, universe), and that each of us is the reflect of this macrocosm, no matter the space and time that separe us. Everything inhabits everything, and is interdependent (cf EPR paradox).
When we become conscious of all these facts in a permanent way : ego, susceptibility, the need to judge, the need to justify ourselves to the others, fear, the need to defend your own point of view, changing mood, reprimands, pride, the fear of the unknown and fear of the uncertainty, suffering : all of these things end up to disappear. Then, we adopt thoughts and behaviors which allow to improve each of our lifes (in the image of the whole). You will realize then that by applying the spiritual laws of life and success (see the books above), other problems (existing prior to your journey to the enlightenment) that appear to be non linked unveil their solution at the same time. It is not the duty of the universe to satisfy our personnal caprices, but we need to tune ourselves (as a musical instrument) to the intentions of the universe, with the help of those teachings. Then, the contrarieties that you met in your daily life will become more and more rare, and by the same you will contribute to make disapear the contrarieties of other persons (both (you and the others) are inseparable). Those subjects are explained in the books that i suggest you to read (see above).

http://www.ascensionnow.co.uk/ This website contains information from many sources relating to the spiritual awakening and evolution of Humanity, the nature of reality and Consciousness, what is happening on earth and in our solar system/galaxy/universe, and prophecies for these times.

Operating systems

Filed under: Operating systems — admin @ 2:23 pm

Damn Small Linux is a very versatile 50MB mini desktop oriented Linux distribution.
http://www.damnsmalllinux.org

Ubuntu Linux : http://www.ubuntu.com

https://lubuntu.me/
Lubuntu is a complete Operating System that ships the essential apps and services for daily use: office applications, PDF reader,  image editor, music and video players, etc. It is light and fast, especially for old computers (version 14.04 can be burnt bootable on a CD-R)

https://www.winehq.org/
Wine (originally an acronym for “Wine Is Not an Emulator”) is a compatibility layer capable of running Windows applications on several POSIX-compliant operating systems, such as Linux, macOS, & BSD.
And it is fast.

Aurox (Fedora)

Microsoft Windows

Mandriva Linux

Cygwin emulates a Unix system under Windows
http://www.cygwin.com

VirtualBox is a free cross-platform virtualization application with an easy to use GUI :
http://www.virtualbox.org

QEMU is a GNU cross platform system emulator :
http://www.qemu.org

DOSBox is a cross platform MS-DOS emulator. It is compatible with most programs, especially for games :
http://www.dosbox.com

https://www.riscosopen.org
RISC OS is a computer operating system designed in Cambridge, England by Acorn. First released in 1987, its origins can be traced back to the original team that developed the Arm microprocessor. RISC OS is owned by RISC OS Developments Ltd. You can find out more at sites such as riscos.info, The Icon Bar and RISCOSitory.

https://bochs.sourceforge.io
bochs: The Open Source IA-32 Emulation Project (Home Page)
Bochs is a highly portable open source IA-32 (x86) PC emulator written in C++, that runs on most popular platforms. It includes emulation of the Intel x86 CPU, common I/O devices, and a custom BIOS.

Various things to explore

Filed under: Internet — admin @ 2:22 pm

A large collection of free ebooks http://www.onlinefreeebooks.net

4Shared – A lot of files shared (you should use it for royalty-free contents only) http://www.4shared.com

Find a file (you should use it for royalty-free contents only) http://www.filewatcher.com

Web archive – Visit old websites versions even if it has become inaccessible or disappeared http://web.archive.org

Buy cheap second-hand material http://www.priceminister.com

Buy cheap new or second-hand material from all over the world http://www.ebay.com

Buy new or second-hand physical books (huge collection) http://www.amazon.com

KGB Archiver is the compression tool with unbelievable high compression rate http://kgbarchiver.sourceforge.net/

7-Zip is a file archiver with a high compression ratio. http://www.7-zip.org

gpsvp : GPS navigation software for smartphones, PDAs and PCs.
gpsVP works on virtually any Windows platform including mobile ones. It shows vector and raster maps, records and shows tracks, shows multiple navigation parameters, manages and shows waypoints. It aims to be as usable as possible.
You can load offline GPS map files, input coordinates, put pins on the map, and save your work.
http://code.google.com/p/gpsvp/

Keeper – Password vault and online file storage
http://keepersecurity.com

General Hydroponics Europe
Specialist in nutrients and hydroponic
systems since 1976
http://www.eurohydro.com

On this site, you will find interesting things about math, physics, fluid motion, engineering, fractals, programming, and many more
http://bugman123.com/index.html

Rex Research was established in 1982 by Robert A. Nelson to archive and distribute ” InFolios ” — Information Folios — of collected Articles about suppressed, dormant, or emerging Sciences, Technologies, Inventions, Theories, Therapies, & other Alternatives
http://www.rexresearch.com/index.htm

Psyleron is a product company and research organization that explores the connection between the mind and the physical world. Discoveries made at the Princeton Engineering Anomalies Research (PEAR) laboratory have shown that consciousness and intention can influence the behavior of quantum electronic devices known as “Random Event Generators” (REGs) or “Random Number Generators.” Psyleron was founded by PEAR scientists and associates for the purpose of providing tools that enable ongoing research and personal exploration of mind-matter effects.
http://www.psyleron.com

This can be very useful to be able to search for similar software :
http://www.alternativeto.net

OpenStreetMap is a very comprehensive free world map.
http://www.openstreetmap.org

Scribd is one of the biggest online library. You can find all kinds of documents on almost all subjects. It is a precious tool for those who want to learn new things and enlarge their horizons. The mobile version available on Google Play for Android devices is a must. http://www.scribd.com

A question : an answer ! Pourquois.com, the site for questions/answers (French)
http://www.pourquois.com

https://www.sitelike.org/ Similar Websites Search is a free tool to find websites similar, alternatives or related to a given site.

https://www.patreon.com
Patreon is a membership platform that makes it easy for artists and creators to get paid. Join over 200,000+ creators earning salaries from over 4 million monthly patrons.

https://www.spip.net
SPIP is a publishing system for the Internet in which great importance is attached to collaborative working, to multilingual environments, and to simplicity of use for web authors. It is free software, distributed under the GNU/GPL licence. This means that it can be used for any Internet site, whether personal or institutional, non-profit or commercial.

https://www.etoro.com
Crypto, Stocks & Beyond! The power of social investing | eToro
83.7 %. Explore an ever-expanding variety of cryptocurrencies, and buy and sell the underlying asset on eToro’s Cryptocurrency Trading Platform. Build your crypto-based portfolio and enjoy benefits not offered by most exchanges, such as near-immediate execution of market orders. Explore Cryptocurrencies.

https://twitter.com
Log in to Twitter to see the latest. Join the conversation, follow accounts, see your Home Timeline, and catch up on Tweets from the people you know.

https://facebook.com
Connect with friends and the world around you on Facebook.

https://www.reddit.com
Reddit is a network of communities where people can dive into their interests, hobbies and passions. There’s a community for whatever you’re interested in on Reddit.

https://youtube.com
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.

https://www.quora.com
Quora – A place to share knowledge and better understand the world

https://sourceforge.net
SourceForge is a complete business software and services comparison platform where buyers find, compare, review, and buy business software and IT services.

https://www.linguee.com
English Dictionary and Translation Search with 1,000,000,000 example sentences from human translators. Languages: English, German, French, Spanish, and Portuguese

https://duckduckgo.com
The Internet privacy company that empowers you to seamlessly take control of your personal information online, without any tradeoffs.

https://finance.yahoo.com
Yahoo Finance – Stock Market Live, Quotes, Business & Finance News

https://en.wikipedia.org
Wikipedia, the free encyclopedia

https://github.com
GitHub: Where the world builds software · GitHub
GitHub is where over 83 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and features, power your CI/CD and DevOps workflows, and secure code before you commit it.

https://stackoverflow.com
Stack Overflow – Where Developers Learn, Share, & Build Careers
Stack Overflow for Teams is moving to its own domain! When the migration is complete, you will access your Teams at stackoverflowteams.com, and they will no longer appear in the left sidebar on stackoverflow.com.. Check your email for updates.

https://www.instagram.com
Create an account or log in to Instagram – A simple, fun & creative way to capture, edit & share photos, videos & messages with friends & family.

https://www.godaddy.com
Domain Names, Websites, Hosting & Online Marketing Tools GoDaddy
GoDaddy is the world’s largest and trusted domain registrar that empowers people like you with creative ideas to succeed online. Buying a domain name is easy with our domain search tool and domain name generator tools you can find the perfect website address for your business.

https://groups.io
Groups.io: Email Groups, Supercharged
Why You’ll Love Groups.io Powerful features that make groups more useful. Start a Groups.io Group

https://www.mozilla.org/firefox
Download Firefox Browser — Fast, Private & Free — from Mozilla
The Firefox Browser blocks most trackers automatically, so there’s no need to dig into your security settings. Firefox is for everyone Available in over 90 languages, and compatible with Windows, Mac and Linux machines, Firefox works no matter what you’re using or where you are. Make sure your operating system is up to date for the best experience.

https://www.gmail.com
Gmail: Private and secure email at no cost | Google Workspace
Gmail is part of Google Workspace where you can choose from different plans. In addition to what you love about Gmail, you get a custom email address (@yourcompany.com), unlimited group email …

https://www.outlook.com
Outlook – free personal email and calendar from Microsoft

https://drive.google.com
Personal Cloud Storage & File Sharing Platform – Google
Learn about Google Drive’s file sharing platform that provides a personal, secure cloud storage option to share content with other users.

https://onedrive.live.com
Microsoft OneDrive – Access files anywhere. Create docs with free Office Online. Store photos and docs online. Access them from any PC, Mac or phone. Create and work together on Word, Excel or PowerPoint documents.

https://www.google.com
Google Search Engine

https://www.mediafire.com
File sharing and storage made simple – MediaFire
MediaFire is a simple to use free service that lets you put all your photos, documents, music, and video in a single place so you can access them anywhere and share them everywhere.

https://medium.com
Medium – Where good ideas find you.
Medium is an open platform where readers find dynamic thinking, and where expert and undiscovered voices can share their writing on any topic.

https://www.tiktok.com
TikTok – trends start here. On a device or on the web, viewers can watch and discover millions of personalized short videos. Download the app to get started.

https://www.tumblr.com
Trending topics on Tumblr
Tumblr is so easy to use that it’s hard to explain. We made it really, really simple for people to make a blog and put whatever they want on it. Stories, photos, GIFs, TV shows, links, quips, dumb jokes, smart jokes, Spotify tracks, mp3s, videos, fashion, art, deep stuff. Tumblr is 500 million different blogs, filled with literally whatever.

https://discord.com
Discord | Your Place to Talk and Hang Out
Discord servers are organized into topic-based channels where you can collaborate, share, and just talk about your day without clogging up a group chat. Where hanging out is easy. Grab a seat in a voice channel when you’re free. Friends in your server can see you’re around and instantly pop in to talk without having to call. From few to a fandom. Get any community running with moderation …

https://telegram.org
Telegram Messenger
Telegram’s previous update revolutionized emoji, adding an open platform for creating custom animated emoji. This update gives you even… Sep 16, 2022. Telegram Emoji Platform, Custom Animated Emoji Packs, Gifting Telegram Premium, and More. Today’s update introduces the Telegram Emoji Platform, animated emoji in messages and captions… Aug 12, 2022. Why Telegram? Simple. Telegram is so …

https://www.pinterest.com
Pinterest Pinterest is an image sharing and social media service designed to enable saving and discovery of information (specifically “ideas”) on the internet using images, and on a smaller scale, animated GIFs and videos, in the form of pinboards.

https://www.semrush.com
Semrush – Online Marketing Can Be Easy
“Semrush is like a keyword research tool, Google Trends, Moz, Hootsuite and SimilarWeb in one.” Mario León Rojas Performance Marketing Specialist, Banco del Sol Source: Semrush G2 reviews Award-winning tools trusted by the world’s leading companies 10M marketing professionals have already used Semrush 21 international awards

https://www.thefreelibrary.com
TheFreeLibrary.com – Free News, Magazines, Newspapers, Journals …
Free Online Library: One of the largest online libraries in the world — Millions of news, trade publications, newspapers, magazine, journal and reference documents on business, communications, entertainment, health, law, government, politics, science and technology from leading publications are available on the Free Online Library

Tools and resources for trading

Filed under: Trading — admin @ 2:21 pm

MT4 is a client terminal for online trading purposes. It is intended for receiving quotes and news in the online mode, performing of trade operations, controlling and managing of open positions and pending orders, conducting of technical analysis… http://www.metaquotes.net

forexfactory has a huge forum with many many topics. Useful if you want to lean more, all skills http://www.forexfactory.com

Many indicators: http://www.mql4.com

Chat with many specialists http://www.ircforex.com

Currency convertor, news, articles http://www.xe.com

Specialized dictionary http://www.investopedia.com

Another forum but more specialized http://www.forex-tsd.com

Amibroker: Professional tool for individual investor featuring: advanced formula language for writing indicators and trading systems; comprehensive back-testing reports; … http://www.amibroker.com

Aptistock: Aptistock is your free stock market analysis software, free stock software and stock software. http://www.aptistock.com

Gannalyst pro 5: Gann Analysis and Charting Software http://www.gannalyst.com

Netquote charts: Netquote Charts is a fully featured technical analysis charting application. http://asx.netquote.com.au

Wall Street Analyzer: Wall Street Analyzer is a free charting software that helps you manage and analyze stocks and futures with unique features. http://www.lathuy.com

FiboTrader: Free chart analysis software for stocks, Fibonacci, portfolio management, strategy development and much more. http://www.fibotrader.com

QChartist : http://www.qchartist.net : a free technical analysis software.
Mirror links :
http://www.qchartist.net/downloads/QChartist.rar
https://sourceforge.net/projects/qchartist/files/
http://www.mediafire.com/file/9sbezs3e37d4cw0/QChartist.rar/file

TC2000 : TA software for US stocks https://www.tc2000.com

TradingView : complete TA interface online https://www.tradingview.com/ This is one of my favorite with MT4 because you can export chart data for a resonable monthly fee. Try it with my Tradingview_to_MT4_csv_converter http://www.qchartist.net/files/trading/Tradingview_to_MT4_csv_converter/Tradingview_to_MT4_csv_converter.zip
You can then even open your exported charts with QChartist.

Gives intraday and eod quotes for free https://www.alphavantage.co/

Gives eod quotes for free https://stooq.com/

My trading system “System Sync” : http://www.qchartist.net/trading_system/

http://hk-lisse.over-blog.com A blog which mix markets, technical analysis and coding.

http://sohocool.over-blog.com and http://sohocool-trading.blogspot.be : another blog which mix markets, technical analysis and coding.

http://time-price-research-astrofin.blogspot.fr : Time-Price-Research talks about patterns, cycles, seasonality, astronomy + AstroFin, Moon + Delta, Sun + Markets, George Bayer, W.D. Gann, J.M. Hurst, COT, sunspots, …

http://www.qchartist.net/files/index.php?dir=trading%2F : trading resources

http://bonniehill.net/index.html : Bonnie’s Links

For a great MT4 demo account at JFD with currencies and international stocks: https://www.jfdbank.com

http://www.timingsolution.com/ : You are here. I bet that you have had enough experience with different charting tools and methods of Technical Analysis. You have tried Fibonacci levels, pitchforks and other. You have applied different indicators. Moreover, you know what it is really worth. That is the reason why you are still looking for a better tool.

http://cyclic-vibrations.com/ : Cyclic vibrations is a company that conducts research on the financial markets and attempts to find repetitive patterns that have predictive value. The cycles that occur consistently in the financial markets have proven to be reliable in predicting prices and fundamental events. Our analysis is not limited to cyclical analysis, we also conduct traditional technical analysis to support the hypothesis derived about the future of the market and the geopolitical arena from our cyclical analysis. Once one determines what cycle we are in predicting the future becomes simply projecting that same cycle that occurred in the past into the future. This is true in terms of prices and events. Our researchers spend their time figuring out what cycle we are in in order to provide accurate and reliable forecasts of the future. We have revealed in these few words what many try to conceal. We encourage you to read our researches in order to get a better perspective on what we are all about.

http://www.astrologyforganntraders.com.au : Astrology for Gann Traders offers  a unique educational experience for traders wishing  to decipher the esoteric mysteries veiled within the teachings of legendary trader W.D.Gann. Discover the keys to unlocking the ancient astrological knowledge encoded in Gann’s novel , “The Tunnel Thru the Air,” and how to gain a trading edge.

https://financialastrologycycles.com/ : Financial Astrology Cycles provide educational services on future market movement based on historical price values and astro-cycles analysis. Forecast may be implemented for financial instruments such as stocks, futures, indexes, commodities and Forex.

http://www.cyclesresearch.com/ : Cycles Research fills the void between fundamental research, conventional technical analysis, economic data and geopolitical events through the medium of predictive analytics. This discipline was developed by a professional fund manager to fill a void in the research spectrum.

http://forum.worldwide-invest.org/ : Join our Worldwide Invest Forum to get the latest news about Automated Currency Trading, Cfd Trading Forum, Current Forex News & Trading Systems, Forex Exchange & Trading, Forex Foreign Exchange, Forex Trade Forum, system & Currency Exchange from the experts

http://www.mahendraprophecy.com/
http://www.sacredscience.com/Goulden/SecretsOfTheChronocrators.htm
http://mustaqim.org/
https://gannresources.blogspot.fr/
http://moneytide.com/hans/index.asp
https://web.archive.org/web/20151218212730/http://www.astro-trading.net/
https://web.archive.org/web/*/http://forum.wave59.com/idealbb/*
https://www.forex-tsd.com/forum/exclusive/18322-advanced-cycle-analysis
http://www.wardsystems.info/news.asp?task=news
http://www.mesasoftware.com/about_mesa_ehlers.htm
https://web.archive.org/web/20151218212730/http://www.astro-trading.net/
https://astroeuro.blogspot.fr/
http://mikulaforecasting.com/ A good astro software
https://stackoverflow.com/questions/44030983/yahoo-finance-url-not-working
https://finance.yahoo.com/ Their finance api is great
https://www.elitetrader.com Forum
https://www.alphavantage.co Provide intraday chart data for free
https://www.metalsmine.com/ Forum
https://www.nasdaq.com They have premarket data
http://newdigital-world.com Forum
http://www.qchartist.net/trading_system/ My trading system System Sync
https://www.investing.com They have premarket data and after hours
https://eodhistoricaldata.com/knowledgebase/list-supported-exchanges/
https://eodhistoricaldata.com/exchange/US
https://stocktwits.com/ Join Stocktwits for free stock discussions, prices, and market sentiment with millions of investors and traders. Stocktwits is the largest social network for finance.
https://www.gannzilla.ru/ Gannzilla Pro – The Best Master Charts Solution
https://tradersworld.com/issue-directory/ Issue Directory Tradersworld pdf magazines
https://www.tiingo.com/ The Tiingo api is great for crypto and more

Important for people who prefer to trade and making technical analysis under Linux instead of Windows, i recommend to use the following programs:
– Please read this: http://www.qchartist.net/files/os/Ubuntu%2012.04/links.txt
– Install OS Ubuntu 12.04 or 14.04 or 16.04 with Wine 1.4 or 1.6 or 1.7 (32 bit)
I found that Wine > 1.7 do not work with QTGuard (problem when killing QChartist.Exe when it freezes). Maybe this problem will be fixed in a future build of QC.
– Web browser Firefox firefox-63.0.3 for using Tradingview Pro+ in order to export chart csvs –> no longer works since nov. 2021 , please upgrade (update-manager) to ubuntu 14.04 and use firefox 66.0.3
– nov. 13 2021: Firefox firefox-63.0.3 works again with Tradingview, no need to upgrade ubuntu!
– Tradingview_to_MT4_csv_converter http://www.qchartist.net/files/trading/Tradingview_to_MT4_csv_converter/Tradingview_to_MT4_csv_converter.zip
– Web browser Opera Stable 45… for using eToro and all other needs
– QChartist build 173 under wine in order to start the QTGuard scanner with Yahoo Finance or Alpha Vantage Forex currencies
And also QChartist build 173 under Wine in order to open Tradingview csvs and making TA
– I tried to install MT4 under Wine but with difficulties. I use an old offline version of MT4 (build 226) (that i grabbed from my Windows PC) . I use it to import csvs and to use the indicators and templates of the System Sync trading system
– Sometimes i use Market Warrior under Windows but i didn’t try it under Linux for the moment.
All you need to trade under Linux is available for download here:
http://www.qchartist.net/files/index.php?dir=os%2FUbuntu+12.04%2F
Please do not try to install Ubuntu > 16.04 because you may not be able to install Wine 1.7 or inferior ; maybe you can with the apt package playonlinux ( https://www.playonlinux.com ) but i’m not sure.

For linux users with 32 bits old machines (nov. 2021):
Since a few days, my Ubuntu 12.04 (32 bits) with Firefox-63.0.3 do not work anylonger with tradingview charts.
The only solution i found is to upgrade to Ubuntu 14.04 with a sudo update-manager
Now with version 14.04 i am able to install Firefox 66.0.3 (default) and https://www.tradingview.com/chart/ works again !
I recommand to install gnome-panel and to start the session with gnome metacity (2D is faster)
You can install wine 1.6.2 (default)
Please do not install snapd because my system crashed (with multi screens). (do not use desktop version of tradingview at all)
synaptic and gdebi are also useful
You can still install opera-stable_45.0.2552.898_i386.deb
Enjoy and happy trading

nov. 13 2021
-Computer-
Processor : 4x Intel(R) Core(TM) i5-3450 CPU @ 3.10GHz
Memory : 8236MB (667MB used)
Operating System : Ubuntu 12.04.5 LTS
(hardinfo)
Good surprise my better computer works again! (see below)
Another good surprise: my Ubuntu 12.04 (32 bits) with Firefox-63.0.3 works again with tradingview charts !
No need to upgrade to Ubuntu 14.04
Have a nice week end

http://www.qchartist.net/files/trading/trading%20ressources/pdf/mql4%20reference.pdf – MQL4 Reference pdf

http://www.michaeljenkinstradingresources.com/index.htm
http://www.stockcyclesforecast.com/

Documents and books that i strongly encourage to read :
– Earik Beann – Techniques of an Astrotrader
– Earik Beann – The Handbook of Market Esoterica
– Public Gann Methods For Using the Planet Longitudes written by Myles Wilson Walker
– Traders World magazine #30
– Using planetary harmonics to find key reversals in the market
– T.S. Phillips – Astro Trading Technics
– Diego Ratti – Wall Street Watchman
– The kit of 8 indicators from Mostapha Belkhayate
– Murrey Math : http://www.bonniehill.net/pages.aux/murrey/TKnotes.1.html
– Patrick Mikula – The Definitive Guide to Forecasting Using W.D. Gann Square of Nine

https://openbb.co Investment research for everyone
https://github.com/OpenBB-finance/OpenBBTerminal GitHub – OpenBB-finance/OpenBBTerminal: Investment Research for Everyone, Anywhere.
https://openbb-finance.github.io/OpenBBTerminal/ OpenBB Documentation

https://anaconda.org We originated the use of Python for data science back in 2009. This is still our passion: using the world’s best, most intuitive programming language to do the hardest math out there. We like our data science models explainable, repeatable, and free from bias, and we want to help people do it that way.

https://futures.io/ The best futures trading community on the planet: futures trading, market news, trading charts, trading platforms, trading strategies

https://futures.io/articles/trading/John-Ehlers John is the author of the MESA program; SIERRA HOTEL, and MESA BONDS adaptive trading systems, and co-author of the R-MESA #1 S&P daytrader. He is an Electrical Engineer.

https://www.kreslik.com/ Kreslik.com – forex traders community since 2006

https://www.sierrachart.com/
Sierra Chart is a professional desktop Trading and Charting platform for the financial markets, supporting connectivity to various exchanges and backend trading platform services.
You can create an account for free and login into the software.
I don’t have a paid subscription but maybe soon ; i still enjoy its many features.
Even the free version is interesting. This is a great software with which one can do many powerful things. A must try.

https://awesomeopensource.com/projects/technical-analysis
The Top 349 Technical Analysis Open Source Projects

https://www.binance.com
Buy, trade, and hold 350+ cryptocurrencies on Binance Trade Bitcoin for free Sign up with Email or Phone or Continue with Google Continue with Apple $76 billion 24h trading volume on Binance exchange 350+ Cryptocurrencies listed 120 million Registered users <0.10% Lowest transaction fees Trade Bitcoin for Free

https://www.kucoin.com
Crypto Exchange | Bitcoin Exchange | Bitcoin Trading | KuCoin
The KuCoin platform was designed for investors of all types, with 24/7 world-class services in your preferred channel and language. 20+ Global Communities 200+ Countries Covered Trade Anytime, Anywhere The KuCoin app and website allow you to start crypto trading with ease. App Store iOS App Google Play Android APK KuCoin by Your Side

https://finnhub.io
Finnhub Stock APIs – Real-time stock prices, Company fundamentals …
Finnhub – Free stock API for realtime market data, global company fundamentals, economic data, and alternative data. Finnhub – Free APIs for realtime stock, forex, and cryptocurrency. Company fundamentals, Economic data, and Alternative data. Finnhub Stock APIs – Real-time stock prices, Company fundamentals, Estimates, and Alternative data.

https://www.oanda.com
Online Forex Trading & Forex Broker | OANDA
About OANDA Group Award-winning broker A broker you can trust Over the past 25 years, we have built up a stellar reputation for our award-winning platforms*, innovative trading education and transparent pricing. Forex and crypto trading We offer over 70 major and minor currency pairs and 9 popular cryptos, including Bitcoin and Ethereum.

https://robinhood.com
Commission-free Stock Trading & Investing App | Robinhood
Commission-free Stock Trading & Investing App | Robinhood Get your first stock free. Limitations apply. Check out our latest 1/5 Earn 3% interest on your cash. No cap. You can now earn 3% interest on your uninvested cash with Robinhood Gold—that’s 23x* the national average savings rate. Terms apply. Cash sweep disclosures Start earning interest

https://www.etoro.com
Crypto, Stocks & Beyond! The power of social investing | eToro
eToro – The World’s Leading Social Trading and Investing Platform Welcome to eToro 100% stocks, 0% commission The advantages of buying stocks on eToro don’t end with pricing. There are also no limits on commission-free trades and you can buy fractional shares. Invest in Stocks

https://www.robertbrain.com/
Brainy’s Share Market Toolbox – a huge collection of information to help advance your understanding of the sharemarket. Suitable for new to intermediate investors and traders.

https://gocharting.com
GoCharting – World’s first Multi-Asset Orderflow Charting and Trading Platform on the Web. GoCharting is a modern financial analytics platform offering world-class trading and charting experience.

https://www.ensignsoftware.com/
ENSIGN Windows and ENSIGN 10 are powerful Charting and Technical Analysis Softwares used by Traders, Investors, and Brokers around the world. Make better trades. Make more profits. Use the best trading tools. Join other traders in successfully trading the markets.

https://www.optuma.com
Professional Software for Technical Analysts & Quants. Professional Software for. Technical. Analysts. & Quants. Whether you’re a Professional Analyst, Portfolio Manager, or a Private Trader, Optuma provides advanced Technical and Quantitative software to help you discover financial opportunities.

https://www.gannworld.it
Gann’s World

http://www.edwards-magee.com/
Technical Analysis of Stock Trends – The Foundation Upon Which …
The Technical Analysis of Stock Trends website is written by noted technical analyst WHC Bassetti, editor of the Technical Analysis of Stock Trends, 9th Edition

http://www.hvst.com
Harvest – A specialist asset manager offering investment solutions and services to investors around the… Follow California Alternative Investments Association (“CalALTs”) (formerly the California Hedge Fund Association) An organization dedicated to the advancement of the alternative investment industry in California… Follow KKR & Co.

https://www.analyticsvidhya.com
Analytics Vidhya – Learn Machine learning, artificial intelligence …
Analytics Vidhya – Learn Machine learning, artificial intelligence, business analytics, data science, big data, data visualizations tools and techniques. | Analytics Vidhya For Community For Companies Welcome to your Data Science community 1M+ Members 3M+ Monthly Visitors 500+ Companies

https://www.tsaasf.org
TSAA-SF – Home
The TSAA-SF is an original IFTA Society and your membership includes membership to this global federation of technical analysis societies. We hope you enjoy this Video Presentation! Recent event: TSAA-SF 2021 Virtual Round-up Date: Dec 7, 2021 at 5-6:30 PM PT (Recording free for dues paying members; become a member here)

https://tanassociation.org
TAN Association – Advancing the Discipline of Technical Analysis for …
TAN Association – Advancing the Discipline of Technical Analysis for Over 50 Years – TAN Association Improving Investment Performance and Career Opportunities through Education, Ethics and Professional Networking centered around price behavior and market statistics Chart Your Course TAN Program Candidates

https://www.csta.org
Canadian Society of Technical Analysts – Home – CSTA
The CSTA accomplishes our mission by promoting technical analysis on a local and national level. Local chapters are located from coast to coast with an ever expanding membership. Local chapters hold monthly meetings providing access to national and local expertise as well as educational sessions designed to deepen our members understanding and use of technical analysis. Our library of online and written material and books supports our members educational pursuits. Nationally an expanding …

https://cmtassociation.org
CMT Association – Improve Your Investment Decisions
CMT Association – Improve Your Investment Decisions Improving Investment Processes and Career Opportunities through Education, Ethics and Professional Networking centered around price behavior and market statistics Chart Your Course CMT Program Candidates Develop a disciplined, systematic approach to market price behavior with the CMT Program.

https://www.relativerotationgraphs.com
Relative Rotation Graphs (RRG) to visualize sector rotation …
Relative Rotation Graphs (RRG) to visualize sector rotation – RelativeRotationGraphs.com About RRG Research RRG Research is the company that holds the Intellectual property, copyrights and registered trademarks for Relative Rotation Graphs ® and RRG ®.

https://www.gonogocharts.com
Better Decisions, Better Results – GoNoGo Charts
The GoNoGo Charts Indicators were meticulously developed over years to equip the investor with simple to read measurements about whether the market environment is a “Go” for launch in terms of an idea, strategy or investment. The “Go/No-Go” terminology is borrowed from a type of pass/fail testing system often used by NASA as a launch status check.

https://www.msn.com/en-us/money/
Get the latest headlines on Wall Street and international economies, money news, personal finance, the stock market indexes including Dow Jones, NASDAQ, and more. Be informed and get ahead with …

https://www.reuters.com/markets/
Global Market Headlines | Breaking Stock Market News | Reuters

https://edition.cnn.com/business
Business News – Latest Headlines on CNN Business – CNN View the latest business news about the world’s top companies, and explore articles on global markets, finance, tech, and the…

https://stockcharts.com/
StockCharts.com | Advanced Financial Charts & Technical Analysis Tools
StockCharts delivers the charts, tools and resources you need to succeed in the markets. As the industry’s most trusted technical analysis platform for more than two decades, we’re here to help you take control of your investing. Free 1-Month Trial WHY STOCKCHARTS Investing is hard. We make it easier.

https://finviz.com/
FINVIZ.com – Stock Screener
Upgrade your FINVIZ experience Join thousands of traders who make more informed decisions with our premium features. Real-time quotes, advanced visualizations, backtesting, and much more.

Entertainment

Filed under: Entertainment — admin @ 2:20 pm

https://www.sandbox.game/en/

Welcome to The Sandbox Metaverse, an online gaming platform that offers a unique and immersive gaming experience. Monetize your NFTs in the blockchain. Create & Play!

Recommended for Metaverses : Meta Quest 2: Immersive All-In-One VR Headset

All the videos from Remi Gaillard: http://www.nimportequi.com

Some breakout games:
DX-Ball 1
DX-Ball 2
Rival Ball

Put fun effects on your webcam videos with ManyCam

Trackmania is a cool car game. You can create new tracks and play online (Trackmania Nations Forever) https://www.trackmaniaforever.com/

Multimedia tools

Filed under: Multimedia — admin @ 2:19 pm

VLC multimedia player – Encoder, streamer, play from multimedia files, networks and video cards : http://www.videolan.org

RenderSoft CamStudio is a tool for recording screen activity into standard AVI video files.
http://www.camstudio.org

feratel allows to see webcam videos worldwide:
http://www.feratel.com/webcam-wetter.html
The feratel PanoramaTV application on the SmartTV interface on Samsung TVs allows to see theses videos too.

iSpy can be a useful tool to monitor a place with the use of webcams:
http://www.ispyconnect.com

amcap can record or display smooth and resized videos in realtime (overlay) from various video capture periphericals

vidcap32 is like amcap except that it can’t always display smooth and resized videos in realtime (overlay)

With Pazera video converter, you can convert almost all video formats from one to another. It uses the good ffmpeg encoder

IPTVnator – Cross-platform IPTV player application with multiple features, such as support of m3u and m3u8 playlists, favorites, TV guide, TV archive/catchup and more.
https://github.com/4gray/iptvnator

Collection of publicly available IPTV channels from all over the world
https://github.com/iptv-org/iptv

The Smarters Player App is a fabulous media player that allows end-users to play their content like Live TV, VOD, Series, and Local audio/Video files supplied by them; on their iPhone, iPad devices.
Smarters Player is the lite version of “IPTV Smarters Pro” with all the basic features unlocked.
https://play.google.com/store/apps/details?id=com.nst.smartersplayer&gl=US
https://www.firesticktricks.com/iptv-smarters.html

https://tunein.com – TuneIn | Free Internet Radio | Live News, Sports, Music, and Podcasts
Up-to-the-minute coverage everywhere you go. Stay informed with local, national and international sources like CNN, MSNBC, FOX News Radio, NPR and BBC. Listen Now LISTEN EVERYWHERE Enjoy your audio exactly where, when, and how you want. TuneIn is available on hundreds of home, car, and portable devices, and works with Alexa and Google Home.

https://en.wikipedia.org/wiki/Ulead_Systems
Ulead Systems

https://music.amazon.com
Amazon Music Unlimited | Stream 100 Million Songs & Podcasts

https://youtube.com
Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.

New Age Music: Relaxing Music: Reiki Music; Yoga Music; Relaxation Music; Spa Music
https://www.youtube.com/watch?v=jTpjhWjXGjw

Age Nueva Era
New Age Song Great Hit
https://www.youtube.com/watch?v=zw9-xodidNA

(Computer Aided) Music

Filed under: Music — admin @ 2:18 pm

Renoise is a very good musical sequencer. It supports VST instruments and fx: http://www.renoise.com

Audacity is a complete sound editor: http://audacity.sourceforge.net

Reason – the legendary music production software studio.
http://www.propellerheads.se/products/reason/

Tunecore allows artists to sell their music online easily by appearing on sites like Youtube, Amazon, Deezer, iTunes : https://www.tunecore.com

Routenote allows artists to sell their music online easily by appearing on sites like Youtube, Amazon, Deezer, iTunes and it’s FREE: https://www.routenote.com

Jul-Zen – My Youtube Channel: https://www.youtube.com/channel/UCoKY6OQlAeDk3-AXL8ziIgw

Ardour is an open source, collaborative effort of a worldwide team including musicians, programmers, and professional recording engineers.
https://ardour.org/

OpenMPT is a popular tracker software for Windows. OpenMPT (short hand for Open ModPlug Tracker) is completely free and allows you to create and play back some great music on your computer.
https://openmpt.org/

https://en.wikipedia.org/wiki/FastTracker_2
FastTracker 2 (also referred to as FastTracker II) is a music tracker created by Fredrik “Mr. H” Huss and Magnus “Vogue” Högdahl, two members of the demogroup Triton (who later founded Starbreeze Studios) which set about releasing their own tracker after breaking into the scene in 1992 and winning several demo competitions. The source code of FastTracker 2 is written in Pascal using Borland Pascal 7 and TASM. The program works natively under MS-DOS.

http://www.m-audio.com/
Acclaimed audio interfaces, studio monitors, and keyboard controllers

Sony Acid XPress Free
Sony has published a free version of its music creation software ACID Music Studio under the name of ACID Xpress, a multitrack sound editor specialized in loops, which allows you to record, edit, and mix music.

https://www.ableton.com/
Ableton makes Push and Live, hardware and software for music production, creation and performance. Ableton´s products are made to inspire creative music-making.
Live Lite 5 Free

FL Studio (originally known as FruityLoops) is a full-featured Digital Audio Workstation (DAW) offering a complete range of professional tools for everything from audio editing and beat creation to advanced arrangement, composition, mixing and mastering.
https://www.image-line.com/fl-studio/

https://www.bandlab.com/products/cakewalk
Fueled by over 30 years in the relentless pursuit of innovation, Cakewalk by BandLab is the new standard for the modern recording studio.
Cakewalk by BandLab is free.

Avid Pro Tools
Pro Tools is one of the highly-renowned DAW software out there. Done your studio with this powerful utility that brings your beats to life, records vocals and instruments with ease, and allows you to write your songs, or help with any studio requirement one might have.
https://www.avid.com

Propellerhead – ReBirth
ReBirth, the first software synth emulation software. The legendary product will, however, be available for free.
https://en.wikipedia.org/wiki/ReBirth_RB-338

Cool Edit Pro is an advanced multi track sound editing program for Windows. It has the following main capabilities: Sound Filters via Digital Signal Processing Effect, Multi track function, Plug-Ins capability & Batch process files.

https://ubuntustudio.org/
Ubuntu Studio – A free and open operating system for creative people.

Wavosaur is a cool free sound editor, audio editor, wav editor software for editing, processing and recording sounds, wav and mp3 files. Wavosaur has all the features to edit audio (cut, copy, paste, etc.) produce music loops, analyze, record, batch convert.
Wavosaur supports VST plugins, ASIO driver, multichannel wav files, real time effect processing.
https://www.wavosaur.com/

XMMS is a multimedia player for unix systems.

Audacious is an open source audio player. A descendant of XMMS, Audacious plays your music how you want it, without stealing away your computer’s resources from other tasks.

Clementine – Music Player – Radio

Rhythmbox – Music Player – Radio

VLC – Music Player – Radio

-=LARGE PACK of OldSkool DOS MOD Trackers (XM/IT/S3M/MOD)=-
https://archive.org/details/MODTRACKERS

New Age Music: Relaxing Music: Reiki Music; Yoga Music; Relaxation Music; Spa Music
https://www.youtube.com/watch?v=jTpjhWjXGjw

– Enya
– Vangelis
– Adiemus
– Enigma
– Calm and Gentle and more Yoga Meditation Tribe Music
– Sacred Spirit
– New Age Relax Station
– New Age Chillout
– New Age Reiki
– Relaxing Yoga Music for Stress Relief and for Exercice
– Kitaro

– Deva Premal

« Newer PostsOlder Posts »

Powered by WordPress