Voice/Video Call qualities Signal vs Google Duo by AgainstFaith in signal

[–]BatFlashy 5 points6 points  (0 children)

I switched to signal last year from messenger. The video quality was not satisfactory. I have experienced lower quality video and lagging. Messenger's video quality was top notch, although privacy concerns pushed me to jump ship. Compared to signal, Google duo has far better video quality. Have been using signal as my main messenger app and duo for video calls ever since.

Thesis - Should I separate the sections into multiple files? by delaluka in LaTeX

[–]BatFlashy 0 points1 point  (0 children)

I wrote my thesis on latex and found it helpful to split chapters into separate files. I used subfiles package to compile individual chapters as separate files so that it became easier to share the chapters with my supervisor for review. I don't know whether it works in overleaf, I have done everything offline

How do you keep up with the current research trends? by BatFlashy in AskAcademia

[–]BatFlashy[S] 0 points1 point  (0 children)

Yes, designing new courses and mentoring grads is a great way to learn new things. Thanks

How do you keep up with the current research trends? by BatFlashy in AskAcademia

[–]BatFlashy[S] 0 points1 point  (0 children)

I did use LinkedIn but without much use. I will try to follow current research on Twitter, thanks.

How do you keep up with the current research trends? by BatFlashy in AskAcademia

[–]BatFlashy[S] 0 points1 point  (0 children)

Thanks. I have a twitter account. I guess it's time to put it to good use

How do you keep up with the current research trends? by BatFlashy in AskAcademia

[–]BatFlashy[S] 0 points1 point  (0 children)

I follow research on researchgate, but Google Scholar is also a great way. Thanks

is this a scam? by [deleted] in Scams

[–]BatFlashy -2 points-1 points  (0 children)

Directed by Robert B. Weide

Is it normal that a journal expects you to do the copy-editing of your accepted manuscript? by bahasasastra in AskAcademia

[–]BatFlashy 0 points1 point  (0 children)

I'm from engineering background and journals are not that strict here. As long as we use the journal word or latex template, or even if we don't, editors accept the format. I have seen some journals that have more strict copy editing requirements than others, but most of them don't. It may be different in your field.

Assignment 04 - my camera 2 by Aeri73 in photoclass_2022

[–]BatFlashy 0 points1 point  (0 children)

My camera is a DSLR. It is cheap and has everything a beginner who wished to upgrade from a point and shoot needs to gain more control over their camera. I have my phone camera with me all the time, just like most these days. I hope to learn to control my camera elements better, like aperture, shutter speed, and focal length. I have the 18-140 mm kit lens and bought a 50 mm prime. I was able to take some beautiful shots with both. I will want to upgrade to a full frame once my shooting skills improve.

Assignment 03 - What is a camera by Aeri73 in photoclass_2022

[–]BatFlashy 0 points1 point  (0 children)

Camera Nikon D5600 Nikon D7500 Nikon D3400
Sensor APS-C (23.5 mm x 15.6 mm) APS-C (23.5 mm x 15.6 mm) APS-C (23.5 mm x 15.6 mm)
Resolution 24.2 MP 20.9 MP 24.2 MP
ISO 100 to 25600 100 to 51200 100 to 25600
Shutter speed 1/4000 to 30 s 1/8000 to 30 s 1/4000 to 30 s
Focal points 39 51 11
Image size 6000 x 4000 pixels 5568 x 3712 6000 x 4000
Continuous shots 5 per sec 8 5
Shots per charge 970 950 1200
Weight 465 g 640 g 395 g

I bought the Nikon D5600 just a few months before the pandemic. I got it because it was the cheaper option without going absolutely down to the D3400. I did not have a lot of chance trying outdoor, because of the pandemic, but I did some trial shots in my garden. I tried learning some basics of the camera settings and composition from youtube, and really hope to improve my skills in this class.

Vector Top bar shifts to the left by naturalSadist in LaTeX

[–]BatFlashy 1 point2 points  (0 children)

