Wednesday, October 31, 2018
Monday, October 29, 2018
Sunday, October 28, 2018
Friday, October 26, 2018
up - tool for writing Linux pipes
https://github.com/akavel/up
up is the Ultimate Plumber, a tool for writing Linux pipes in a terminal-based UI interactively, with instant live preview of command results.The main goal of the Ultimate Plumber is to help interactively and incrementally explore textual data in Linux, by making it easier to quickly build complex pipelines, thanks to a fast feedback loop. This is achieved by boosting any typical Linux text-processing utils such asgrep
,sort
,cut
,paste
,awk
,wc
,perl
, etc., etc., by providing a quick,interactive, scrollable preview of their results.
Internationalization - React vs Angular
https://hackernoon.com/internationalization-in-angular-and-react-applications-a-comparison-93883f4e1cdb
Make sure to read the comments too.
Make sure to read the comments too.
Labels:
Angular,
javascript,
react,
web applications
Thursday, October 25, 2018
Tuesday, October 16, 2018
Erlang 'process'
https://www.quora.com/What-is-the-difference-between-system-threads-and-process-threads-as-in-Java-threads
Excerpt:
Excerpt:
Erlang uses the term "process" because it does not expose a shared-memory multiprogramming model. Calling them "threads" would imply that they have shared memory.
Sunday, October 14, 2018
Saturday, October 13, 2018
Thursday, October 4, 2018
Tuesday, October 2, 2018
Mongo - exporting and importing a single database
On Source Machine
-------------------------
mongo
> show dbs
> exit
mongodump -d abc_xyz_development
(Above command will create a dump/abc_xyz_development folder and put all the files inside it. This folder will need to be zipped and sent to whoever wants to import the database)
On Target Machine
-------------------------
Drop existing database
mongo
> show dbs
> use abc_xyz_development;
> db.dropDatabase();
> exit
Restore from Dump folder:
Command:
mongorestore -d
E.g.
mongorestore -d abc_xyz_development ~/abc_xyz_development
-------------------------
mongo
> show dbs
> exit
mongodump -d abc_xyz_development
(Above command will create a dump/abc_xyz_development folder and put all the files inside it. This folder will need to be zipped and sent to whoever wants to import the database)
On Target Machine
-------------------------
Drop existing database
mongo
> show dbs
> use abc_xyz_development;
> db.dropDatabase();
> exit
Restore from Dump folder:
Command:
mongorestore -d
E.g.
mongorestore -d abc_xyz_development ~/abc_xyz_development
Subscribe to:
Posts (Atom)
Followers
Blog Archive
-
▼
2018
(194)
-
▼
October
(17)
- Algorithms related
- Elixir - When to use Elixir language?
- Ruby concurrency related
- labex.io - online courses with virtual environments
- up - tool for writing Linux pipes
- IronDB, EverCookie
- Internationalization - React vs Angular
- Rails: scopes
- Phoenix related - LiveView, Drab, Texas - alternat...
- Erlang 'process'
- Comparison of Erlang Runtime System and Java Virtu...
- Redis use cases
- Why Akka & Java versus Elixir/Erlang
- Elixir Intro
- MySQL: Status variables in MySQL
- react-native-turbolinks
- Mongo - exporting and importing a single database
-
▼
October
(17)