fix ref counter not working
It conficts with katex css on body{counter-reset}
This commit is contained in:
parent
61e90badb5
commit
e8bb3f8e1c
@ -7,7 +7,7 @@ import FatalError exposing (FatalError)
|
||||
import Head
|
||||
import Head.Seo as Seo
|
||||
import Html.Styled exposing (..)
|
||||
import Html.Styled.Attributes exposing (style)
|
||||
import Html.Styled.Attributes exposing (style, class)
|
||||
import Link exposing (Link)
|
||||
import Json.Decode as Decode exposing (Decoder)
|
||||
import Json.Decode.Extra
|
||||
@ -140,7 +140,7 @@ view app shared =
|
||||
in
|
||||
{ title = app.data.metadata.title
|
||||
, body =
|
||||
[ section []
|
||||
[ article [ class "paperlike" ]
|
||||
[ h1 [] [ text app.data.metadata.title ]
|
||||
, h1 [ style "font-size" "1.5em" ] [ text app.data.metadata.subtitle ]
|
||||
, section [] rendered
|
||||
|
@ -83,7 +83,7 @@ view :
|
||||
-> View (PagesMsg Msg)
|
||||
view app shared =
|
||||
{ title = "nganhkhoa"
|
||||
, body = [ article []
|
||||
, body = [ article [ class "paperlike" ]
|
||||
[ -- header
|
||||
h1 [] [ text "Me" ]
|
||||
, section []
|
||||
@ -223,6 +223,22 @@ publications =
|
||||
, p [] [
|
||||
text "Most of my publications are drafts and not reviewed paper. Because I am not in an academic environment so I do not know how to publish."
|
||||
]
|
||||
, withSpacing (p [])
|
||||
[ text "Simulating Loader for Mach-O Binary Obfuscation and Hooking."
|
||||
, text "Anh Khoa Nguyen, Thien Nhan Nguyen."
|
||||
, text "(Submitted, rejected, paper for free views)"
|
||||
, br [] []
|
||||
, quicklinks "macho" "[preprint]"
|
||||
, quicklinks "macho-git" "[git]"
|
||||
]
|
||||
, withSpacing (p [])
|
||||
[ text "Live Memory Forensics on Virtual Memory."
|
||||
, label [ class "sidenote-number" ] []
|
||||
, span [ class "sidenote" ] [ text "Nguyen, K.A., Vo-Van, TD., Nguyen, AQ., Nguyen-Le, T., Le, DT., Nguyen-An, K. (2024). Live Memory Forensics on Virtual Memory. In: Dang, T.K., Küng, J., Chung, T.M. (eds) Future Data and Security Engineering. Big Data, Security and Privacy, Smart City and Industry 4.0 Applications. FDSE 2024. Communications in Computer and Information Science, vol 2310. Springer, Singapore. https://doi.org/10.1007/978-981-96-0437-1_3" ]
|
||||
, text "Anh Khoa Nguyen, Dung Vo Van Tien, Khuong Nguyen-An."
|
||||
, br [] []
|
||||
, quicklinks "live-memory-forensics" "[FDSE2024]"
|
||||
]
|
||||
, withSpacing (p [])
|
||||
[ text "New Key Extraction Attackson Threshold ECDSA Implementations."
|
||||
, text "Duy Hieu Nguyen, Anh Khoa Nguyen, Huu Giap Nguyen, Thanh Nguyen, Anh Quynh Nguyen."
|
||||
@ -234,22 +250,6 @@ publications =
|
||||
, quicklinks "tsshockvideohitb" "[HITB Recordings]"
|
||||
]
|
||||
, br [] []
|
||||
, withSpacing (p [])
|
||||
[ text "Simulating Loader for Mach-O Binary Obfuscation and Hooking."
|
||||
, text "Anh Khoa Nguyen, Thien Nhan Nguyen."
|
||||
, text "Expecting 2024."
|
||||
, br [] []
|
||||
, quicklinks "macho" "[preprint]"
|
||||
]
|
||||
, br [] []
|
||||
, withSpacing (p [])
|
||||
[ text "Live Memory Forensics on Virtual Memory."
|
||||
, text "Anh Khoa Nguyen, Dung Vo Van Tien, Khuong Nguyen-An."
|
||||
, text "Expecting 2024."
|
||||
, br [] []
|
||||
, quicklinks "live-memory-forensics" "[preprint]"
|
||||
]
|
||||
, br [] []
|
||||
, h2 [] [text "Dissertations"]
|
||||
, withSpacing (p [])
|
||||
[ text "After I graduated, I often advise undergraduate students on their dissertations."
|
||||
@ -289,6 +289,28 @@ publications =
|
||||
, br [] []
|
||||
, quicklinks "powershellsandbox" "[pdf]"
|
||||
]
|
||||
, withSpacing (p [])
|
||||
[ text "Emulating EMV cards with Android devices"
|
||||
, br [] []
|
||||
, text "Author: Nguyen Thien Nhan."
|
||||
, br [] []
|
||||
, text "Advisors: An Khuong Nguyen, Anh Khoa Nguyen."
|
||||
, br [] []
|
||||
, text "Year: Expecting 2025"
|
||||
-- , br [] []
|
||||
-- , quicklinks "powershellsandbox" "[pdf]"
|
||||
]
|
||||
, withSpacing (p [])
|
||||
[ text "Static binary repairing with code insertion"
|
||||
, br [] []
|
||||
, text "Author: Pham Nguyen Nam."
|
||||
, br [] []
|
||||
, text "Advisors: An Khuong Nguyen, Anh Khoa Nguyen."
|
||||
, br [] []
|
||||
, text "Year: Expecting 2025"
|
||||
-- , br [] []
|
||||
-- , quicklinks "powershellsandbox" "[pdf]"
|
||||
]
|
||||
]
|
||||
|
||||
blabla : Html msg
|
||||
@ -363,6 +385,7 @@ quicklinks link title =
|
||||
"memoryinjection" -> linkexternal "https://drive.google.com/file/d/1X18tr4OvcNYRoyxzTcsxM_MgjcqVW1sk/view?usp=sharing"
|
||||
"powershellsandbox" -> linkexternal "https://drive.google.com/file/d/1Fm1YVAxD-A-zjVvRwBPa-IhZ1Y8ImEyv/view?usp=sharing"
|
||||
"macho" -> linkexternal "/papers/macho-obfuscation.pdf"
|
||||
"macho-git" -> linkexternal "https://git.nganhkhoa.com/dot/macho"
|
||||
"live-memory-forensics" -> linkexternal "/papers/live-memory-forensics.pdf"
|
||||
_ -> linkexternal link
|
||||
|
||||
|
@ -7,7 +7,7 @@ import FatalError exposing (FatalError)
|
||||
import Head
|
||||
import Head.Seo as Seo
|
||||
import Html.Styled exposing (..)
|
||||
import Html.Styled.Attributes exposing (style)
|
||||
import Html.Styled.Attributes exposing (style, class)
|
||||
import Link exposing (Link)
|
||||
import Json.Decode as Decode exposing (Decoder)
|
||||
import Json.Decode.Extra
|
||||
@ -140,7 +140,7 @@ view app shared =
|
||||
in
|
||||
{ title = app.data.metadata.title
|
||||
, body =
|
||||
[ section []
|
||||
[ article [ class "paperlike" ]
|
||||
[ h1 [] [ text app.data.metadata.title ]
|
||||
, h1 [ style "font-size" "1.5em" ] [ text app.data.metadata.subtitle ]
|
||||
, section [] rendered
|
||||
|
2
public/tufte.min.css
vendored
2
public/tufte.min.css
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user