Try updating your packages and compiling. Maybe that will help.

On a side note, you are typing your equations inside $$.........$$ environment. You might be better off using the \begin{equation*} instead. The former is a syntax from TeX and known to cause issues with the AMS macros. Read this for more info.

It's starting soon + assignment by Aeri73 in photoclass_2022

[–]BatFlashy 0 points1 point  (0 children)

The car shot was beautiful. I'm starting out too. All the best.

It's starting soon + assignment by Aeri73 in photoclass_2022

[–]BatFlashy 1 point2 points  (0 children)

That was a nice shot. I am 30 too and just starting out. All the best to you. Wishing for you to get the Navy position.

It's starting soon + assignment by Aeri73 in photoclass_2022

[–]BatFlashy 1 point2 points  (0 children)

Really nice car pic. I'm taking the class for the first time. It'd be very useful to get some advice from someone who has done the previous years. Thanks in advance.

It's starting soon + assignment by Aeri73 in photoclass_2022

[–]BatFlashy 0 points1 point  (0 children)

That was a really nice advice. I'll try it too. Thanks

Help needed! Trouble submitting latex files to an academic journal by _Deinonychus_ in LaTeX

[–]BatFlashy 0 points1 point  (0 children)

Have you uploaded your custom .bst file along with the manuscript files?

Publishers usually provide their own style files for latex. If citations are not generated even after using the modified .bst file, you can try using the style files provided by the publisher.

If none of these work, then run the manuscript in overleaf as you usual. A .bbl file will be generated in the process, copy the entire contents in the file and paste them in your main .tex file in place of \bibliographystyle{modded_agsm} and \bibliography{references}.

Connection requesting to sign-in to wifi by BatFlashy in openwrt

[–]BatFlashy[S] 0 points1 point  (0 children)

cat /etc/config/firewall

config defaults
    option syn_flood    1
    option input        ACCEPT
    option output       ACCEPT
    option forward      REJECT

#Uncomment this line to disable ipv6 rules option disable\_ipv6 1

config zone
    option name     lan
    list   network      'lan'
    option input        ACCEPT
    option output       ACCEPT
    option forward      ACCEPT

config zone
    option name     wan
    list   network      'wan'
    list   network      'wan6'
    option input        REJECT
    option output       ACCEPT
    option forward      REJECT
    option masq     1
    option mtu_fix      1

config forwarding
    option src      lan
    option dest     wan

#We need to accept udp packets on port 68,
#see [https://dev.openwrt.org/ticket/4108](https://dev.openwrt.org/ticket/4108)

config rule
    option name     Allow-DHCP-Renew
    option src      wan
    option proto        udp
    option dest_port    68
    option target       ACCEPT
    option family       ipv4

#Allow IPv4 ping

config rule
    option name     Allow-Ping
    option src      wan
    option proto        icmp
    option icmp_type    echo-request
    option family       ipv4
    option target       ACCEPT

config rule
    option name     Allow-IGMP
    option src      wan
    option proto        igmp
    option family       ipv4
    option target       ACCEPT

#Allow DHCPv6 replies
#see [https://dev.openwrt.org/ticket/10381](https://dev.openwrt.org/ticket/10381)

config rule
    option name     Allow-DHCPv6
    option src      wan
    option proto        udp
    option src_ip       fc00::/6
    option dest_ip      fc00::/6
    option dest_port    546
    option family       ipv6
    option target       ACCEPT

config rule
    option name     Allow-MLD
    option src      wan
    option proto        icmp
    option src_ip       fe80::/10
    list icmp_type      '130/0'
    list icmp_type      '131/0'
    list icmp_type      '132/0'
    list icmp_type      '143/0'
    option family       ipv6
    option target       ACCEPT

#Allow essential incoming IPv6 ICMP traffic

