Skip to content

Instantly share code, notes, and snippets.

View RoboWeb's full-sized avatar

RoboWeb RoboWeb

  • RoboWeb
View GitHub Profile
## portrait styles:
### Urban Chic
Imagine a portrait that captures the essence of city life, with edgy streetwear and a gritty backdrop. The Urban Chic style combines modern fashion with the raw energy of the urban environment, creating a striking contrast between the subject and their surroundings.
`/prefer option set option:urbanchic value:- Urban Chic portrait, contemporary streetwear, blending the subject with the cityscape, bold colors and dynamic composition`
### Noir
Step into the world of classic film noir with a dark and mysterious portrait. The Noir style captures the essence of a 1940s detective movie, filled with shadows, intrigue, and drama.
`/prefer option set option:noir value:- Noir portrait, high contrast, black and white, dramatic shadows, mysterious atmosphere, and a vintage cinematic feel`
### High Fashion

1. Install Vue.js

npm init vue@latest

then:

✔ Project name: … <your-project-name>
@RoboWeb
RoboWeb / gist---node-version-switcher.md
Last active April 13, 2022 06:43
Automatic node version switcher

Automatic Node version switcher

Ubuntu & Visual Studio Code

Requirements:

  • nvm must be installed on your system
  • you should have a .nvmrc file in root folder of the project
  • install manually the version of Node referred in .nvmrc with nvm install
This is a easy fix!
Download the last libffmpeg from [here](https://github.com/iteufel/nwjs-ffmpeg-prebuilt/releases/) and decompress it.
Install at Opera directory, click at the top left corner at the Opera logo and About Opera, look at your Opera Installation path, on Debian is at /usr/lib/x86_64-linux-gnu/opera
Copy the libffmpeg.so to that path with:
`sudo cp libffmpeg.so /usr/lib/x86_64-linux-gnu/opera`
Restart Opera
@RoboWeb
RoboWeb / remove-git-branches.md
Last active April 19, 2018 06:13
How to remove branches

Deleting git branches

If you want more detailed explanations of the following commands, then see the long answers in the next section.

Deleting a remote branch:

git push origin --delete <branch>  # Git version 1.7.0 or newer
git push origin :<branch>          # Git versions older than 1.7.0

Deleting a local branch: