How to copy a file in the same path with a different name?
Well you just need to use curly braces, {}, to make it happen:
What you usually MIGHT do:
You can take the smart path btw:
NOTE: if suffix of both files are different you can put that inside of curly braces too.
#linux #sysadmin #cp #copy #trick
  Well you just need to use curly braces, {}, to make it happen:
What you usually MIGHT do:
cp /usr/local/share/lib/sample.conf /usr/local/share/lib/settings.conf
You can take the smart path btw:
cp /usr/local/share/lib/{sample,settings}.confNOTE: if suffix of both files are different you can put that inside of curly braces too.
#linux #sysadmin #cp #copy #trick
https://www.digitalocean.com/community/tutorials/using-grep-regular-expressions-to-search-for-text-patterns-in-linux
#linux #grep #regex
  
  #linux #grep #regex
Digitalocean
  
  Mastering grep with Regular Expressions for Efficient Text Search | DigitalOcean
  Learn how to use grep with regular expressions to search, filter, and process text in Linux and Unix systems. This guide covers syntax, and practical use cases.
  Did you know you can use jsonSchema in MongoDB to search for documents?
Let's say you have
Now let's say you want to find all documents that has a customer_id of type
In Mongo shell:
This schema says look for documents that have
Interesting, right? :)
#database #mongodb #jsonSchema #json_schema
  Let's say you have
users collection with data below:{ "_id" : ObjectId("5f64bd1eca8806f2c04fcbe3"), "customer_id" : 100, "username" : "john" }
{ "_id" : ObjectId("5f64bd1eca8806f2c04fcbe5"), "customer_id" : 206, "username" : "new_customer" }
{ "_id" : ObjectId("60420df441558d6671cf54f2"), "customer_id" : "123", "username" : "Ali" }Now let's say you want to find all documents that has a customer_id of type
string instead of int.In Mongo shell:
let ms = {required: ["customer_id"], properties: {customer_id: {bsonType: "string"}}}This schema says look for documents that have
customer_id field with string type. To search:> db.customers.find({$jsonSchema: ms})
{ "_id" : ObjectId("60420df441558d6671cf54f2"), "customer_id" : "123", "username" : "Ali" }Interesting, right? :)
#database #mongodb #jsonSchema #json_schema
Forwarded from Na. A
This media is not supported in your browser
    VIEW IN TELEGRAM
  One of the issues you always face with postgres on new systems is pg_config error. If you don't want to install postgres and willing to have postgres library in Pytho operational:
1. brew install libpq
2. xcode-select --install
3. echo 'export PATH="/usr/local/opt/libpq/bin:$PATH"' >> ~/.zshrc
4. env LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip3 install psycopg2
#osx #libpq #pg_config #postgres #postgresql #xcode
  1. brew install libpq
2. xcode-select --install
3. echo 'export PATH="/usr/local/opt/libpq/bin:$PATH"' >> ~/.zshrc
4. env LDFLAGS="-I/usr/local/opt/openssl/include -L/usr/local/opt/openssl/lib" pip3 install psycopg2
#osx #libpq #pg_config #postgres #postgresql #xcode
https://renemorozowich.com/using-wordpress-rest-api-get-blogs/
#wordpress #get_latest_posts #rest #api #rest_api
  
  #wordpress #get_latest_posts #rest #api #rest_api
Rene Morozowich
  
  Using the WordPress REST API to get blog posts from another site - Rene Morozowich
  Are you curious about the WordPress REST API? Check out this easy-to-understand post and start using the WordPress REST API today.