{ "page":1, "results":[ { "backdrop_path":"/9EWPzs6KSgZwOvWD8plkcWQjeh0.jpg", "first_air_date":"2008-07-25", "genre_ids":[ 16 ], "id":45473, "name":"Shoujo Sect: Innocent Lovers", "origin_country":[ "JP" ], "original_language":"ja", "original_name":"少女セクト ~Innocent Lovers~", "overview":"Handa Shinobu and Naitou Momoko have known each other since childhood. Shinobu fell in love with Momoko from the day they first met. Now in high school, Momoko has forgotten about the past, but Shinobu has not. Both follow their own paths but Shinbobu still hopes for Momoko to remember the promise they made long ago.", "popularity":4.103, "poster_path":"/jGpFhasLjo75ZjNrg1OAGs31UEP.jpg", "vote_average":7, "vote_count":1 } ], "total_pages":1, "total_results":1 }
通过docker run --rm -v ~/myfont/patchme:/in -v ~/myfont/patched:/out nerdfonts/patcher执行
常用参数有
1 2 3 4 5
--mono: 代码用字体,mono 少不了 -c: 我全都要.jpg --careful: Do not overwrite existing glyphs if detected -w: 增强 Windows 兼容性,Limit the internal font name to 31 characters (for Windows compatibility) --powerline: --啥就添啥
virtual void initialize(CIMOMHandle & cimom) = 0 Performs any setup required before normal operation of the provider. The initialize() function allows the provider to conduct the necessary preparations to handle requests. The initialize function is called only once during the lifetime of the provider. Note, however, that with the Pegasus automatic unload function enabled, a provider many be unloaded and loaded many times during one cycle of the CIMOM. This function must complete before the CIM server invokes any other function of the provider, other than terminate.
virtual void terminate(void) = 0 Performs any cleanup required before termination. The terminate function allows the provider to conduct the necessary preparations for termination. This function may be called by the CIM Server at any time, including initialization. Once invoked, no other provider functions are invoked until after a call to initialize.
/usr/bin/ld: cannot find -l collect2: error: ld returned 1 exit status
1
ld -l<xxx> --verbose
如
/usr/bin/ld: cannot find -lhdb
则
1 2 3 4 5 6 7 8 9
ld -lhdb --verbose ... attempt to open /usr/lib64/libhdb.so failed attempt to open /usr/lib64/libhdb.a failed attempt to open /usr/local/lib64/libhdb.so failed attempt to open /usr/local/lib64/libhdb.a failed attempt to open /lib64/libhdb.so failed attempt to open /lib64/libhdb.a failed ...