Angular 11 implementation of CubikNeRubik
angular-electron-typeorm-starter project
ng new APP-NAME --routing --style=scss
Angular 11 implementation of CubikNeRubik
angular-electron-typeorm-starter project
ng new APP-NAME --routing --style=scss
| 1. Download wheel (last version) | |
| https://www.pgadmin.org/download/pgadmin-4-python-wheel/ | |
| 2. Create /opt/pgadmin4 | |
| 3. Create / activate virtual environment | |
| cd /opt/pgadmin4 | |
| python3 -m venv venv |
These instructions are based on this article: https://www.alexruf.net/git/2016/05/23/setup-gogs-git-service.html.
Other instructions. https://hobbylad.wordpress.com/2018/02/16/gitea-git-server-setup-on-raspberry-pi/
Setup Raspberry Pi with minimal Raspbian image. You need to connect to the HDMI port and set the following:
Use Noobs to install Raspian.
| import { NgModule } from '@angular/core'; | |
| import { CommonModule } from '@angular/common'; | |
| import { JWT_OPTIONS, JwtInterceptor, JwtModule } from '@auth0/angular-jwt'; | |
| import { AuthorizationService } from './authorization.service'; | |
| import { environment } from '../../environments/environment'; | |
| import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http'; | |
| import { RefreshTokenInterceptor } from './refresh-token-interceptor'; | |
| function jwtOptionsFactory (authorizationService: AuthorizationService) { | |
| return { |
These instructions are based on this article: https://docs.gitea.io/en-us/install-from-source/.
Setup Raspberry Pi with minimal Raspbian image. You need to connect to the HDMI port and set the following:
Use Noobs to install Raspian.
Open menu Preferences > Raspberry Pi Settings
Hello Victor,
I just started using this plugin today so I'm not an expert but here is what I did to make it work.
full-calendar.html I inserted:<angular2-fullcalendar [options]="calendarOptions"></angular2-fullcalendar>| # Simple No-ip.com Dynamic DNS Updater | |
| # | |
| # By Nathan Giesbrecht (http://nathangiesbrecht.com) | |
| # | |
| # 1) Install binary as described in no-ip.com's source file (assuming results in /usr/local/bin) | |
| # 2) Run sudo /usr/local/bin/noip2 -C to generate configuration file | |
| # 3) Copy this file noip2.service to /etc/systemd/system/ | |
| # 4) Execute `sudo systemctl daemon-reload` | |
| # 5) Execute `sudo systemctl enable noip2` | |
| # 6) Execute `sudo systemctl start noip2` |
I recently needed to apply CORS (Cross Origin Request Scripting) to a project that I'm working on. If found 2 posts that helped to achieve it:
I combined both to solve my problem: I have a User CRUD (Play!) webservice and a (Play!) web app that services a SPA (Single Page Application). The SPA needs to access the CRUD webservice, but to acheive this, I would need to apply some CORS rules on both applications.