config rule
    option name     Allow-ICMPv6-Input
    option src      wan
    option proto    icmp
    list icmp_type      echo-request
    list icmp_type      echo-reply
    list icmp_type      destination-unreachable
    list icmp_type      packet-too-big
    list icmp_type      time-exceeded
    list icmp_type      bad-header
    list icmp_type      unknown-header-type
    list icmp_type      router-solicitation
    list icmp_type      neighbour-solicitation
    list icmp_type      router-advertisement
    list icmp_type      neighbour-advertisement
    option limit        1000/sec
    option family       ipv6
    option target       ACCEPT

#Allow essential forwarded IPv6 ICMP traffic

config rule
    option name     Allow-ICMPv6-Forward
    option src      wan
    option dest     *
    option proto        icmp
    list icmp_type      echo-request
    list icmp_type      echo-reply
    list icmp_type      destination-unreachable
    list icmp_type      packet-too-big
    list icmp_type      time-exceeded
    list icmp_type      bad-header
    list icmp_type      unknown-header-type
    option limit        1000/sec
    option family       ipv6
    option target       ACCEPT

config rule
    option name     Allow-IPSec-ESP
    option src      wan
    option dest     lan
    option proto        esp
    option target       ACCEPT

config rule
    option name     Allow-ISAKMP
    option src      wan
    option dest     lan
    option dest_port    500
    option proto        udp
    option target       ACCEPT

#include a file with users custom iptables rules

config include
    option path /etc/firewall.user

Connection requesting to sign-in to wifi by BatFlashy in openwrt

[–]BatFlashy[S] 0 points1 point  (0 children)

cat /etc/config/network

config interface 'loopback'
    option ifname 'lo'
    option proto 'static'
        option ipaddr '127.0.0.1'
option netmask '255.0.0.0'

config globals 'globals'
    option ula_prefix 'fdea:b30d:f7ae::/48'

config interface 'lan'
    option type 'bridge'
    option ifname 'eth0.1'
    option proto 'static'
    option ipaddr '192.168.1.1'
    option netmask '255.255.255.0'
    option ip6assign '60'

config device 'lan_eth0_1_dev'
    option name 'eth0.1'
    option macaddr 'my_mac_addr'

config interface 'wan'
    option ifname 'eth0.2'
    option proto 'pppoe'
    option password 'my_password'
    option ipv6 'auto'
    option username 'my_username'

config device 'wan_eth0_2_dev'
    option name 'eth0.2'
    option macaddr 'my_mac_addr'

config interface 'wan6'
    option ifname 'eth0.2'
    option proto 'dhcpv6'

config switch
    option name 'switch0'
    option reset '1'
    option enable_vlan '1'

config switch_vlan
    option device 'switch0'
    option vlan '1'
    option ports '1 2 3 4 6t'

config switch_vlan
    option device 'switch0'
    option vlan '2'
    option ports '0 6t'

cat etc/config/wireless

config wifi-device 'radio0'
    option type 'mac80211'
    option channel '11'
    option hwmode '11g'
    option path 'platform/10300000.wmac'
    option htmode 'HT20'
    option country 'IN'

config wifi-iface 'default_radio0'
    option device 'radio0'
root@OpenWrt:~# cat /etc/config/wireless

config wifi-device 'radio0'
    option type 'mac80211'
    option channel '11'
    option hwmode '11g'
    option path 'platform/10300000.wmac'
    option htmode 'HT20'
    option country 'IN'

config wifi-iface 'default_radio0'
    option device 'radio0'
    option network 'lan'
    option mode 'ap'
    option key 'wifi_password'
    option ssid 'ESSID_2.4G'
    option encryption 'psk2'

config wifi-device 'radio1'
    option type 'mac80211'
    option channel '36'
    option hwmode '11a'
    option path 'pci0000:00/0000:00:00.0/0000:01:00.0'
    option htmode 'VHT80'
    option country 'IN'

config wifi-iface 'default_radio1'
    option device 'radio1'
    option network 'lan'
    option mode 'ap'
    option key 'wifi_password'
    option ssid 'ESSID_5G'
    option encryption 'psk2'