Eugene

Results 12 comments of Eugene

Original code came from [Spectre paper](https://spectreattack.com/spectre.pdf). Here's also implemented reading from address by passing params address and length `./spectre.out 00AB7B30 40` ``` Putting 'The Magic Words are Squeamish Ossifrage.' in...

Try this implementation with pthread.h Should work on macos https://gist.github.com/Eugnis/3ba3f048988e7be76737ab87da64bb26 Compile on MacOS `clang -O0 spectre-thread.c -o spectre && ./spectre`

Hello. Try this implementation with pthread.h https://gist.github.com/Eugnis/3ba3f048988e7be76737ab87da64bb26 Compile `gcc -std=c99 -march=native -pthread -O0 spectre-thread.c -o spectre && ./spectre`

Try to change the ` CACHE_HIT_THRESHOLD` value on line 29. While a value of 80 appears to work for most desktop CPUs, a larger value may be required for slower...

Hi. The only way to do that is custom `renderDetail(rowData, sectionID, rowID)` function that can be passed to Timeline component as `renderDetail={(rowData, sectionID, rowID)=>...}` where rowData will take data for...

[That may happen if time texts have different widths.](https://github.com/Eugnis/react-native-timeline-flatlist#shift-problem) To prevent this you need to pass to Timeline timeContainerStyle prop with custom minWidth. For example, ```timeContainerStyle={{ minWidth: 52 }}```

Which type of animation you need? Lines here are the borders of FlatList items so to animate them you can pass custom components with animation as items.

Sorry for long time answer. Sure, you can display image on free spaces. There are 2 options to do that: - Custom render for time in Timeline component `renderTime={()=>}` -...

Checked with custom fontFamily and titleStyle works. Can you provide example please?

Since line is drawn as border there's no easy way to put circle in center of event if you need that line to start from circle. You can try to...