Perhaps https://duckduckgo.com/?q=touchpad+palm+rejection
Plus the name of your laptop.
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
Do you name your batch file as .bat, or .cmd?
https://stackoverflow.com/questions/148968/windows-batch-files-bat-vs-cmd
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
Each new model / variation of a laptop is just a few tweaks on from the previous version.
Just putting a connector on the other side is a major investment for the manufacturer, which would be a cost passed onto the consumer in a very price sensitive market, especially at the low end.
I guess...
> hex file built around the code
What does this even mean?
Normally, if you want to remote admin a machine on your local network, you 'ssh' into it and issue the shutdown command to shutdown or reboot.
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect...
Because Linux != DOS.
> mov ax, 5307h
http://www.ctyme.com/intr/rb-1404.htm
No, you can't just power off the machine with a few simple asm instructions poking away at a non-existent DOS interrupt from the user space of a 64-bit protected operating system.
> do anyone have any solution for the...
What are your use-cases that require all this extra performance?
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
Go for the innermost loops first, because they're the ones which ultimately run most often.
So constructs like this:
echo $wprice | awk -v wp=$wprice '{printf "%2f\n",wp+7}' | awk -F. '{print $1"."substr($2,1,2)}'
Might be replaceable with this:
awk -v wp=$wprice 'BEGIN {printf "%.2f\n",wp+7}'...
Formatting and indentation go a long way to readability.
#!/bin/bash
#
startdate=`date`
outfile=price_list.txt
rm $outfile
# create full price list
full=1
if [ $full -gt 0 ]; then
minh=1750
maxh=2000
mind=1400
maxd=2000
minw=1400
maxw=3000
else
minh=1450...
Your .profile comes into effect when you login.
So all you need to do is logout and login again.
Also, you can re-read it by just typing in
. $HOME/.profile
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
Try using say $HOME rather than ~
Or failing that, absolute paths.
Not everything understands ~ shell magic.
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
What kind of backup?
- Physical media (tape/disk)
- Remote site you control
- Remote site you don't control (aka - "the cloud")
How much data, MB, GB, TB?
- in the initial backup
- in the deltas between whatever your backup interval is.
How often do you backup?
- x times a day?
- every day?
-...
https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html
In your .profile/.bashrc or similar
export LIBRARY_PATH=/path/to/my/lib
export CPATH=/path/to/my/headers
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
Is your company registered with the SEC - https://www.sec.gov/ ?
Do you know what their best practice guidelines for IT are?
https://www.sec.gov/spotlight/cybersecurity
Could you pass an audit from them?
> Almost all of our users are on laptops as they travel very frequently between offices...
Your 'ping', along with whatever else is available at your shell prompt, is most likely provided by busybox.
https://busybox.net/downloads/BusyBox.html
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
Use the old-style keyboard interface.
Assuming it's just got itself positioned off-screen somewhere, try
alt-space R
This will make the app be no longer maximised (or do nothing).
alt-space M, then any arrow key
This will activate the move window control, which initially takes its cue from the...
Do you have pgrep and/or pkill available?
PGREP(1) User Commands PGREP(1)
NAME
pgrep, pkill - look up or signal processes based on name and other
attributes
SYNOPSIS
pgrep [options] pattern
pkill [options] pattern...
Perhaps they're trying to avoid the singularity.
https://www.youtube.com/watch?v=nEI19kJ5GfU
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
Try this
$ find . -regextype posix-extended -regex '.*/DC18B[0-9]+\.(xml|zip)'
./progtest/DC18B20181130111.xml
--
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
NTFS stores it's backup MFT right in the middle of the disk, which limits the maximum contiguous size you could have to be half the disk.
https://flatcap.org/linux-ntfs/ntfs/help/layout.html
One possible workaround would be
1. disable the swap
2. fill the disk to nearly half full with multiple...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.