-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.bfr2018
2470 lines (1911 loc) · 131 KB
/
.bfr2018
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
milidustrplex: military industrial complex
Money is power. Power to do whatever whenever with whomever for however long you want.
I must lose myself in action, lest I wither in despair.
The longer you hang in there, the greater the chance that something will happen in your favor. No matter how hard it seems, the longer you persist, the more likely your success.
010010
呼和浩特市新华东街89号维力斯酒店13F西
内蒙古德力海信息技术有限公司
青巴图
Чинбат
Qingbatu
Delehi Information Technology Co. Ltd.
010010
West 13F, Uiles Hotel, No.89 East Xinhua Street, Hohhot, P.R.China
DelkhiOffice vs DelehiOffice
https://encrypted.google.com/webhp?hl=en&gl=en#safe=active&hl=en&gl=en&q=%s
windows10+7 optimized activated iso
API keys are used to authenticate WebService API calls. You can create more than one API key if required. Each API key has an optional description which can help you record what each key is used for.
https://bugs.documentfoundation.org
git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree checkout master
Switched to branch 'master'
M Makefile.in
Your branch is up-to-date with 'origin/master'.
git -c diff.mnemonicprefix=false -c core.quotepath=false -c credential.helper=sourcetree submodule update --init
Cloning into '/Users/almas/dev/core/dictionaries'...
alias ping='ping -c 6 -i 1.5 '
~/dlof/core master git remote -v
github https://github.com/LibreOffice/core.git (fetch)
github https://github.com/LibreOffice/core.git (push)
origin ssh://[email protected]:40022/cvs/git/DelehiOffice/core.git (fetch)
origin ssh://[email protected]:40022/cvs/git/DelehiOffice/core.git (push)
almas.dip ssh pssphrs q*b*t$30811
git remote -v
git show --pretty=fuller
gitk
git branch --merged
https://unix.stackexchange.com/questions/272260/how-to-get-first-5-chars-of-a-git-commit-hash-id-and-store-it-in-a-variable-in-b
git rev-parse --short=9 HEAD
x=$(git rev-parse --short=6 HEAD)
$ printf '%s\n' "$x"
Ctrl Cmd Space: smiley
Ctrl Cmd q: lock screen
Ctrl 英数 Space: toggle IME
⌥ ← →: move cursor forward/backward in word unit
Command–Mission Control (⌘ F3): Show the desktop
macOS open home folder in finder:shift-cmd-h
cmd+L: Focus on address bar in Safari
Select Multiple Nonadjacent Files with Command+Click
Control–Command–Power button Force your Mac to restart.
Control–Command–Media Eject Quit all apps, then restart your Mac. If any open documents have unsaved changes, you'll be asked whether you want to save them.
Control–Option–Command–Power button or
Control–Option–Command–Media Eject Quit all apps, then shut down your Mac. If any open documents have unsaved changes, you'll be asked whether you want to save them.
fn+← for <Home>
fn+→ for <End>
⌘ CMD+⇧ SHIFT+. reveals hidden files in Finder and Open/Save dialogs.
You can also press ⌘ CMD+⇧ SHIFT+G and type the path to the hidden folder, just like in Terminal (⇥ TAB autocompletion also works).
Finder QuickView: Space bar:
Select an item in the Finder by clicking on it, then press the space bar. Regardless of the type of file, QuickView displays it in detail in a window without launching an app. For an image file, it displays the image and offers to open it in Preview, while something created in a particular application (a Pages document, for example) displays the preview and provides a button for opening it in that app.
Move Backwards and Forwards in Finder
To navigate backwards and forwards in Finder, use Command + [ to go back and Command + ] to go forwards. This also works in Safari to move between your page history.
Open Folders or Go Up a Level in Finder
Many tasks you do each day probably involve Finder, so it’s immensely useful to be able to open folders or go back up a level using only the keyboard:
Command + up takes you up a level in the folder structure
Command + down opens the current folder in the same window
Another useful shortcut is Command + ` (next to the left Shift key) to swap between an application’s open windows. This is handy if you have multiple Finder windows open. Alternatively, use the swipe up/down gesture to use Exposé/Mission Control to switch between the desired Finder window.
⌘ ↓
Select Files in Finder The Easy Way
To select a file in the current Finder folder, begin typing the name of the file and the active item will update to match what you’ve just typed. Alternatively, the arrow keys can be used to move the selection; press the Spacebar to preview a selected item, Command + Down to open an item, or Command + I to get more information.
Hold down Fn + Control + F2 in any application to highlight its menu.
Mac Force Quit
Option-Command-Esc: Choose an app to force quit.
Command-Shift-Option-Esc and hold for 3 seconds to force just the front app to quit.
Command ⌘
Shift ⇧
Option ⌥
Control ⌃
Caps Lock ⇪
Fn
↓
↑
502 Bad Gateway
javac -version
java -version
/Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/bin/java -version
https://docs.oracle.com/javase/9/install/installation-jdk-and-jre-macos.htm#JSJIG-GUID-7EB4F697-F3D1-40EA-ACDF-07FA90F02D57
WARNING : no suitable nasm (Netwide Assembler) found for internal libjpeg-turbo
kali <<<dfrrd*9
apple id: [email protected] outlook_passwd
https://exmail.qq.com/cgi-bin/loginpage
[email protected] .d*G*1*5
呼格吉乐(ᠬᠦᠭᠵᠢᠯ): su-web
呼格吉乐(ᠬᠦᠭᠵᠢᠯ): 密码:15848393927
book:
Hexaflexagons, probability paradoxes, and the tower of Hanoi by Martin Gardner
Deep Belief Nets in C++ and CUDA C: Volume 1: Restricted Boltzmann Machines and Supervised Feedforward Networks by Timothy Masters
English | 2018 | ISBN: 1484235904 | 219 Pages
Bayesian Methods for Hackers: Probabilistic Programming and Bayesian Inference by Cameron Davidson-Pilon
English | 2015 | ISBN: 0133902839 | 256 Pages | True PDF, EPUB | 39 MB
Mathematics & Physics for Programmers
Discovering Modern C++: An Intensive Course for Scientists, Engineers, and Programmers
Busy Coder’s Guide to Android Development by Mark L. Murphy
Networking All-in-One For Dummies
Inside Radio: An Attack and Defense Guide by Qing Yang, Lin Huang
English | 2018 | ISBN: 9811084461 | 369 Pages | True PDF, EPUB | 55 MB
This book discusses the security issues in a wide range of wireless devices and systems, such as RFID, Bluetooth, ZigBee, GSM, LTE, and GPS. It collects the findings of recent research by the UnicornTeam at 360 Technology, and reviews the state-of-the-art literature on wireless security. The book also offers detailed case studies and theoretical treatments – specifically it lists numerous laboratory procedures, results, plots, commands and screenshots from real-world experiments. It is a valuable reference guide for practitioners and researchers who want to learn more about the advanced research findings and use the off-the-shelf tools to explore the wireless world.
Programming with STM32: Getting Started with the Nucleo Board and C/C++ by Donald Norris
English | 2018 | ISBN: 1260031317 | 304 Pages | EPUB | 21 MB
Get up and running programming the STM32 line of microcontrollers from STMicroelectronics using the hands-on information contained in this easy-to-follow guide. Written by an experienced electronics hobbyist and author, Programming with STM32: Getting Started with the Nucleo Board and C/C++ features start-to-finish projects that clearly demonstrate each technique. Discover how to set up a stable development toolchain, write custom programs, download your programs to the development board, and execute them. You will even learn how to work with external servos and LED displays!
Explore the features of STM32 microcontrollers from STMicroelectonics
Configure your Nucleo-64 Microcontroller development board
Establish a toolchain and start developing interesting applications
Add specialized code and create cool custom functions
Automatically generate C code using the STM32CubeMX application
Work with the ARM Cortex Microcontroller Software Interface Standard and the STM hardware abstraction layer (HAL).
Control servos, LEDs, and other hardware using PWM
Transfer data to and from peripheral devices using DMA
Generate waveforms and pulses through your microcontroller’s DAC
Real-Time C++: Efficient Object-Oriented and Template Microcontroller Programming, 3rd Edition by Christopher Kormanyos
English | 2018 | ISBN: 3662567173 | 428 Pages | PDF | 10 MB
CoreText c++
https://developer.apple.com/documentation/coretext
Яндекс
https://yandex.com
https://superuser.com/questions/307048/making-the-backspace-key-go-to-the-previous-folder-in-finder
⌥ Opt + ↑: in OS X Yosemite it is the shortcut for 'Go Up' command in Finder (e.g. it always goes to the folder one level above the one you're in). If you don't like the 'Go Up' command and would like to go to the previous folder - define your own shortcut as per babraz' answer, then paste the respective key combination instead of CURSOR_UP, VK_COMMAND code above.
libreoffice autogen.sh
checking for bogus pkg-config... configure: error: yes, from unknown origin. This *will* break the build. Please modify your PATH variable so that /usr/local/bin/pkg-config is no longer found by configure scripts.
Error running configure at $LODE_HOME/dev/core/autogen.sh line 293.
make: *** [$LODE_HOME/dev/core/config_host.mk] Error 2
almas@3c2d3e26252423 ~/lode/dev/core master which pkg-config
/usr/local/bin/pkg-config
almas@3c2d3e26252423 ~/lode/dev/core master mv /usr/local/bin/pkg-config /usr/local/bin/pkg-config.restore-after-build
almas@3c2d3e26252423 ~/lode/dev/core master open instdir/LibreOfficeDev.app
$LODE_HOME/opt/bin/make -j 4 -rs -f $LODE_HOME/dev/core/Makefile.gbuild build
./configure with '--enable-debug --srcdir=$LODE_HOME/dev/core --enable-option-checking=fatal'
Makefile:276: recipe for target 'build' failed
make: *** [build] Error 2
almas@3c2d3e26252423 ~/lode/dev/core master ✚ subl sw/source/core/crsr/crsrsh.cxx
vs code:
includePath:
"${workspaceRoot}/workdir/UnoApiHeadersTarget/offapi/comprehensive",
"${workspaceRoot}/workdir/UnoApiHeadersTarget/offapi/normal"
here document
http://tldp.org/LDP/abs/html/here-docs.html
Example 19-8. A script that generates another script
: <<COMMENTBLOCK
COMMENTBLOCK
cat > $Newfile <<End-of-message
This is line 1 of the message.
This is line 2 of the message.
This is line 3 of the message.
This is line 4 of the message.
This is the last line of the message.
End-of-message
The - option to mark a here document limit string (<<-LimitString) suppresses leading tabs (but not spaces) in the output. This may be useful in making a script more readable.
vim:
cat >> ~/.vimrc <<End-of-message
"https://stackoverflow.com/questions/41518011/vim-insert-timestamp-in-the-current-line-after-some-words
inoremap <special> <F3> <c-r>=strftime('%Y-%m-%d %H:%M:%S')<CR>
"even works for MacVim('mvim -v')
End-of-message
c++:
Graph algorithms with C++
Graph theory hold corner stone of modern computer science, extending its tentacles to social networks to neural networks to finding paths in maps. In this course we are looking at graph theory by computer science prospective. We are going to start our discussion by looking at the basic terms of graph theory and them jump on to discuss graph theory related algorithms and then implement those with c++. Following are the types of algorithms we are going to discuss in this course.
Graph traversing.
Topological sorting and strongly connected component associated algorithms
Shortest paths.
Finding minimum spanning trees.
Maximum flow.
NP complete algorithms such as graph coloring, traveling salesman problem etc.
I'd like to parse unicode strings, where characters stored in more than 1 bytes are represented with "\uXXXX". Is there a RTL_TEXTENCODING or something else to parse that to OUString? e.g. "Tamás" == "Tam\u00e1s" ?
'register' storage class specifier is deprecated and incompatible with C++17
`ComPtr() throw() : ptr_(nullptr) { }`
What does throw() do in this context?
>without a list of potential exception types, it's the pre-c++11 equivalent of `noexcept` http://en.cppreference.com/w/cpp/language/except_spec
With a function prototype like this: `foo(AType *&OutParam);`, what exactly is `*&` mean?
>a pointer passed by ref
>Reference to a pointer to AType (edited)
>`AType *outParam` would be passing a pointer by value (copied), `AType *&outParam` would be passing a reference to it, so you can modify the value in the caller
>hm, so if I pass `AType *outParam`, i get a copy of that pointer in my function. So if I pass in `AType *arg`, the function creates a local copy called `outParam`. So `arg`->address123 and `outParam`->address123.
but `arg` and `outParam` are two separate pointers stored in different areas of memory
vs if I pass the pointer by reference
`arg` and `outParam` reference the same pointer in the memory location where `arg` is stored?
>in both cases `arg->var` will point to the same `var` instance
```void ptr(AType *p) {
p->val = 34;
p = 0;
}
void ref(AType *&r) {
r->val = 42;
r = 0;
}
void caller() {
AType *t = new AType;
ptr(t); // t->val is now 32, t is still what it used to be
ref(t); // t->val is now 42, but t is now 0
}```
>got it, that makes sense
I guess, that's like the double pointer convention in C
>yeah, a ref is just a pointer you can’t change, with cleaner syntax (edited)
>Thinking of references as "alternate name for" is easier than "self-dereferencing pointer that is const" unless you've known pointers for years before you heard of references.
operator precedence live example:
editeng/source/editeng/impedit3.cxx
pTP = &pParaPortion->GetTextPortions()[ nPortion ];
const long* pDXArray = nullptr;
std::unique_ptr<long[]> pTmpDXArray;
it = std::find_if(it, aAttribs.end(), [](const std::unique_ptr<EditCharAttrib>& aAttrib) { return aAttrib->IsFeature(); } );
return it == aAttribs.end() ? nullptr : it->get();
aAttribs.erase( std::remove_if(aAttribs.begin(), aAttribs.end(), [](const std::unique_ptr<EditCharAttrib>& aAttrib) { return aAttrib->IsEmpty(); } ), aAttribs.end() );
#include <iostream>
// uncomment to disable assert()
// #define NDEBUG
#include <cassert>
int main()
{
assert(2+2==4);
std::cout << "Execution continues past the first assert\n";
assert(2+2==5);
std::cout << "Execution continues past the second assert\n";
}
Number of days between two dates C++
https://stackoverflow.com/questions/14218894/number-of-days-between-two-dates-c/14219008
chrono-Compatible Low-Level Date Algorithms
http://howardhinnant.github.io/date_algorithms.html
https://howardhinnant.github.io/date/date.html
https://github.com/HowardHinnant/date
arrow operator (->)
reference return to create lvalue
prefix increment: Obj& Obj::operator++();
postfix increment: Obj Obj::operator++(int);
Build enhanced applications by using hashtables, dictionaries, and sets
Implement searching algorithms such as linear search, binary search, jump search, exponential search, and more
Have a positive impact on the efficiency of applications with tree traversal
Explore the design used in sorting algorithms like Heap sort, Quick sort, Merge sort and Radix sort
Implement various common algorithms in string data types
Find out how to design an algorithm for a specific task using the common algorithm paradigms
c++ equivalent of strtok
c++ check update: https://github.com/txthinking/brook
c++ linux service to backup folder
c++ linux service to monitor folder
find . -type d -a ! -iname 'Del*' -exec mv {} ~/doc \;rtvl
find . -type d -a ! -iname 'Del*' -exec mv {} ~/doc \; rtvl
high performance c++ logger
macos shortcut key to open application menu
macOS keep an app in dock without opening it
macOS extract multipart rar in specific folder
macOS chrome move tab shortcut key
macOS google chrome reader view
macos debug c++ program
http://gameaibook.org/
g++ --version in MacOS show LLVM info
share file between macbook and linux notebook using only ethernet cable
PVS-Studio Analyzer
http://lldb.llvm.org/lldb-gdb.html
Go (a.k.a. Golang)
SSR Shadowsocks R
compile and debug c++ file on MacOS using llvm and lldb
compile debug c++ program using llvm lldb
c++ programmatically click "Read more", "View reply" and "View all xyz replies" to expand comments
https://www.youtube.com/watch?v=vsMydMDi3rI
apple CoreText tutorial
eecs,ict:
SOLID (object-oriented design)
Single responsibility principle[4]
a class should have only a single responsibility (i.e. changes to only one part of the software's specification should be able to affect the specification of the class).
Open/closed principle[5]
"software entities … should be open for extension, but closed for modification."
Liskov substitution principle[6]
"objects in a program should be replaceable with instances of their subtypes without altering the correctness of that program." See also design by contract.
Interface segregation principle[7]
"many client-specific interfaces are better than one general-purpose interface."[8]
Dependency inversion principle[9]
one should "depend upon abstractions, [not] concretions."
«kjellkod»
hak:
http://download.delehi.com/d/fonts/mnglwhiteotf.ttf
libreoffice how to mark annotate corrections
«EOF»
apt update && apt full-upgrade
Note that if you haven’t updated your Kali installation in some time (tsk2), you will like receive a GPG error about the repository key being expired. Fortunately, this issue is quickly resolved by running the following as root:
wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add
ээж
grammar:
nominative case =subject
vocative case 呼格
genitive case 属格 =of
accusative case 宾格 =direct object
dative case =indirect object(to,for)
instrumental case 工具格 =with,by
prepositional case =position (on,in,at)
dative-locative case
ablative case 离格
comitative case 伴随格
reflexive case
directive case 命令格
directive case(may or may not use NNBSP)
case-bound possessive case 所有格
字模 glyph
字形 variant form 或 presentation form
字形部件 variant form component
铅字版 metal font type lead type (face)
理论字形的中线
物理字形的中线
字腰 Mongolian nirugu
柯文
https://brew.sh/
brew install cmake ccache automake node gpg wget nmap libpcap 7z git-flow colordiff
npm install -g nodemon
brew install --with-toolchain --with-clang llvm lldb
brew install macvim --with-override-system-vim
/usr/local/bin needs to be first in your PATH
brew doctor should notify you of any PATH or configuration issues for brew.
brew install ffmpeg --with-chromaprint --with-fdk-aac --with-libass --with-librsvg --with-libsoxr --with-libssh --with-tesseract --with-libvidstab --with-opencore-amr --with-openh264 --with-openjpeg --with-openssl --with-rtmpdump --with-rubberband --with-sdl2 --with-snappy --with-tools --with-webp --with-x265 --with-xz --with-zeromq --with-zimg --with-ffplay --with-freetype --with-libquvi --with-libvorbis --with-libvpx --with-opus
update:
brew update && brew upgrade && brew upgrade python git sourcetree make cmake node youtube-dl
sudo softwareupdate -ia --verbose
VirtualBox Guest Additions in Kali Rolling / Kali Linux 2016.2 / Kali 2017
https://www.blackmoreops.com/2017/01/24/install-virtualbox-guest-additions-in-kali-linux/
apt update & apt -y dist-upgrade
uname -a
cat /proc/version
apt -y install virtualbox-guest-x11
Kali 2018.1 in VirtualBox: uncheck: 3D acceleration and EFI.
.aat -> Apple Advanced Typography
AAT font features do not alter the underlying typed text; they only affect the characters' representation during glyph conversion.
Developed jointly by Adobe and Microsoft, OpenType (.otf, .ttf, .ttc) fonts improves upon Microsoft's TrueType fonts, by incorporating a greater extension of the basic character set, adding a more robust data structure for prescribing better typographic behavior. This includes small capitalization, old-style numerals, and more detailed shapes, such as glyphs and ligatures. OpenType fonts are single files that can also be scaled to any size, are clear and readable in all sizes, and can be used on both Macintosh and Windows platforms without conversion. Designers will benefit from OpenType over previous formats due to the much larger character set and for the programs that support it: automatic alternative character and ligature support.
Hard water furred the kettle.
symbol:
🔥
±
⇅
⇄
The symbol, which I can never find on Microsoft Word's symbol list, is a hollow square with a single, vertical line through the middle. It's placed at the end of a number, such as 2,550[I] but imagine the box/line as intersecting and the top/bottom of the vertical line extending outside the box at both top and bottom. (I had to play with brackets, here) and either the same size font of the numbers or smaller, but never larger (not meant to overshadow the numbers). It's very common in the construction and architecture industry- especially when handwriting instructions or notes in order to avoid having to 'read' someone's handwriting (plus, it takes up slightly less space). For whatever reason, it's not available in most font/symbol options.
http://monscript.blogger.com/
CPU Info via Command Line in Mac OS X
sysctl -n machdep.cpu.brand_string
system_profiler | grep Processor
right click (or hold Control and click)
http://stepanovpapers.com/
macos debug c++ program
gdb crash course
clang-format
clang-format LibreOffice
kythe: indexing code
Basic Development Environment - a set of foundational C++ libraries used at Bloomberg
https://github.com/txthinking/brook
Brook is a cross-platform(Linux/MacOS/Windows/Android/iOS) proxy software
Data Structures and Network Algorithms (CBMS-NSF Regional Conference Series in Applied Mathematics)
If you intend to place a wifi adapter in Monitor mode, you have got to have a primary network/Internet connection, either an ethernet adapter or another Wifi stick for both Internet access and not losing remote control of the VM/raspberry.
en:
contravention
self-deprecating humor
Hypothesis
excursion
surreptitious
flit
porch of house
share android cellular data connection with computer using wifi-hotspot
Let your attitude of gratitude charge your mental and physical altitude to action of excellence. You get what you expect in life.
redemption
tripping devicep (Carrefour)
fast forward <>(antonym) rewind
lecture slides: Would you share your lecture slides with me?
perpetrate: So to the point - this saying is perpetrated by developers who aren't very good at debugging.
razor sharp intellect
His transformation from one of the world’s most notorious con man to an international cybersecurity expert.
beef bone broth
Goat-boodog
Guess how much noise does an empty piggy bank with 1 coin make, vs. a full one.
«END of en»
en2mn2rus:
put foot down: to refuse very firmly to do or accept something; to use your authority to stop something happening.
"The first time I heard about something" is subject, but the verb is not transitive ("be" is intransitive) so there is no object. What follows "be" is obligatory, and obligatory items are always complements, and hence "when I was around 8 years' old" is a complement. (https://english.stackexchange.com/questions/445930/is-abbreviating-the-object-clause-in-this-sentence-grammatically-correct)
>The verb is "was" and it will not take an object. Whereas, It has the complement (when I was around 8 years old.) You can reduce the complement-clause as: The first time I heard about it was at the age of eight. BTW 8 years old, not 8 years' old.
>A further point about the complement: some people analyse "when" as a subordinator and thus the complement as a subordinate clause. Others follow some modern grammars and take "when" as a preposition, and the complement thus a PP. The latter analysis (which I prefer) can be paraphrased as "at the time when I was around 8 years old".
The pH of expressed prostatic secretion was measured in men with and without inflammatory prostatic disease.
strike a chord with/among: His speech struck a sympathetic chord among business leaders.
copulation
no time to slowly grind through a formal course
overridden <- override
dividend distribution
equilibrium
discrete math
fully convolutional neural networks (FCNN)
Generative Adversarial Neural networks (GANs)
residual neural networks (ResNets)
convolution
character action objects
major system
Loci method
Memory Palace
PoC (proof of concept)
outright lie/fraud
YMMV:your mileage may vary
unfilial
stymied: recent scams have stymied people’s willingness to adopt the technology
borne: Alipay and WeChat Pay have invariably borne the blame whenever a QR code scam has occurred.
malevolent
addendum
What can I do to help?
parametricity
A was deprecated in favor of B.
self-confidence
self-efficacy: Psychologist Albert Bandura has defined self-efficacy as one's belief in one's ability to succeed in specific situations or accomplish a task. One's sense of self-efficacy can play a major role in how one approaches goals, tasks, and challenges.
irrefutable evidence
subsidized meals
pastime
Kubernetes is Greek for “helmsman,” your guide through unknown waters. The Kubernetes container orchestration system safely manages the structure and flow of a distributed application, organizing containers and services for maximum efficiency.
Daigous: personal re-sellers
hectic
input method editor
glyph shaping rules (http://bolor-toli.com/dictionary/word?search=glyph)
stylistic variants
Script Encoding Initiative
unicode consortium
liaison relationship
Unicode Consortium Liaison to SC2/WG2
visual guide
to that end (formal, conjunctive, idiomatic) For that reason
Chief Executive Officer
individual member of Unicode Consortium
cash in
grassroot
unanimously
exceptional quality and performance
electrolyte
spout
homogeneous
anemia
devise algorithm
anti snoring jaw supporter (chin strap)
snore reliever chin strap
bellwether
Vacuum Insulated Bottle, Sport Water Bottle with Suction Base, Twin Wall Stainless Steel Cup, Office/Home/Car/travel Coffee Tea Bottle, Fall-Over Prevention Anti-Scald Bottle, 14OZ
crochet
crochet water bottle pouch
anti-scald cover
cozy
memory palace
entropy
cellar
underscore
hyphen
dash
mouse
Fear, uncertainty and doubt (often shortened to FUD) is a disinformation strategy used in sales, marketing, public relations, talk radio, politics, religious organizations, and propaganda. FUD is generally a strategy to influence perception by disseminating negative and dubious or false information and a manifestation of the appeal to fear.
taxi-hailing apps such as Didi. In a cab, you can still pay the old-fashioned way, but in Uber-esque shared cars, it’s mobile payment only.
gross merchandise volume (GMV)
It’s safer not to have a box with cash around and you can transfer money instantly without commission even to your bank account.
Consumers already use Alipay in 28 countries and that number will rise if Ant Financial succeeds in its current bid to acquire MoneyGram, one of the world’s leading money-transfer companies.
Down payment (or downpayment, also called a deposit in British English), is a payment used in the context of the purchase of expensive items such as a car and a house, whereby the payment is the initial upfront portion of the total amount due and it is usually given in cash at the time of finalizing the transaction. A loan or the amount in cash is then required to make the full payment.
self-explanatory: Title Case, Sentence case, UPPERCASE, lowercase
«END of en2mn2rus»
Him speaking about this as if he's actually giving a scientific lecture in an auditorium is what makes this perfect. He's not laughing or anything, he looks so dead serious the whole time: "If you find a unicorn, please capture it safely, keep it alive. We'd like to study it and maybe look at how to replicate that."
High Performance Computing in Science and Engineering ‘ 17 by Wolfgang E. Nagel
English | 2018 | ISBN: 3319683935 | 529 Pages | True PDF, EPUB | 50 MB
High Performance Computing in Science and Engineering ' 17: Transactions of the High Performance Computing Center, Stuttgart (HLRS) 2017
This book presents the state-of-the-art in supercomputer simulation. It includes the latest findings from leading researchers using systems from the High Performance Computing Center Stuttgart (HLRS) in 2017. The reports cover all fields of computational science and engineering ranging from CFD to computational physics and from chemistry to computer science with a special emphasis on industrially relevant applications. Presenting findings of one of Europe’s leading systems, this volume covers a wide variety of applications that deliver a high level of sustained performance.The book covers the main methods in high-performance computing. Its outstanding results in achieving the best performance for production codes are of particular interest for both scientists and engineers. The book comes with a wealth of color illustrations and tables of results.
http://www.badral.net/?p=1087
What is locale?
Харин Монгол улсын хувьд европын стандартыг барьдаг бөгөөд дараах байдлаар бичнэ. Аравтын бутархайн таслалыг таслалаар (,) оронгийн бүлгийг хоосон зайгаар, жагсаалтыг цэг таслалаар, огноог Жил-Сар-Өдөр гэсэн хэлбэрээр бичих ба нэгжийн систем маань метрийн систем юм. Өөрөөр хэлбэл бид 10 майль биш 10 километр, 1 пунд биш 1 килограмм, 1 инч биш 1 см гэж ярьж, бичиж, ойлгодог.
111,222 гэсэн тоог хараад зуун арван нэг мянганы хоёр зуун хорин хоёр гэсэн аравтын бутархай байна уу, зуун арван нэгэн мянга хоёр зуун хорин хоёр байна уу гэж эргэлзэх хэмжээнд хүрсэн.
gdb:
gdb -tui [executable's name]
break [line number]
break [file name]:[line number]
break [function name]
break [line number] if [condition]
For example,
break 11 if i > 97
place a "watchpoint" which will pause the program if a variable is modified:
watch [variable]
Once our breakpoints are set, we can run the program with the "run" command, or simply:
r [command line arguments if your program takes some]
as most words can be abbreviated in just a letter with gdb.
bt
for backtrack will tell us how we got to that point.
info locals
will display all the local variables and their current values (as you can see I didn't set my d variable to anything so its value is currently garbage).
to list the breakpoints in a program, which can be done by typing info breakpoints
Breakpoints can be deleted by typing delete # where # is the number of the breakpoint gotten from info breakpoints
GDB can also print the backtrace (or bt) at any time, telling you what the current call stack looks like
If you don't want to type out the whole command in gdb, it'll understand shorthand, like r for run or b for breakpoint, d for delete; you can do this for almost all commands in GDB!
p [variable]
will show the value of a particular variable. But even better:
ptype [variable]
shows the type of a local variable. So here we can confirm that d is double type.
set var [variable] = [new value]
step
to run the next line and potentially step into a function. Or just:
next
to just go straight to the line below, ignoring any function call.
help <command>
delete a breakpoint with:
delete [line number]
Keep running the program from the current breakpoint with:
continue
and exit GDB with:
quit
この強制的な行政措置に不満を抱く市民は、市長を出しにした小話を作ってやり返した。
「北京市長春薬店」のという名の薬屋の看板撤去工事は、「北京」の二文字を撤去したところでストップがかかり、「市長春薬店」が残った。
(注:中国語の「春薬」は「媚薬」の意味、残った看板は「市長の媚薬店」に変わった)。
そのため店長への国内外のメディアのインタビューが殺到した。どのメディアも、「市長の媚薬店は一体いつ、どのような経緯で創業されたか?」と厳しく追及した。
店長は困り果てて脳梗塞を起こし、現在病院で応急手当中・・・。
«rus:»
Ой цветет калина
Чистая архитектура. Искусство разработки программного обеспечения
https://coderprog.com/chistaya-arhitektura/
"в основном виноват ты сам" means "You yourself are mainly to blame".
Отлично! Спасибо большое. Я люблю русский язык так сильно.
>>Рад стараться!
СЧ is not the only case where you pronounce it as Щ. СЧ=ЗЧ=ЖЧ=ШЧ=СТЧ=ЗДЧ=Щ
https://www.youtube.com/watch?v=8o-WGJkcCSI
"Of" for E.X (of the world) is "и" or "из"?
>>Neither. In your context, we do not use the preposition "of" in Russian. To indicate possession, we use genitive case for that.
Sometimes, "of" can be "из" (or some other preposition: от, о, об, для).
bugbears of russian grammar
https://www.youtube.com/watch?v=Ltdv2kymcZo
11:11 Russian Case system.
18:22 Verbs of motion in Russian.
19:18 Aspect of verbs in Russian.
David Emerling 3 years ago (edited)
As for as verbs go, in Russian, it is only through context that many of the nuances of English sentences can be conveyed.
He works.
He is working.
He worked.
He was working.
He has worked.
He has been working.
He had worked.
He had been working.
He will work
He is going to work.
He will be working.
He will have worked.
He will have been working.
He would work.
He would be working.
He would have worked.
He would have been working.
In Russian, you basically have:
Он работает. (This could mean either "He works" or "He is working")
Он работал.
Он будет работать.
Он работал бы.
As in all languages, there is nothing better than immersion. But, since that is not always possible, one must make the effort to listen, read and speak the language as much as possible. This is where the internet is a great resource!
Russian grammatical rules can be characterized as follows: "The good news is that they have very few exceptions to their rules. The bad news is that they have a bazillion rules."
Getting some formal grammatical education in Russian will vastly accelerate your learning because it will reduce your level of frustration. Without some of this type of formal exposure to their grammatical structure, the language will seem arbitrary.
For instance, the word for "book" in Russian is книга. (pronounced K-NEE-ga). But when you see that word used in various sentences, you can become confused if you do not understand the various cases as described in this excellent video.
Try to find the word for "book" in each of the following sentences, paying close attention to how it is spelled. And, this is just a few examples.
Это очень интересная книга.
This is a very interesting book.
Она читает интересную книгу.
She is reading an interesting book.
Она никогда не читает интересних книг.
She never reads any interesting books.
Мы разговариваем о интересной книге.
We аre discussing an interesting book.
Он всегда ходит в парк со свой любимой книгой.
He always goes to the park with his favorite book.
One thing that has helped my listening comprehension is that I listen to Russian podcasts. There is one, in particular, that has Russian audio books, Радио Фантастики (Radio Fantastica). There is even an app for it, I listen to it with headphones as I walk my dog.
Good luck to anybody trying to learn this language! The points brought out in this video are very good. I have developed a pretty good feel for the grammatical cases and verb aspects but I still hate verbs-of-motion.
Как Ваши успехи в изучении русского на сегодняшний день?
difference between Ш and Щ:
1. Ш - is basically the same as Sh in English. Щ is a sound between Ш and S. I personalty find It is quite similar to Japanese し(shi) which is not exactly shi but more of a mixture between shi and si.
2. These are two different sounds, not "two kinds of sh"! How can someone not hear it? First time they told me this I thought it was a joke. It's like confusing "Iraq" with "Iran" )) I spoke to one Brit who was learning Russian, and he didn't realize that the soft sign in the end of words like "ночь", "дочь" etc are only the indication of gender, but the "ч" itself is always soft. He thought we had two different sounds, like in Serbian. Also, I found out that most English speakers tend to "de - emphasize" grammar, simply because they don't know it. Most of them cannot tell a participle from an adjective in their own language, or even have no idea about how many tenses it has. This is, probably, the result of their education, that focuses on "spelling" (memorizing words without analyzing their morphological structure). So when they learn Russian, they expect it to be the same - irrational language with no rules. But this is so different from how we are taught. In a Russian school there is no "spelling". The course is called "morphology and orthography", which is followed by "syntax and punctuation". Just like that - in order to know orthography you have to know morphology, and in order to know punctuation you need to study syntax first. And there is no way to de-emphasize it.
I am Polish and I have to say that Russian is EZ once you overcome the alphabet problem. Russian has one case less than Polish, there is way less rule exceptions in it and the orography isn't as insane as in Polish. The most difficult thing about Russian was learning how to accent specific vowels precisely, because in Polish the stress is almost always at the second to last syllable, but most importantly nobody cares nor thinks about it and even if speak everything flat it is still ok.
perfective aspect in russian along with finished action also delivers terminative meaning e.g.
seek - искать - process (durative)
find - найти - process is finished and can't last anymore and has nothing to do with present action (terminative)
examples are not very good(they are of different roots lol ), but they reveal core of this grammar issue.
It is often confused with present perfect which of course has nothing to do with the subject. beacause in english perfect the question "whether action is finished" remains open.
45 common Russian conjunctions
https://www.youtube.com/watch?v=et4uRED9MLI
"Da" means "Yes." But this video is about conjunctions. So, there is also a conjunction "da" which can mean "and" or "but."
Да, тут без ста грамм интуристу не разобраться! Хотел было ответить развёрнуто, да время поджимает: в магазин нужно бежать, да пса выгулять, уж извини. Да прибудет с тобой сила, брат! :)
Внимание вопрос: к какой части речи относится каждое из употреблённых мною слов "да" и какое несут смысловое значение?
ЗЫ: Переводить, полагаю, смысла никакого нет?)
Lol, remember learning достопримечательности, it's 21 letters and I always missed that soft sign after chatel.
https://www.youtube.com/watch?v=hDTthaug-GY
2 grammatical categories which you should understand prior to Russian cases learning. Those categories are gender and number. So, before dealing with cases, which is a completely new concept for most of you and that’s why pretty difficult to grasp, it’s highly recommended to become comfortable with a gender and a number concepts.
https://www.youtube.com/watch?v=HwIHIGBsm3A
Obviously (as the title of the video suggests), in this video, we are going to speak about Russian declension. If you ask me, “What this declension has to do with Russian cases?”, my answer will be, “Everything.”
When beginners say a phrase like “Russian cases,” or when they say that “Russian cases are difficult,” they actually mean a declension (they just don’t know how to call it properly, so they call it “cases”). So, not the cases are hard for them but this Russian declension.
Usually, Russian learners emphasize the stressed syllable exactly the same as they would do it in their native language which, to tell the truth, sounds not exactly the same as Russian native speakers do things. And this causes accent.
Also, when you start learning Russian grammar, you discover (with astonishment) that Russian stress is mobile. It can move in the same word when this word alters in different cases, conjugations, forms, genders… Which some people find pretty confusing.
Plus, when learning new words, you realize that stress sometimes influences meaning. There are words that are written exactly the same but have different stressed syllables and, therefore, have completely different meanings.
https://www.youtube.com/watch?v=80qyK_mGSWw
«END of rus»
rus2en:
орех кедровый cedar nut
дaры природы dary nature
Embed advanced machine intelligence into a chatbot for social media App WeChat, using Google cloud and machine learning APIs
https://github.com/telescopeuser/workshop_blog
«END of rus2en»
15:22 Node Module System
15:52 Global Object
19:14 Modules
22:51 Creating a Module
27:35 Loading a Module
32:59 Module Wrapper Function
39:53 Path Module
44:03 OS Module
48:22 File System Module
53:14 Events Module
59:33 Event Arguments
01:02:43 Extending EventEmitter
01:10:46 HTTP Module
«c++»
Use template argument deduction for class templates
Declare non-type template parameters with auto-folding expressions and auto deduction from braced-init-list
Apply lambdas and lambda capture by value
Work with inline variables, nested namespaces, structured bindings, and selection statements with initializer
Use utf-8 character literals
Carry out direct-list initialization of enums
Use these new C++17 library features or class templates from std::variant, optional, any, string_view, invoke, apply and more
Do splicing for maps and sets, also new to C++17
Mastering C++ Multithreading by Maya Posch
English | 2017 | ISBN: 1787121706 | 244 Pages | True PDF, EPUB, AZW3 | 10 MB
Master multithreading and concurrent processing with C++
Multithreaded applications execute multiple threads in a single processor environment, allowing developers achieve concurrency. This book will teach you the finer points of multithreading and concurrency concepts and how to apply them efficiently in C++.
Divided into three modules, we start with a brief introduction to the fundamentals of multithreading and concurrency concepts. We then take an in-depth look at how these concepts work at the hardware-level as well as how both operating systems and frameworks use these low-level functions.
In the next module, you will learn about the native multithreading and concurrency support available in C++ since the 2011 revision, synchronization and communication between threads, debugging concurrent C++ applications, and the best programming practices in C++.
In the final module, you will learn about atomic operations before moving on to apply concurrency to distributed and GPGPU-based processing. The comprehensive coverage of essential multithreading concepts means you will be able to efficiently apply multithreading concepts while coding in C++.
What You Will Learn
Deep dive into the details of the how various operating systems currently implement multithreading
Choose the best multithreading APIs when designing a new application
Explore the use of mutexes, spin-locks, and other synchronization concepts and see how to safely pass data between threads
Understand the level of API support provided by various C++ toolchains
Resolve common issues in multithreaded code and recognize common pitfalls using tools such as Memcheck, CacheGrind, DRD, Helgrind, and more
Discover the nature of atomic operations and understand how they can be useful in optimizing code
Implement a multithreaded application in a distributed computing environment
Design a C++-based GPGPU application that employs multithreading.
Guide to Scientific Computing in C++, 2nd Edition by Joe Pitt-Francis, Jonathan Whiteley
English | 2018 | ISBN: 3319731315 | 287 Pages | True PDF, EPUB | 10 MB
This accessible textbook is a “must-read” for programmers of all levels of expertise. Basic familiarity with concepts such as operations between vectors and matrices, and the Newton-Raphson method for finding the roots of non-linear equations, would be an advantage, but extensive knowledge of the underlying mathematics is not assumed.
http://www.mongolfont.com/mn/font/keyboard.html
ᠪᠠᠭᠤᠯᠭᠠᠭᠰᠠᠨ ᠳᠠᠷᠤᠭᠤᠯ ᠤᠨ ᠹᠠᠶᠢᠯ ᠶᠢᠡᠨ ᠳᠡᠯᠭᠡᠭᠰᠡᠨ ᠤ ᠳᠠᠷᠠᠭᠠ mngl ᠹᠠᠶᠢᠯ ᠢ /usr/share/X11/xkb/symbols ᠳᠣᠣᠷᠠ ᠲᠠᠯᠪᠢᠨᠠ᠃
/usr/share/X11/xkb/rules/evdev.xml ᠹᠠᠶᠢᠯ ᠢ ᠨᠠᠶᠢᠷᠠᠭᠤᠯᠵᠤ᠂ readme.txt ᠹᠠᠶᠢᠯ ᠤᠨ 2᠊ ᠳᠤᠭᠠᠷ ᠵᠣᠷᠪᠤᠰ ᠢ ᠭᠦᠢᠴᠡᠳᠭᠡᠨᠡ᠃
Removing App Library Files, Caches, & Preferences
Some applications will also leave behind some preference files and caches, generally these don’t harm anything to leave around, but if you want to delete them it’s just a matter of locating the apps support files and removing those as well. If you’d rather not dig around in these files yourself, you can turn to a utility like AppCleaner to delete the application along with all of it’s respective scattered preference files, but for those who would like to do this on their own, you can typically found these type of files in the following locations.
Application Support files (can be anything from saved states, preferences, caches, temporary files, etc):
~/Library/Application Support/(App Name)
Preferences are stored at:
~/Library/Preferences/(App Name)
Caches are stored in:
~/Library/Caches/(App Name)
branch in Git is in actuality a simple file that contains the 40 character SHA-1 checksum of the commit it points to, branches are cheap to create and destroy. Creating a new branch is as quick and simple as writing 41 bytes to a file (40 characters and a newline).
g++ -std=c++1z -Og -g -Wall -Wextra -o argvsum++ argv_sum.cpp
https://github.com/zhirshya .d*G*5*# Outlook(mail)
https://github.com/joindin/joindin-legacy/wiki/How-to-Contribute-Code
https://www.exchangecore.com/blog/contributing-concrete5-github/
https://stackoverflow.com/questions/4384776/how-do-i-contribute-to-others-code-in-github
Fork the project
Make one or more well commented and clean commits to the repository. You can make a new branch here if you are modifying more than one part or feature.
Perform a pull request in github's web interface.
if it is a new Feature request, don't start the coding first. Remember to post an issue to discuss the new feature.
If the feature is well discuss and there are some +1 or the project owner approved it, assign the issue to yourself, then do the steps above.
Some projects won't use the pull request system. Check with the author or mailing list on the best way to get your code back into the project.
Once you have forked a project, you can develop in any branch you want (a new one, or one from the original project)
Remember to:
add the original project as a remote (different form 'origin', since origin would be your own repo, result of the fork)
rebase your branch on top of the branch of the original repo you want to contribute.
It is important your pulling request result in fast-forward merges.
See for instance:
"Pull new updates from original Github repository into forked Github repository". https://stackoverflow.com/a/3903835/6309
"Update of forked repository on github" https://stackoverflow.com/a/16199389/6309
"Git working fork with updates" https://stackoverflow.com/a/23285782/6309
systemctl hibernate
中国国际广播电台俄语广播
which HuaWei smartphone has built-in FM tuner?
Which Android phones have offline FM radio?
Antennas
Phones with built-in radio tuners require an antenna to pick up the FM signal. The headset is used as the antenna, and this is why headsets must be connected to the phone to gain a signal. The same principle works when connecting the mobile with a jack-to-jack or jack-to-phono cable to a stereo system.
Standalone FM Radio Headsets
For phones without built-in FM radio, there is always the option to purchase a standalone FM radio headset. There are many FM radio headsets available, which connect to the phone via Bluetooth or via the headphone socket. These are a popular option for receiving FM radio on phones that do not come with built-in receivers.
mgl:
site:
http://mongol-bichig.top/chanai
http://talchir.com/
http://monscript.blogspot.com/ (jp?)
http://monscript2.blogspot.com/
http://www.mongol-bichig.com/
http://khumuunbichig.montsame.mn/
<< Si& finDwrnwzn& >> |mpEnI
http://khumuunbichig.montsame.mn/index.php?home&readnews=598
https://youtu.be/kMA9iKvG4i8
татаадаг гарууд
Муйхар
БНН-н Дарга Б.ЖАРГАЛСАЙХАН
ШӨХТГ-н дарга асан Т.Аюурсайхан
юу яриад байгааг нь ч бүрэн ойлгоогүй байж өөрсдийн тархины хэмжээгээрээ л доромжлох юм.
https://www.facebook.com/groups/MongolianWikipedia/
Мазаалай:[ᠮᠠᠵᠠᠭᠠᠯᠠᠢ] http://wikibilig.mn/index.php/%E1%A0%AE%E1%A0%A0%E1%A0%B5%E1%A0%A0%E1%A0%AD%E1%A0%A0%E1%A0%AF%E1%A0%A0%E1%A0%A2
Хөвсгөл -> Хөгсгөл (Traditional Mongolian Script)
Залхуу Арчаагүй Анхиагүй
Арчаагүй Анхиагүй шинж
Ахуй төрхөөрөө тэнэгэрхүү Ах дуудээ хэдэр ядар
Монгол Тулгатны 100 эрхэм-С.Галсан_Astagachar﹖_Arjagatar﹖
1:03:40 d ywj bgaa duu ymar duu ym be?
44:27 дээр явж байгаа дуу: Орос ардын дуу-Ой цветет калина
Хүйтэн хүйтэн л гэнэ хүний зовлонгоос хүйтэн нь хаана байна
Халуун халуун л гэнэ хайрын сэтгэлээс халуун нь хаана байна
https://www.youtube.com/watch?v=ZXvxtKie40Y
[Монгол Тулгатны 100 эрхэм] - С.Галсан
"Боловсролгүй боловсрол" гэх шиг зүйл ярьж байна. Энд нэг санаагаа хэлэхэд. Тэр цаана нь байгаа зүйл чинь билэг гэдэг ойлголт байх аа, уламжлалт ойлголтоор. Билэг гэдэг нь "арга" буюу бидний ойлголтоор материаллаг нөхцлийн эсрэг тал нь болов уу. Тэхээр оюун санааны дээгүүр түвшнийг билэг гэж хэлж байна гэж ойлгож болох байх аа. Түүнд байгалиас тухайн хүнд илүүтэй өгөгдсөн увдисаар хүрч болох юм. Эсвэл системтэй боловсролоор. Гэхдээ аль ч тохиолдолд хувь хүний өөрийн эрэгцүүлэл, бясалгал, хичээл чармайлт, сэтгэлгээний хүч асар их ташуур болно. Аливаа хүн байгаа бодит бололцоон дээрээ тулгуурлаад оюун чадвараа ашиглаад ямар нэг зүйл бүтээх буюу аливаа асуудлын учигийг олж байгаа тэр хавьд тухайн хүний амьдралын утга учир оршиж, үүргээ биелүүлж мөн түүнчлэн хүсэл нь гүйцэж байж болно. Тэхээр үүндээ зарцуулсан оюуны чадамжаа билэг гэж хэлээд байна аа даа? Тэр билэг нээгдсэн хүн гэдэг нь үүнийг л хэлээ болов уу. Билэг оюуны зэрэгцээ хүний нийгмийн эрхэм дээд шаардлага, хэрэгцээ болсон ухамсар гээч зүйл байна. Үүн дээр суурилсан төлөвшил, соёл иргэншил гэх ойлголт байна. Энэ бүхнийг өөртөө цогцлоож амжаад өөрийн асуудлаас давж өрөөл бусдын, нийтийн хэмжээний асуудлыг шийдэлцэх хэмжээнд очвол суутан болох гээд ч байгаа юм уу. Билгийн чанад хязгаар хүрсэн гэдэг нь энэ хавьцаа ойлголт байхаа даа. Өрний ойлголтоор бол билэг оюун боловсорсон бол educated man гэж тодорхойлж байгаа байх. Суу их чадалтаныг genius гээд байгаа байх. Манай "билэг танхай" гэх ойлголт байдаг. Энэ бол угтаа ямар ч системтэй боловсрол үгүй атал дан ганц авьяасаар нүдэх гээд байдаг, заримдаа хадуурдаг буруу зөрүү авдаг нөхдүүд, айн? Түүнийгээ өвөг дээдэс маань билэг танхай гэж "залруулж" байж. Тэхээр билэг танхай гэж байвал "энэ маань ёстой суутан болохоор хүн, даанч жаахан системтэй боловсрол олж билэг нээгдэх л хэрэгтэй байна" гэсэн санааг дагуулаад байх шиг байдаг. Тэхээр билэг танхай гэдэг бол алдар цол биш тухайн хүнд өгч буй тодорхойлолт байж болох нь.
Амбийц гэдэг үгийг тайлбарлах гэж үзье л дээ. Алив хүн өөрийн хийж буй ажил, мэргэжил, бизнесээрээ бахархах, өөртөө эрэмших зүйл байж болно. Ерөөсөө тэр зүйлийг эхлүүлж, эрхэлж байгаа нь түүний дур сонирхол, ажилдаа өгч өгч буй ач холбогдол, утга учиртай ямар нэг байдлаар холбоотой байх ёстой. Үүнийхээ хүрээнд тухайн хүн 1-рт үүгээрээ бахархах, 2-рт үүндээ ач холбогдол өгч магадгүй үүнийг нь бусад хүмүүс дэмжин тэтгээсэй гэсэн сэтгэл хөдлөл байж болно. Үүнийг л амбийц гэж байгаа юм болов уу. Тэхээр бидэнд ийм сэтгэл хөдлөл байдаг ч гэсэн тухайлан нэршсэн зүйл алга. Энэ бол техник технологийн эринтэйгээ хамт бидэнд хүрч ирсэн соёлын шинэ ойлголт болж ирж байна. Компьютерыг ТЭБМ биш компьютер гэж нэрлэж хэвшсэн шигээ үүнийг амбийц гэж нэрлээд явчих нь зүйтэй болов уу. Гэхдээ бид шинэ соёлын ойлголтод мэдрэмтгий бөгөөд туйлширч ханддаг. Тиймээс бид амбийцыг бас л хэтрүүлэн авч үзэх явдал байна. Амбийц өөрийнхөө хэм хэмжээнд байж л сая утга төгөлдөр болж харагдана. Ихдэхээрээ энэ биш болчихож байна. Монгол ойлголтоор бол барилдахаасаа таахалзах, нохойноосоо гинж нь гэх мэтчилэн хэлж болох ойлголт руу шилжчих гэмтэй юм.
сэтгэлийн дуудлагаар
Ялагдаагүй амьдрал
Төө урагшилж сөөм ухарна гэж байна шүү инээж байгаад л хорлодог хүмүүс шүү дээ хятадууд одоо ч хоол хүнс эд хэрэглэлд маань хор хийсээр л байна. Хувиа хичээсэн төрийн хэдэн арчаагүй нөхдөөс болж ард иргэд маань сөхөрч байна даа.
Сугардаггүй Сугар
Тийрэн 2 - Тий-рэн бүр үзээрэй
влог
Танилцсаны дараах паянгууд
https://www.facebook.com/groups/zugaatai.hel.shinjlel/permalink/789153364601081/
Ъ бол үнэндээ " а, о " эгшиг юм.
Үгийн үндсэн хэзээ ч хатуугийн тэмдэг орохгүй. Томьёо, авьяас, гавьяат, адьяа, сумьяа гэх мэтэд үгийн үндсэнд нь зөөлний тэмдэг ордог(ь тэмдэг үнэндээ и,э,ө эгшиг юм). Барь, тавь, боль, хорь гэдэгтэй адилхан
Монгол бичиг сурахад хэрэгтэй учраас дараах үгсийг латин галигаар бичээрэй.
Жишээ: Авъя away
Уралдъя uralday
Уучилъя uuchilay
Оръё oroy
Эхний үедээ а у эгшиг орсон бол хатуугийн тэмдгийг а аар
Эхний үед о эгшиг орсон бол хатуугийн тэмдгийг o аар орлуулж латин үсгээр галиглаарай.
Кирил бичгийн ъ үсгийг монгол бичигт хэрхэн бичихийг тайлбарлахын тулд латин галиг хэрэглэж буйг ойлгоорой.
Даалгавар : Латинаар галиглаарай
Амсъя
Тасдъя
Аргалъя
Удъя
Уръя
Унтъя
Очъё
Олъё
Одъё
«END of mgl»
macos:
To inspect the ACL, you can run the ls command with the -e flag. For example:
ls -aleF /Volumes
https://apple.stackexchange.com/questions/31438/how-do-i-use-chmod-on-a-mac-to-make-new-files-inherit-parent-directory-permissio
chmod +a "group:examplegroup allow list,add_file,search,add_subdirectory,delete_child,readattr,writeattr,readextattr,writeextattr,readsecurity,file_inherit,directory_inherit" /path/to/folder
sudo chmod -R +a "user:almas allow list,add_file,search,add_subdirectory,delete_child,readattr,writeattr,readextattr,writeextattr,readsecurity,file_inherit,directory_inherit" /Volumes
Moderate the UI experience: