server{
listen 443 ssl;
server_name surya.in;
ssl_certificate /etc/nginx/sslcerts/surya.in.crt;
ssl_certificate_key /etc/nginx/sslcerts/surya.in.rsa;
root /var/www/my-react-app/build;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //log | |
| const log4js = require("log4js"); | |
| const path = require("path"); | |
| log4js.configure({ | |
| appenders: { | |
| info: { | |
| type: "dateFile", | |
| filename: path.join(__dirname, "../logs", "info.log") | |
| }, | |
| errors: { |
- Make sure
PulseAudiois installed - Search for "Startup applications" in applications (click on windows menu and search)
- click Add item
- In Command input -
pactl set-default-source 'alsa_input.usb-0c76_USB_PnP_Audio_Device-00.mono-fallback'[refer below for how to get the name of the mic] - Click save
- It should run automatically from next startup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://www.atpeaz.com/disable-zscaler-temporarily-on-your-mac/ | |
| # disable | |
| sudo launchctl unload /Library/LaunchDaemons/com.zscaler.service.plist && sudo launchctl unload /Library/LaunchDaemons/com.zscaler.tunnel.plist | |
| # Reenable | |
| sudo launchctl load /Library/LaunchDaemons/com.zscaler.service.plist && sudo launchctl load /Library/LaunchDaemons/com.zscaler.tunnel.plist |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Interview question by Fluxon (round 2) | |
| //iterator interface | |
| // next(): number; | |
| // hasNext(): boolean; | |
| class ArrayIterator<T> { | |
| nextIdx = 0; | |
| arr: T[] = []; | |
| constructor(arr: T[]) { | |
| this.arr = arr; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Ask: Update the App component so the <h2> element gets a color | |
| * from the COLORS array. Clicking on the Next button should cycle through the colors. | |
| * | |
| * Example: It should be initially blue, then red, ..., cyan, and then blue again. | |
| */ | |
| import ReactDOM from "react-dom"; | |
| // import { useState } from "react"; | |
| const COLORS = ["blue", "red", "green", "yellow", "black", "cyan"]; |
OlderNewer